/**
 * Redbasic
 *
 * Based on duepuntozero Friendica style
 * Originally by Fabio Comuni <fabrix.xm@gmail.com>
 */


/* bootstrap variable */

:root {
	--bs-border-radius: 0.375rem;
	--bs-link-color: #5f7b99;;
	--bs-link-hover-color: #4b6b8c;
	--bs-body-bg: #111;
	--bs-highlight-bg: yellow;
}

.nav-tabs {
	--bs-nav-tabs-border-radius: 0.375rem;
}

.nav-pills {
	--bs-nav-pills-border-radius: 0.375rem;
}

.btn {
	--bs-btn-border-radius: 0.375rem;
}

.card {
	--bs-card-border-radius: 0.375rem;
}


/* generals */

html {
	font-size: 0.875rem;
}

body {
	font-size: 0.9rem;
	background-color: var(--bs-body-bg);
	background-image: url('');
	background-attachment: fixed;
	background-size: cover;
	color: #ccc;
	margin: 0px;
}

aside#region_1 {
	border-right: 1px solid transparent;
	width: 21rem;
	min-width: 21rem;
	max-width: 21rem;
}

aside#region_3 {
	width: 21rem;
	min-width: 21rem;
	max-width: 21rem;
}

aside#left_aside_wrapper,
aside#right_aside_wrapper {
	margin-bottom: 10px;
}

main {
	margin-left: auto;
	margin-right: auto;
	max-width: 94rem;
}

#overlay {
	position: fixed;
	top: 0;
	left: 21rem;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, .3);
	cursor: pointer;
}

h1, .h1 {
	font-size: 2rem;
}

h2, .h2 {
	font-size: 1.6rem;
}

h3, .h3 {
	font-size: 1.2rem;
}

h4, .h4 {
	font-size: 1.05rem;
}

h5, .h5 {
	font-size: 0.9rem;
}

h6, .h6 {
	font-size: 0.75rem;
}

#banner {
	color: #999;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#banner img {
	max-height: 1.35rem;
	width: auto;
}

.jslider {
	font-family: sans-serif, arial, freesans;
}

abbr {
	border-bottom: none;
}

/* icons */

a,
.fakelink {
	color: var(--bs-link-color);
}


a:hover,
a:focus,
.fakelink:hover,
.fakelink:focus {
	color: var(--bs-link-hover-color);
}

.fakelink,
.cursor-pointer {
	cursor: pointer;
}

input, optgroup, select, textarea {
	font-size: 0.9rem !important;
}

input[type=text], textarea {
	resize: vertical;
	background-color: rgba(18,18,18,0.4);
	color: #ccc;
}

.selected-doco-nav {
	font-weight: bold;
	text-shadow: 2px 2px 3px lightgray;
}

#doco-content img {
	width: 100%;
}

#help-content pre code {
	overflow-x: auto;
	white-space: pre;
}

.heart {
	color: #FF0000;
}

nav {
	opacity: $nav_float_min_opacity;
	filter:alpha(opacity=$nav_percent_min_opacity);
}

#powered-by {
	font-size: 0.5rem;
	position: absolute;
	top: 50px;
	left: 16px;
}

#powered-by img {
	margin-top: -2px;
	height: 10px;
	width: 10px;
}

.error-message {
	color: #FF0000;
	font-size: 1.1em;
	border: 1px solid #FF8888;
	background-color: #FFEEEE;
	padding: 10px;
}

.nav-channel-select { margin-left: 8px; }

/* contextual help */
.contextual-help-content {
	display: none;

}

.contextual-help-content-open {
	display: block;
	position: fixed;
	top: 3.35rem;
	left: 0px;
	width: 100%;
	max-height: 50%;
	background: rgba(18,18,18,0.4);
	padding: 1rem;
	border-bottom: #e0e0e0 1px solid;
	overflow: auto;
	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}

.contextual-help-content dd {
	margin-bottom: 1em;
}

.contextual-help-tool {
	padding: 7px;
	filter: alpha(opacity=20);
	opacity: .5;
}

.contextual-help-tool:hover {
	filter: alpha(opacity=50);
	opacity: 1;
	text-decoration: none;
}

.contextual-help-tool i {
	color: #ccc;
	font-size: 1.05rem;
}

/* contextual help end */

/* spinner */

.spinner-wrapper {
	display: none;
}

.spinner.s {
	height: 1rem;
	width: 1rem;
}

.spinner.m {
	height: 2rem;
	width: 2rem;
}

.spinner.l {
	height: 3rem;
	width: 3rem;
}

.spinner.s,
.spinner.m,
.spinner.l {
	margin: 0 auto;
	position: relative;
	-webkit-animation: rotation 1s infinite linear;
	-moz-animation: rotation 1s infinite linear;
	-o-animation: rotation 1s infinite linear;
	animation: rotation 1s infinite linear;
	border-left: .2rem solid rgba(77, 77, 77, .15);
	border-right: .2rem solid rgba(77, 77, 77, .15);
	border-bottom: .2rem solid rgba(77, 77, 77, .15);
	border-top: .2rem solid rgba(77, 77, 77, .5);
	border-radius: 100%;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes rotation {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(359deg);
	}
}

@-o-keyframes rotation {
	from {
		-o-transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}

/* spinner end */

/* jumping dots */
.jumping-dots span {
	position: relative;
	bottom: 0px;
	transition-timing-function: ease-in-out;
	-webkit-animation: jump 1s infinite;
	animation: jump 1s infinite;
}

.jumping-dots .dot-1 {
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
}

.jumping-dots .dot-2 {
	-webkit-animation-delay: 400ms;
	animation-delay: 400ms;
}

.jumping-dots .dot-3 {
	-webkit-animation-delay: 600ms;
	animation-delay: 600ms;
}

@-webkit-keyframes jump {
	0% {
		bottom: 0px;
	}
	20% {
		bottom: 3px;
	}
	40% {
		bottom: 0px;
	}
}

@keyframes jump {
	0%   {bottom: 0px;}
	20%  {bottom: 3px;}
	40%  {bottom: 0px;}
}
/* jumping dots end */

/* footer */

footer {
	position:fixed;
	bottom:1px;
	text-align: right;
	padding-bottom: 1em;
	padding-right: 3em;
}

.birthday-today,
.event-today {
	font-weight: bold;
}

.warning-text {
	font-size: 1.2em;
	font-weight: bold;
	color: #ff0000;
}

#noperm-msg {
	margin-top: 15px;
}

.preview-indicator {
}

#theme-preview {
	margin: 15px 0px;
}

#cropimage-wrapper,
#cropimage-preview-wrapper {
	margin-bottom: 10px;
}

.fn {
	font-weight: bold;
	font-size: 1rem;
}

.vcard-card {
	background-color: rgba(254,254,254,0.5);
}

.vcard {
	word-wrap: break-word;
}

.profile-edit-side-link {
	opacity: 0;
	filter:alpha(opacity=0);
}

.card:hover .profile-edit-side-link {
	opacity: 1;
	filter:alpha(opacity=100);
}

#hide-friends-yes-label,
#hide-friends-no-label {
	margin-left: 125px;
	float: left;
	width: 50px;
}

#fsuggest-desc, #fsuggest-submit-wrapper {
	margin-top: 15px;
	margin-bottom: 15px;
}

.app-name {
	overflow: none;
}

.app-container img {
	margin-left: auto;
	margin-right: auto;
	width: 80px;
	height: 80px;
	display: block;
}

.pager {
  padding: 10px;
  text-align: center;
  font-size: 1.0em;
}


.pager_first,
.pager_last,
.pager_prev,
.pager_next,
.pager-prev,
.pager-next,
.pager_n {
	border: 1px solid #e0e0e0;
	background: transparent;
	padding: 4px;
}

.pager_current {
	border: 1px solid transparent;
	background: transparent;
	padding: 4px;
}

.photo,
.contact-block-img {
	border-radius: 0.375rem;
	box-shadow: 0px 0px 0px 0 #444444;
}

#side-bar-photos-albums {
	margin-top: 15px;
}

#side-bar-photos-albums ul {
	list-style: none;
}

.profile-match-photo img,
.directory-photo-img {
	border-radius: 0.375rem;
	box-shadow: 0px 0px 0px 0 #444444;
}

.profile-match-photo img {
	width: 2.3rem !important;
	height: 2.3rem !important;
}

#photo-view-wrapper {
	background-color: rgba(28,28,28,0.8);
}

.pmenu.horizontal {
	padding: 0 0 0 0;
	border-bottom: none;
}

.pmenu.horizontal .pmenu-title {
	display: none;
}
.pmenu.horizontal ul {
	-moz-padding-start: 0;
}

.pmenu.horizontal li {
	margin-left: 0;
	display: inline;
	padding-right: 15px;
}

.group-delete-wrapper {
	float: right;
}

#pause {
	position: fixed;
	bottom: 5px;
	right: 5px;
}

#contact-block {
	width: 100%;
}

#contact-block-numcontacts {
	font-weight: bold;
	margin-bottom:10px;
}

.contact-block-div {
	display: inline;
}

.contact-block-textdiv {
	width: 150px;
	height: 34px;
}

.contact-block-img {
	width: 2.95rem;
	height: 2.95rem;
	margin-bottom: 3px;
}

#tag-remove {
	margin-bottom: 15px;
}

#tagrm li {
	margin-bottom: 10px;
}

#tagrm-submit, #tagrm-cancel {
	margin-top: 25px;
}

#tagrm-cancel {
	margin-left: 15px;
}

.wall-item-conv {
	background-color: rgba(18,18,18,0.4);
}

#nav-notifications-template,
#nav-notifications-forums-template {
	display: none;
}

#nav-search-spinner {
	float: right;
	margin-top: -1.4rem;
	margin-right: 1rem;
}


#nav-search-text {
	width: 280px;
	padding: .15rem .5rem;
}

nav .acpopup {
	top: 46px !important;
	margin-left: -35px;
	width: 290px;
}

.clear {
	clear: both;
}

.descriptive-text {
	color: #888;
}

#plugin-settings-link, #account-settings-link {
	margin-bottom: 10px;
}

#uexport-link {
	margin-bottom: 20px;
}

#network-new-link {
	margin-top: 15px;
	margin-bottom: 15px;
}

#cboxOverlay {
	z-index: 1050;
}

#colorbox {
	z-index: 1051;
}

#cboxContent {
	padding: 3px;
	border: 0px solid #fff;
	border-radius: var(--bs-border-radius);
	background-color: #fff;
	z-index: 1052;
}

.app-title {
	margin: 10px;
}

.profile-match-photo {
	float: left;
}

.profile-match-name {
	width: 120px;
	height: 1.5em;
	overflow: hidden !important;
}

.profile-match-note {
	text-align: center;
}

.profile-match-connect {
	text-align: center;
	font-weight: bold;
}

.profile-match-wrapper {
    float: left;
    width: 120px;
    height: 150px;
    padding: 10px;
    margin: 8px 10px 0 0;
    border-top: 1px solid #eee;
    border-left: 2px solid #eee;
}
.profile-match-ignore {
	float: right;
}

.side-link {
	margin-bottom: 15px;
}

#prof-members {
	margin-top: 20px;
	padding: 10px;
	height: 250px;
	overflow: auto;
	border: 1px solid #ddd;
}

#prof-separator {
	margin-top: 10px;
	margin-bottom: 10px;
}

#prof-all-contacts {
	padding: 10px;
	height: 450px;
	overflow: auto;
	border: 1px solid #ddd;
}

#prof-edit-desc {
	margin-top: 15px;
}

.required {
	color: #ff0000;
}

.notif-image {
	height: 80px;
	width: 80px;
	margin-right: 15px;
}

/**
 * OAuth
 */
.oauthapp {
	height: auto; overflow: auto;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 1em;
	margin-bottom: 1em;
}
.oauthapp img {
	float: left;
	width: 48px; height: 48px;
	margin: 10px;
}
.oauthapp .icon {
	margin-right: 20px;
}

.oauthapp img.noicon {
	background-image: url("../../../../images/icons/48/plugin.png");
	background-position: center center;
	background-repeat: no-repeat;
}
.oauthapp a {
	float: left;
}


.body-attach {
	margin-top: 10px;
}

.acpopup li div.taggable {
	color:#cc0000;
}

/* popup notifications */
div.jGrowl div.notice {
  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
  color: #ffffff;
  padding-left: 58px;
}
div.jGrowl div.info {
  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
  color: #ffffff;
  padding-left: 58px;
}
#jGrowl.top-right {
	top: 4.5rem;
	right: .25rem;
}

div.jGrowl div.jGrowl-notification {
    min-height: 60px;
}

.jslider .jslider-scale ins {
	color: #333;
	font-size: 0.9rem;
	width: 100px;
	text-align: center;
}

.conv-participants {
	color: #ccc;
}

.contactname {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dropdown-notification,
.notification,
.member-item {
	line-height: 1.2em;
	font-size: 0.75rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
}

.notification.notification-forum {
	font-size: 0.9rem;
	color: #ccc;
}

#acl-search::-webkit-input-placeholder {
	/* non-fontawesome fonts set a fallback for text parts of the placeholder*/
	font-family: ForkAwesome, sans-serif, arial, freesans;
}

#acl-search::-moz-placeholder {
	/* non-fontawesome fonts set a fallback for text parts of the placeholder*/
	font-family: ForkAwesome, sans-serif, arial, freesans;
}

.acl-item-header {
	width: 100%;
}

.acl-list-item.grouphide {
	border: 1px solid red;
	z-index: 2;
}

.acl-list-item.groupshow {
	border: 1px solid green;
	z-index: 2;
}

.acl-list-item.taggable {
	background-color: #ddddff;
}

.acl-button-show,
.acl-button-hide {
	float: right;
	margin-left: 5px;
}

.contact-block-content {
	margin-top: 10px;
}
.contact-block-img.archived,
.app-deleted,
.dim {
	opacity: 0.3;
	filter:alpha(opacity=30);
}


.profile-match-connect {
	margin-top: 5px;
}

.reshared-content {
	margin-left: 20px;
}

.shared_header img {
	border-radius: var(--bs-border-radius);
	margin-right: .75rem;
}

.tag1 {
    font-size : 0.9em !important;
  }

.tag2 {
    font-size : 1.0em !important;
  }

.tag3 {
    font-size : 1.1em !important;
  }

.tag4 {
    font-size : 1.2em !important;
  }

.tag5 {
    font-size : 1.3em !important;
  }


.tag6 {
    font-size : 1.4em !important;
  }


.tag7 {
    font-size : 1.5em !important;
  }


.tag8 {
    font-size : 1.6em !important;
  }

.tag9 {
    font-size : 1.7em !important;
  }

.tag10 {
    font-size : 1.8em !important;
  }

div#write-pages {
display: block;
background: silver;
width: 100%;
}

div#write-pages a {
color: #000;
margin-right: 50px;
}

.pmenu ul {
	list-style-type: none;
}

.generic-icons,
a .generic-icons {
	font-size: 1rem;
	margin-right: 0.5rem;
	color: #ccc;
}

.generic-icons-right {
	font-size: 1rem;
	margin-left: 0.5rem;
	color: #ccc;
}

.generic-icons:hover,
a .generic-icons:hover,
.generic-icons-right:hover,
a .generic-icons-right:hover {
	color: #ccc;
}

.generic-icons-nav {
	font-size: 1rem;
	margin-right: 7px;
}

.admin-icons {
	font-size: 1.2em;
	margin-right: 7px;
}

.drop-icons,
a .drop-icons {
	font-size: 1rem;
	color: #ccc;
	text-decoration: none;
	cursor: pointer;
}

.drop-icons:hover,
a .drop-icons:hover {
	color: #FF0000;
}

.lockview,
.sys-apps-toggle {
	cursor: pointer;
}

.permission-inherited {
	float: left;
	margin-right: 10px;
	color: #FF0000;
}

.perm-inherited {
	color: #FF0000;
}


#menulist {
	list-style-type: none;
}

#adminpage table tr:hover {
	background-color: #BBC7D7;
}

table {
	border-spacing: 2px;
	max-width: 100%;
}

th,td {
	padding: 3px;
}

#channels > tbody > tr > td, #users > tbody > tr > td {
	max-width: 19.4em;
	overflow: hidden;
}

/* mail */

img.mail-conv-sender-photo {
	border-radius: var(--bs-border-radius);
}

/* jot */

.jothidden {
	font-weight: bold;
}

.jothidden input::-webkit-input-placeholder {
	font-weight: bold;
}

.jothidden input::-moz-placeholder {
	font-weight: bold;
}

#profile-jot-wrapper {
	background-color: rgba(254, 254, 254, 1);
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: var(--bs-border-radius);

}



#profile-jot-text::-webkit-input-placeholder {
	font-size: 1.2rem;
}

#profile-jot-text::-moz-placeholder {
	font-size: 1.2rem;
}

#profile-jot-text:focus::-webkit-input-placeholder {
	color: transparent;
}

#profile-jot-text:focus::-moz-placeholder {
	color: transparent;
}

#profile-jot-text-loading {
	color: #777;
	display: none;
}

.jot-icons.jot-lock-warn {
	color: darkorange;
}


/* conversation */

.top-radius {
	border-top-right-radius: var(--bs-border-radius);
	border-top-left-radius: var(--bs-border-radius);
}

.wall-event-item {
	padding: 10px;
	color: #fff;
	background-color: #3A87AD; /* should reflect calendar color */
	border-top-left-radius: var(--bs-border-radius);
	border-top-right-radius: var(--bs-border-radius);
}

.wall-photo-item img {
	max-width: 100% !important;
	border-top-right-radius: var(--bs-border-radius);
	border-top-left-radius: var(--bs-border-radius);
}

.wall-item-footer {
	font-size: 0.75rem;
	margin-top: 2em;
}

.wall-item-content-wrapper {
	background-color: rgba(28,28,28,0.8);
	border-top-right-radius: var(--bs-border-radius);
	border-top-left-radius: var(--bs-border-radius);
}

.wall-item-content-wrapper.comment {
	background-color: rgba(18,18,18,0.4);
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
}

.hide-comments-outer {
	background-color: rgba(18,18,18,0.4);
	border-top-color: #e0e0e0;
	border-style: solid;
	border-top-style: dashed;
	border-width: 1px 0px 0px 0px;
	text-align: center;
	border-radius: 0px;
}

.hide-comments-outer:hover {
	border-top: 1px dashed #adadad;
}

.wall-item-comment-wrapper {
	padding: 7px 10px;
	background-color: rgba(28,28,28,0.8);
	border-radius: 0px;
	border-bottom-right-radius: var(--bs-border-radius);
	border-bottom-left-radius: var(--bs-border-radius);
	border-top: 3px solid rgba(18,18,18,0.4);
}

.wall-item-comment-wrapper-wc {
	border-top: 0px solid rgba(18,18,18,0.4);
}


.wall-item-photo {
	width: 2.3rem;
	height: 2.3rem;
	border: none;
	border-radius: var(--bs-border-radius);
	box-shadow: 0px 0px 0px 0 #444444;
}

.comment .wall-item-photo {
	width: 2.3rem;
	height: 2.3rem;
}

.wall-item-ago,
.dropdown-sub-text {
	color: #777;
}

.wall-item-content,
.mail-conv-body,
.page-body,
.chat-item-text,
.chat-item-text-self {
	font-size: 1rem;
}


.comment-edit-text {
	border: 1px solid #e0e0e0;
	border-radius: var(--bs-border-radius);
}

.divgrow-showmore {
	display: block;
	border-top: 1px dashed #e0e0e0;
	text-align: center;
}

.divgrow-showmore:hover {
	border-top: 1px dashed #adadad;
}

.directory-item .divgrow-showmore {
	background-color: rgba(18,18,18,0.4);
}

/* widgets */

.widget {
	background-color: rgba(254,254,254,.5);
	border-radius: var(--bs-border-radius);
}

.widget h3 {
	font-size: 0.9rem;
	text-transform: uppercase;
}


#note-text {
	border-radius: var(--bs-border-radius);
}

.fileas-ul {
	list-style-type: none;
}

#datebrowse-sidebar select {
	border: 1px solid #e0e0e0;
	border-radius: var(--bs-border-radius);
}

.thing-show img {
	margin: 10px;
}

.abook-self {
	background-color: #ffdddd;
}

.abook-pending-contact, .abook-permschange {
	background: orange;
}

.online-now {
	color: red;
	cursor: pointer;
}

.chat-item-photo,
.chat-item-photo-self {
	border-radius: var(--bs-border-radius);
}

.chat-item-title,
.chat-item-title-self {
	border-radius: var(--bs-border-radius);
	background-color: rgba(28,28,28,0.8);
}

#chatMembers img {
	border-radius: var(--bs-border-radius);
}

.menu-img-3 {
	width: 2.7rem;
	height: 2.7rem;
	margin-right: 5px;
	border-radius: var(--bs-border-radius);
	float: left;
}

.menu-img-2 {
	height: 1.8rem;
	width: 1.8rem;
	margin-right: 5px;
	border-radius: var(--bs-border-radius);
	float: left;
}

.menu-img-1 {
	height: 1.1rem;
	width: 1.1rem;
	border-radius: var(--bs-border-radius);
}

.usermenu {
	width: 3.75rem;
}

#avatar {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: var(--bs-border-radius);
}

#nav-app-link-wrapper.has_location .nav-link {
	padding: 0 !important;
	line-height: 1.175;
	white-space: nowrap;
}

.page-title {
	margin: 7px 0px;
}

.generic-content-wrapper-styled {
	background-color: var(--bs-body-bg);
	padding: 10px;
	border-radius: var(--bs-border-radius);
}

.generic-content-wrapper {
	border: 1px solid #e0e0e0;
	border-radius: var(--bs-border-radius);
	margin-bottom: 1.5rem;
}

.section-title-wrapper {
	padding: 7px 10px;
	background-color: rgba(28,28,28,0.8);
	border-top-left-radius: var(--bs-border-radius);
	border-top-right-radius: var(--bs-border-radius);
	border-bottom: 3px solid rgba(18,18,18,0.4);
}

.section-title-wrapper h2,
.section-subtitle-wrapper h3 {
	margin-top: 0px;
	margin-bottom: 0px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-subtitle-wrapper h3 {
	padding: 3px;
}

.section-subtitle-wrapper {
	padding: 4px 10px;
	background-color: rgba(28,28,28,0.8);
	border-bottom: 3px solid rgba(18,18,18,0.4);
}

.section-content-tools-wrapper {
	padding: 7px 10px;
	background-color: rgba(18,18,18,0.4);
	border-bottom: 3px solid rgba(18,18,18,0.4);
}

.section-content-success-wrapper {
	padding: 21px 10px;
	color: #155724;
	background-color: #d4edda;
	border-bottom: 3px solid rgba(18,18,18,0.4);
	text-align: center;
}

.section-content-info-wrapper {
	padding: 21px 10px;
	color: #0c5460;
	background-color: #d1ecf1;
	border-bottom: 3px solid rgba(18,18,18,0.4);
	text-align: center;
}

.section-content-warning-wrapper {
	padding: 21px 10px;
	color: #856404;
	background-color: #fff3cd;
	border-bottom: 3px solid rgba(18,18,18,0.4);
	text-align: center;
}

.section-content-danger-wrapper {
	padding: 21px 10px;
	color: #721c24;
	background-color: #f8d7da;
	border-bottom: 3px solid rgba(18,18,18,0.4);
	text-align: center;
}
.section-content-tools-wrapper .section-content-success-wrapper,
.section-content-wrapper .section-content-success-wrapper,
.section-content-tools-wrapper .section-content-info-wrapper,
.section-content-wrapper .section-content-info-wrapper,
.section-content-tools-wrapper .section-content-warning-wrapper,
.section-content-wrapper .section-content-warning-wrapper,
.section-content-tools-wrapper .section-content-danger-wrapper,
.section-content-wrapper .section-content-danger-wrapper {
	margin-bottom: 10px;
	border-bottom: none;
	border-radius: var(--bs-border-radius);
}


.section-content-wrapper {
	padding: 7px 10px;
	background-color: rgba(18,18,18,0.4);
	border-bottom-left-radius: var(--bs-border-radius);
	border-bottom-right-radius: var(--bs-border-radius);
	word-wrap: break-word;
}

.section-content-wrapper-np {
	background-color: rgba(18,18,18,0.4);
	border-bottom-left-radius: var(--bs-border-radius);
	border-bottom-right-radius: var(--bs-border-radius);
	word-wrap: break-word;
}

main.fullscreen {
	left: 0px;
	width: 100%;
	height: 100vh;
	max-width: none;
}

main.fullscreen .generic-content-wrapper {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
	border-radius: 0px;
	border-width: 0px;
}

main.fullscreen .section-title-wrapper {
	border-radius: 0px;
	position: sticky;
	top: 0;
	z-index: 1020;
}

main.fullscreen .section-content-wrapper,
main.fullscreen .section-content-wrapper-np {
	border-radius: 0px;
}

#inline-btn {
	display: none;
}

.atoken-index-row:hover td,
.chatroom-index-row:hover td,
.group-index-row:hover td,
.wikis-index-row:hover td,
.locs-index-row:hover td,
[id^="cloud-index-"]:hover td,
.cloud-index-active {
	background-color: rgba(28,28,28,0.8);
}

[id^="webpage-list-item-"]:hover td,
[id^="block-list-item-"]:hover td,
[id^="layout-list-item-"]:hover td,
[id^="menu-list-item-"]:hover td,
[id^="mitem-list-item-"]:hover td {
	background-color: rgba(28,28,28,0.8);
}

#perms-tool-table .highlight:hover {
	background-color: rgba(28,28,28,0.8);
}

.notify-seen {
	background-color: rgba(28,28,28,0.8);
}

/* bootstrap overrides */

.form-control {
	border-radius: 0.375rem;
}

blockquote {
	font-size: 1rem;
	font-style: italic;
	border-left: 3px solid #e0e0e0;
	padding: 1em 0px 1em 1.5em;
	margin: 0px;
}

.dropdown-menu {
	color: #ccc;
}

.dropdown-item {
	color: #ccc;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover,
.textcomplete-item:focus .dropdown-item,
.textcomplete-item:hover .dropdown-item,
.textcomplete-item.active .dropdown-item,
.textcomplete-item:active .dropdown-item {
	color: #ccc;
	background-color: rgba(28,28,28,0.8);
}

.textcomplete-dropdown {
	max-height: 300px;
	max-width: 250px;
	overflow: auto;
}

.dropdown-item.active {
	color: #fff;
	background-color: #007bff;
}

.bg-dark {
	background-color: #000 !important;
}

.navbar {
	z-index:1030;
}

.navbar-dark .navbar-nav .nav-link,
.usermenu i {
	color: #999;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.usermenu:focus i,
.usermenu:hover i {
	color: #fff;
}

@media screen and (max-width: 992px) {

	aside#region_1 {
		border-right: 1px solid $nav_bd;
	}

	main {
		left: -21rem;
		width: calc( 100% + 21rem );
	}

	main.region_1-on {
		left: 0px;
	}

	#nav-app-link-wrapper {
		min-width: 0;
	}

	#nav-app-link-wrapper {
		margin-right: 0.5rem;
	}

	#navbar-collapse-2 .navbar-app i {
		font-size: 1rem;
		margin-right: 0.5rem;
	}

}

.shareable_element_text {
	height: 300px;
	width: 300px;
}

.bb_observer {
	color: red;
}

.bb_observer img {
	border: 3px solid red !important;
}

.bb_rm-logo {
	height: 1.3em;
	width: auto;
	margin-top:-3px;
}

dl.bb-dl > dt {
	/* overriding the default dl style from bootstrap, as bootstrap's
	   style of a bold unindented line followed by a plain unindented
	   line is already acheivable in bbcode without dl */
	font-weight: normal;
}
dl.dl-terms-monospace > dt { font-family:     monospace; }
dl.dl-terms-bold      > dt { font-weight:     bold; }
dl.dl-terms-italic    > dt { font-style:      italic; }
dl.dl-terms-underline > dt { text-decoration: underline; }
dl.dl-terms-large     > dt { font-size:       120%; }
dl.bb-dl:not(.dl-horizontal) > dd {
	display: block;
	margin-left: 2em;
}
dl.bb-dl > dd > li {
	/* adding some indent so bullet-list items will line up better with
	   dl descriptions if someone wants to be impure and combine them */
	margin-left: 1em;
}

.bootstrap-tagsinput .tag:before {
	/* Copied from fa-asterisk, is there a better way to do it? */
	font-family: ForkAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	content:"\f069  ";
}

/* Modified original CSS to match input in Redbasic */
.jothidden .bootstrap-tagsinput {
	border: 0px solid transparent;
	margin-bottom: 0px;
	box-shadow: none;
	display: inline-block;
	border-radius: var(--bs-border-radius);
	cursor: text;
	padding: 0px 10px;
	width: 100%;
}

.bootstrap-tagsinput .label {
	font-size: 100%;
}

.bootstrap-tagsinput input {
	height: 2.5rem;
}

/* Abusing theme-green is less work than makeing a new new one */
.theme-green .back-bar .selected-bar {
	background-color: #000000;
	background-image: none !important;
}


/* Turn checkboxes into switches */
.onoffswitch.checkbox > div {
    position: relative; width: 60px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
    display:inline-block;
}

.onoffswitch.checkbox input {
    display: none;
}

.onoffswitch.checkbox > div label {
	display: block; overflow: hidden; cursor: pointer;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	margin:0px;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	font-weight: normal;
}

.onoffswitch.checkbox:hover label {
	color: var(--bs-link-color);
}

.onoffswitch.checkbox:hover > div label {
	border-color: var(--bs-link-color);
}

.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 20px; padding: 0; line-height:20px;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: attr(data-on);
    padding-right: 21px;
    background-color: rgba(28,28,28,0.8);
	color: #ccc;
    text-align: right;
}

.onoffswitch-inner:after {
    content: attr(data-off);
    padding-left: 21px;
    background-color: rgba(28,28,28,0.8); color: #e0e0e0;
    text-align: left;
}

.onoffswitch-switch {
    display: block; width: 15px; margin:4px;
    background: #e0e0e0;
    border-radius: 10px;
    position: absolute; top: 0; bottom: 0; right: 36px;
    -moz-transition: all 0.3s ease-in 0s; -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s; transition: all 0.3s ease-in 0s;
}

.onoffswitch.checkbox > div > input:checked + label .onoffswitch-inner {
    margin-left: 0px;
}

.onoffswitch.checkbox > div > input:checked + label .onoffswitch-switch {
    right: 0px;
    background-color: var(--bs-link-color);
}


.onoffswitch.checkbox > div > input:disabled + label .onoffswitch-switch {
	background-color: red;
	opacity: 0.3;
	filter:alpha(opacity=30);
}



.help-searchlist {
	list-style-type: none;
}

.help-searchlist a {
	font-size: 130%;
}

.embed-photo-selected-photo {
	border-color: blue;
	border-style: solid;
	border-width: 5px;
}

#wiki-preview img {
	max-width: 100%;
}

#ace-editor,
#editor {
	border-bottom-left-radius: var(--bs-border-radius);
	border-bottom-right-radius: var(--bs-border-radius);
}

.sub-menu-wrapper {
	padding-left: 1rem;
	display: none;
}

.sub-menu {
	width: 100%;
	margin-top: 0.5rem;
	padding-left: 1rem;
	border-left: 0.2rem solid #eee;
}

.app-icon i {
	color: #777;
	font-size: 80px;
	text-shadow: 3px 3px 3px lightgrey;
}

.app-detail {
	text-align: center;
}

.login-wrapper {
	max-width: 400px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

#permcat-index {
	margin: 10px;
}

.cloud-container {
	float: left;
	width: 100px;
	height: 110px;
	margin: 5px;
}

.cloud-icon-container {
	width: 64px;
	height: 64px;
	border: 1px solid #eee;
	border-radius: var(--bs-border-radius);
}

.cloud-icon i {
	font-size: 42px;
	color: #888;
	margin-top: 8px;
	margin-left: 6px;
}

.cloud-icon img {
	max-width: 64px;
	max-height: 64px;
	border-radius: var(--bs-border-radius);
}

.cloud-title {
	width: 98px;
	height: 36px;
	overflow: hidden;
}

.caption-visible {
	max-height: 75%;
}

.oneway-overlay {
    position: absolute;
    text-shadow: -1px 0 1px #fff, 0 1px 1px#fff, 1px 0 1px #fff, 0 -1px 1px #fff;
}

.cover-photo-review {
	margin-bottom: 10px;
}

.hover-fx-hide  {
	opacity: 0;
}

.hover-fx-show:hover .hover-fx-hide {
	opacity: 1;
}

.bootstrap-tagsinput {
	width: 100%;
}

.jg-entry img {
	border-radius: var(--bs-border-radius);
}
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 *
 * Bootstrap-Nightfall v1.1.3 (https://vinorodrigues.github.io/bootstrap-dark-5/)
 * Copyright 2020-2022 Vino Rodrigues
 * This version is an extraction with only the dark elements, or deltas, of the
 * dark theme.  Used as a bootstrap plugin.
 */
:root {
  color-scheme: dark;
}

:root {
  --bs-blue: #375a7f;
  --bs-indigo: #673ab7;
  --bs-purple: #654ea3;
  --bs-pink: #e83e8c;
  --bs-red: #e74c3c;
  --bs-orange: #fd7e14;
  --bs-yellow: #f39c12;
  --bs-green: #00bc8c;
  --bs-teal: #45b5aa;
  --bs-cyan: #17a2b8;
  --bs-white: #fafafa;
  --bs-black: #111;
  --bs-gray: #7e7e7e;
  --bs-gray-dark: #121212;
  --bs-gray-100: #e1e1e1;
  --bs-gray-200: #cfcfcf;
  --bs-gray-300: #b1b1b1;
  --bs-gray-400: #9e9e9e;
  --bs-gray-500: #7e7e7e;
  --bs-gray-600: #626262;
  --bs-gray-700: #515151;
  --bs-gray-800: #3b3b3b;
  --bs-gray-900: #222;
  --bs-primary: #375a7f;
  --bs-secondary: #626262;
  --bs-success: #00bc8c;
  --bs-info: #17a2b8;
  --bs-warning: #f39c12;
  --bs-danger: #e74c3c;
  --bs-light: #9e9e9e;
  --bs-dark: #3b3b3b;
  --bs-primary-rgb: 55, 90, 127;
  --bs-secondary-rgb: 98, 98, 98;
  --bs-success-rgb: 0, 188, 140;
  --bs-info-rgb: 23, 162, 184;
  --bs-warning-rgb: 243, 156, 18;
  --bs-danger-rgb: 231, 76, 60;
  --bs-light-rgb: 158, 158, 158;
  --bs-dark-rgb: 59, 59, 59;
  --bs-white-rgb: 250, 250, 250;
  --bs-black-rgb: 17, 17, 17;
  --bs-body-color-rgb: 225, 225, 225;
  --bs-body-bg-rgb: 34, 34, 34;
  --bs-body-color: #e1e1e1;
  --bs-body-bg: #222;
  --bs-gradient: linear-gradient(180deg, rgba(17, 17, 17, 0.15), rgba(17, 17, 17, 0));
}

hr {
  color: #fafafa;
  background-color: currentColor;
  opacity: 0.1;
}

mark {
  background-color: rgba(243, 156, 18, 0.5);
}

a {
  color: #5f7b99;
}
a:hover {
  color: #4b6b8c;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
}

pre {
  color: #e1e1e1;
}
pre code {
  color: inherit;
}

code {
  color: #45b5aa;
}
a > code {
  color: inherit;
}

kbd {
  color: #e1e1e1;
  background-color: #3b3b3b;
}

caption {
  color: #9e9e9e;
}

.blockquote-footer {
  color: #626262;
}

.img-thumbnail {
  background-color: #222;
  border: 1px solid #515151;
}

.figure-caption {
  color: #9e9e9e;
}

.table {
  --bs-table-color: #e1e1e1;
  --bs-table-bg: transparent;
  --bs-table-border-color: #515151;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #e1e1e1;
  --bs-table-striped-bg: rgba(250, 250, 250, 0.05);
  --bs-table-active-color: #e1e1e1;
  --bs-table-active-bg: rgba(250, 250, 250, 0.1);
  --bs-table-hover-color: #e1e1e1;
  --bs-table-hover-bg: rgba(250, 250, 250, 0.075);
  color: #e1e1e1;
  border-color: #515151;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.table-primary {
  --bs-table-color: #fff;
  --bs-table-bg: #1c2d40;
  --bs-table-border-color: #334253;
  --bs-table-striped-bg: #27384a;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #334253;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #2d3d4e;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #334253;
}

.table-secondary {
  --bs-table-color: #fff;
  --bs-table-bg: #313131;
  --bs-table-border-color: #464646;
  --bs-table-striped-bg: #3b3b3b;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #464646;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #404040;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #464646;
}

.table-success {
  --bs-table-color: #fff;
  --bs-table-bg: #005e46;
  --bs-table-border-color: #1a6e59;
  --bs-table-striped-bg: #0d664f;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #1a6e59;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #136a54;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #1a6e59;
}

.table-info {
  --bs-table-color: #fff;
  --bs-table-bg: #0c515c;
  --bs-table-border-color: #24626c;
  --bs-table-striped-bg: #185a64;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #24626c;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #1e5e68;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #24626c;
}

.table-warning {
  --bs-table-color: #fff;
  --bs-table-bg: #7a4e09;
  --bs-table-border-color: #876022;
  --bs-table-striped-bg: #815715;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #876022;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #845b1b;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #876022;
}

.table-danger {
  --bs-table-color: #fff;
  --bs-table-bg: #74261e;
  --bs-table-border-color: #823c35;
  --bs-table-striped-bg: #7b3129;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #823c35;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #7e362f;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #823c35;
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #9e9e9e;
  --bs-table-border-color: #8e8e8e;
  --bs-table-striped-bg: #969696;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #8e8e8e;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #929292;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #8e8e8e;
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #3b3b3b;
  --bs-table-border-color: #4f4f4f;
  --bs-table-striped-bg: #454545;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #4f4f4f;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #4a4a4a;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #4f4f4f;
}

.form-text {
  color: #9e9e9e;
}

.form-control {
  color: #b1b1b1;
  background-color: #222;
  border: 1px solid #515151;
}
.form-control:focus {
  color: #b1b1b1;
  background-color: #222;
  border-color: #9badbf;
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.form-control::-moz-placeholder {
  color: #5a5a5a;
}
.form-control::placeholder {
  color: #5a5a5a;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #222;
}
.form-control::-webkit-file-upload-button {
  color: #b1b1b1;
  background-color: #3b3b3b;
  border-color: inherit;
}
.form-control::file-selector-button {
  color: #b1b1b1;
  background-color: #3b3b3b;
  border-color: inherit;
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #383838;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #383838;
}
.form-control::-webkit-file-upload-button {
  color: #b1b1b1;
  background-color: #3b3b3b;
  border-color: inherit;
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #383838;
}

.form-control-plaintext {
  color: #e1e1e1;
  background-color: transparent;
  border: solid transparent;
}

.form-select {
  color: #b1b1b1;
  background-color: #222;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23cfcfcf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  border: 1px solid #515151;
}
.form-select:focus {
  border-color: #9badbf;
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  background-image: none;
}
.form-select:disabled {
  background-color: #3b3b3b;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #b1b1b1;
}

.form-check-input {
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #9badbf;
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.form-check-input:checked {
  background-color: #375a7f;
  border-color: #375a7f;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fafafa' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fafafa'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #375a7f;
  border-color: #375a7f;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fafafa' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28250, 250, 250, 0.25%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239badbf'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fafafa'/%3e%3c/svg%3e");
}

.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  opacity: 0.65;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #222, 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #222, 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.form-range::-webkit-slider-thumb {
  background-color: #375a7f;
  border: 0;
}
.form-range::-webkit-slider-thumb:active {
  background-color: #c3ced9;
}
.form-range::-webkit-slider-runnable-track {
  background-color: #515151;
}
.form-range::-moz-range-thumb {
  background-color: #375a7f;
  border: 0;
}
.form-range::-moz-range-thumb:active {
  background-color: #c3ced9;
}
.form-range::-moz-range-track {
  background-color: #515151;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #7e7e7e;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #7e7e7e;
}

.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
}

.input-group-text {
  color: #b1b1b1;
  background-color: #3b3b3b;
  border: 1px solid #515151;
}

.valid-feedback {
  color: #00bc8c;
}

.valid-tooltip {
  color: #111;
  background-color: rgba(0, 188, 140, 0.9);
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #00bc8c;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300bc8c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #00bc8c;
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 140, 0.25);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #00bc8c;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23cfcfcf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300bc8c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.was-validated .form-select:valid[multiple], .was-validated .form-select:valid[size]:not([size="1"]), .form-select.is-valid[multiple], .form-select.is-valid[size]:not([size="1"]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300bc8c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #00bc8c;
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 140, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #00bc8c;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #00bc8c;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 140, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #00bc8c;
}

.invalid-feedback {
  color: #e74c3c;
}

.invalid-tooltip {
  color: #fafafa;
  background-color: rgba(231, 76, 60, 0.9);
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #e74c3c;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #e74c3c;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23cfcfcf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.was-validated .form-select:invalid[multiple], .was-validated .form-select:invalid[size]:not([size="1"]), .form-select.is-invalid[multiple], .form-select.is-invalid[size]:not([size="1"]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #e74c3c;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #e74c3c;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #e74c3c;
}

.btn {
  color: #e1e1e1;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:hover {
  color: #e1e1e1;
}
.btn-check:focus + .btn, .btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  opacity: 0.65;
}

.btn-primary {
  color: #fafafa;
  background-color: #375a7f;
  border-color: #375a7f;
}
.btn-primary:hover {
  color: #fafafa;
  background-color: #2f4d6c;
  border-color: #2c4866;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fafafa;
  background-color: #2f4d6c;
  border-color: #2c4866;
  box-shadow: 0 0 0 0.25rem rgba(84, 114, 145, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fafafa;
  background-color: #2c4866;
  border-color: #29445f;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(84, 114, 145, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fafafa;
  background-color: #375a7f;
  border-color: #375a7f;
}

.btn-secondary {
  color: #fafafa;
  background-color: #626262;
  border-color: #626262;
}
.btn-secondary:hover {
  color: #fafafa;
  background-color: #535353;
  border-color: #4e4e4e;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fafafa;
  background-color: #535353;
  border-color: #4e4e4e;
  box-shadow: 0 0 0 0.25rem rgba(121, 121, 121, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fafafa;
  background-color: #4e4e4e;
  border-color: #4a4a4a;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(121, 121, 121, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fafafa;
  background-color: #626262;
  border-color: #626262;
}

.btn-success {
  color: #111;
  background-color: #00bc8c;
  border-color: #00bc8c;
}
.btn-success:hover {
  color: #111;
  background-color: #26c69d;
  border-color: #1ac398;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #111;
  background-color: #26c69d;
  border-color: #1ac398;
  box-shadow: 0 0 0 0.25rem rgba(3, 162, 122, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #111;
  background-color: #33c9a3;
  border-color: #1ac398;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(3, 162, 122, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #111;
  background-color: #00bc8c;
  border-color: #00bc8c;
}

.btn-info {
  color: #fafafa;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fafafa;
  background-color: #148a9c;
  border-color: #128293;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #fafafa;
  background-color: #148a9c;
  border-color: #128293;
  box-shadow: 0 0 0 0.25rem rgba(57, 175, 194, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #fafafa;
  background-color: #128293;
  border-color: #117a8a;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(57, 175, 194, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #fafafa;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-warning {
  color: #111;
  background-color: #f39c12;
  border-color: #f39c12;
}
.btn-warning:hover {
  color: #111;
  background-color: #f5ab36;
  border-color: #f4a62a;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #111;
  background-color: #f5ab36;
  border-color: #f4a62a;
  box-shadow: 0 0 0 0.25rem rgba(209, 135, 18, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #111;
  background-color: #f5b041;
  border-color: #f4a62a;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 135, 18, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #111;
  background-color: #f39c12;
  border-color: #f39c12;
}

.btn-danger {
  color: #fafafa;
  background-color: #e74c3c;
  border-color: #e74c3c;
}
.btn-danger:hover {
  color: #fafafa;
  background-color: #c44133;
  border-color: #b93d30;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fafafa;
  background-color: #c44133;
  border-color: #b93d30;
  box-shadow: 0 0 0 0.25rem rgba(234, 102, 89, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fafafa;
  background-color: #b93d30;
  border-color: #ad392d;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(234, 102, 89, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fafafa;
  background-color: #e74c3c;
  border-color: #e74c3c;
}

.btn-light {
  color: #fafafa;
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}
.btn-light:hover {
  color: #fafafa;
  background-color: #868686;
  border-color: #7e7e7e;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #fafafa;
  background-color: #868686;
  border-color: #7e7e7e;
  box-shadow: 0 0 0 0.25rem rgba(172, 172, 172, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #fafafa;
  background-color: #7e7e7e;
  border-color: #777777;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(172, 172, 172, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #fafafa;
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}

.btn-dark {
  color: #fafafa;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
}
.btn-dark:hover {
  color: #fafafa;
  background-color: #323232;
  border-color: #2f2f2f;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fafafa;
  background-color: #323232;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 0.25rem rgba(88, 88, 88, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fafafa;
  background-color: #2f2f2f;
  border-color: #2c2c2c;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 88, 88, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fafafa;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
}

.btn-outline-primary {
  color: #375a7f;
  border-color: #375a7f;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #375a7f;
  border-color: #375a7f;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #375a7f;
  border-color: #375a7f;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #375a7f;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #626262;
  border-color: #626262;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #626262;
  border-color: #626262;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(98, 98, 98, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #626262;
  border-color: #626262;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(98, 98, 98, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #626262;
  background-color: transparent;
}

.btn-outline-success {
  color: #00bc8c;
  border-color: #00bc8c;
}
.btn-outline-success:hover {
  color: #000;
  background-color: #00bc8c;
  border-color: #00bc8c;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 140, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #000;
  background-color: #00bc8c;
  border-color: #00bc8c;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 188, 140, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #00bc8c;
  background-color: transparent;
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 162, 184, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-warning {
  color: #f39c12;
  border-color: #f39c12;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #f39c12;
  border-color: #f39c12;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #f39c12;
  border-color: #f39c12;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #f39c12;
  background-color: transparent;
}

.btn-outline-danger {
  color: #e74c3c;
  border-color: #e74c3c;
}
.btn-outline-danger:hover {
  color: #000;
  background-color: #e74c3c;
  border-color: #e74c3c;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #000;
  background-color: #e74c3c;
  border-color: #e74c3c;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #e74c3c;
  background-color: transparent;
}

.btn-outline-light {
  color: #9e9e9e;
  border-color: #9e9e9e;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(158, 158, 158, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(158, 158, 158, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #9e9e9e;
  background-color: transparent;
}

.btn-outline-dark {
  color: #3b3b3b;
  border-color: #3b3b3b;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 59, 59, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 59, 59, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #3b3b3b;
  background-color: transparent;
}

.btn-link {
  color: #5f7b99;
}
.btn-link:hover {
  color: #4b6b8c;
}
.btn-link:disabled, .btn-link.disabled {
  color: #626262;
}

.dropdown-menu {
  color: #e1e1e1;
  background-color: #111;
  border: 1px solid rgba(250, 250, 250, 0.15);
}

.dropdown-divider {
  border-top: 1px solid rgba(250, 250, 250, 0.15);
}

.dropdown-item {
  color: #f8f9fa;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #dfe0e1;
  background-color: #343a40;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fafafa;
  background-color: #375a7f;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #7e7e7e;
  background-color: transparent;
}

.dropdown-header {
  color: #9e9e9e;
}

.dropdown-item-text {
  color: #f8f9fa;
}

.dropdown-menu-dark {
  color: #515151;
  background-color: #cfcfcf;
  border-color: rgba(250, 250, 250, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #515151;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #111;
  background-color: rgba(17, 17, 17, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fafafa;
  background-color: #375a7f;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #7e7e7e;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(250, 250, 250, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #515151;
}
.dropdown-menu-dark .dropdown-header {
  color: #7e7e7e;
}

.nav-link {
  color: #5f7b99;
}
.nav-link:hover, .nav-link:focus {
  color: #4b6b8c;
}
.nav-link.disabled {
  color: #9e9e9e;
}

.nav-tabs {
  border-bottom: 1px solid #515151;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #3b3b3b #3b3b3b #515151;
}
.nav-tabs .nav-link.disabled {
  color: #9e9e9e;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #b1b1b1;
  background-color: #222;
  border-color: #515151 #515151 #222;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fafafa;
  background-color: #375a7f;
}

.navbar-toggler {
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-light .navbar-brand {
  color: rgba(250, 250, 250, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(250, 250, 250, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(250, 250, 250, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(250, 250, 250, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(250, 250, 250, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(250, 250, 250, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(250, 250, 250, 0.55);
  border-color: rgba(250, 250, 250, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28250, 250, 250, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(250, 250, 250, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(250, 250, 250, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fafafa;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fafafa;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(250, 250, 250, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(250, 250, 250, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(250, 250, 250, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fafafa;
}
.navbar-dark .navbar-toggler {
  color: rgba(250, 250, 250, 0.55);
  border-color: rgba(250, 250, 250, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28250, 250, 250, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(250, 250, 250, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fafafa;
}

.card {
  background-color: #222;
  border: 1px solid rgba(250, 250, 250, 0.125);
}

.card-header {
  background-color: rgba(250, 250, 250, 0.03);
  border-bottom: 1px solid rgba(250, 250, 250, 0.125);
}

.card-footer {
  background-color: rgba(250, 250, 250, 0.03);
  border-top: 1px solid rgba(250, 250, 250, 0.125);
}

.accordion-button {
  color: #e1e1e1;
  background-color: #222;
}
.accordion-button:not(.collapsed) {
  color: #879cb2;
  background-color: #1c2d40;
  box-shadow: inset 0 -1px 0 rgba(250, 250, 250, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23879cb2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e1e1e1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  border-color: #9badbf;
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}

.accordion-item {
  background-color: #222;
  border: 1px solid rgba(250, 250, 250, 0.125);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #9e9e9e;
}
.breadcrumb-item.active {
  color: #9e9e9e;
}

.page-link {
  color: #5f7b99;
  background-color: #3b3b3b;
  border: 1px solid #515151;
}
.page-link:hover {
  color: #4b6b8c;
  background-color: #515151;
  border-color: #515151;
}
.page-link:focus {
  color: #4b6b8c;
  background-color: #3b3b3b;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
}

.page-item.active .page-link {
  color: #fafafa;
  background-color: #375a7f;
  border-color: #375a7f;
}
.page-item.disabled .page-link {
  color: #5a5a5a;
  background-color: #222;
  border-color: #515151;
}

.badge {
  color: #fafafa;
}

.alert-heading {
  color: inherit;
}

.alert-primary {
  color: #738ca5;
  background-color: #1c2d40;
  border-color: #21364c;
}
.alert-primary .alert-link {
  color: #5c7084;
}

.alert-secondary {
  color: #919191;
  background-color: #313131;
  border-color: #3b3b3b;
}
.alert-secondary .alert-link {
  color: #747474;
}

.alert-success {
  color: #4dd0af;
  background-color: #005e46;
  border-color: #007154;
}
.alert-success .alert-link {
  color: #3ea68c;
}

.alert-info {
  color: #5dbecd;
  background-color: #0c515c;
  border-color: #0e616e;
}
.alert-info .alert-link {
  color: #4a98a4;
}

.alert-warning {
  color: #f7ba59;
  background-color: #7a4e09;
  border-color: #925e0b;
}
.alert-warning .alert-link {
  color: #c69547;
}

.alert-danger {
  color: #ee8277;
  background-color: #74261e;
  border-color: #8b2e24;
}
.alert-danger .alert-link {
  color: #be685f;
}

.alert-light {
  color: #bbbbbb;
  background-color: #4f4f4f;
  border-color: #5f5f5f;
}
.alert-light .alert-link {
  color: #969696;
}

.alert-dark {
  color: #767676;
  background-color: #1e1e1e;
  border-color: #232323;
}
.alert-dark .alert-link {
  color: #5e5e5e;
}

.progress {
  background-color: #3b3b3b;
}

.progress-bar {
  color: #111;
  background-color: #375a7f;
}

.list-group-item-action {
  color: #b1b1b1;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #b1b1b1;
  background-color: #2f2f2f;
}
.list-group-item-action:active {
  color: #e1e1e1;
  background-color: #3b3b3b;
}

.list-group-item {
  color: #e1e1e1;
  background-color: #222;
  border: 1px solid rgba(250, 250, 250, 0.125);
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #9e9e9e;
  background-color: #222;
}
.list-group-item.active {
  color: #fafafa;
  background-color: #375a7f;
  border-color: #375a7f;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #738ca5;
  background-color: #1c2d40;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #738ca5;
  background-color: #19293a;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #738ca5;
  border-color: #738ca5;
}

.list-group-item-secondary {
  color: #919191;
  background-color: #313131;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #919191;
  background-color: #2c2c2c;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #919191;
  border-color: #919191;
}

.list-group-item-success {
  color: #4dd0af;
  background-color: #005e46;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #4dd0af;
  background-color: #00553f;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #4dd0af;
  border-color: #4dd0af;
}

.list-group-item-info {
  color: #5dbecd;
  background-color: #0c515c;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #5dbecd;
  background-color: #0b4953;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #5dbecd;
  border-color: #5dbecd;
}

.list-group-item-warning {
  color: #f7ba59;
  background-color: #7a4e09;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #f7ba59;
  background-color: #6e4608;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #f7ba59;
  border-color: #f7ba59;
}

.list-group-item-danger {
  color: #ee8277;
  background-color: #74261e;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #ee8277;
  background-color: #68221b;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #ee8277;
  border-color: #ee8277;
}

.list-group-item-light {
  color: #bbbbbb;
  background-color: #4f4f4f;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #bbbbbb;
  background-color: #474747;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}

.list-group-item-dark {
  color: #767676;
  background-color: #1e1e1e;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #767676;
  background-color: #1b1b1b;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #767676;
  border-color: #767676;
}

.btn-close {
  color: #fafafa;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fafafa'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 0.5;
}
.btn-close:hover {
  color: #fafafa;
  opacity: 0.75;
}
.btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(55, 90, 127, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  background-color: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(250, 250, 250, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.15);
}

.toast-header {
  color: #9e9e9e;
  background-color: rgba(17, 17, 17, 0.85);
  border-bottom: 1px solid rgba(250, 250, 250, 0.05);
}

.modal-content {
  background-color: #2f2f2f;
  border: 1px solid rgba(250, 250, 250, 0.2);
}

.modal-backdrop {
  background-color: #111;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.85;
}

.modal-header {
  border-bottom: 1px solid #515151;
}

.modal-footer {
  border-top: 1px solid #515151;
}

.tooltip {
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #fafafa;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: #fafafa;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #fafafa;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: #fafafa;
}

.tooltip-inner {
  color: #111;
  background-color: #fafafa;
}

.popover {
  background-color: #111;
  border: 1px solid rgba(250, 250, 250, 0.2);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  border-top-color: rgba(250, 250, 250, 0.25);
}
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-top-color: #111;
}

.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  border-right-color: rgba(250, 250, 250, 0.25);
}
.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-right-color: #111;
}

.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  border-bottom-color: rgba(250, 250, 250, 0.25);
}
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-bottom-color: #111;
}
.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  border-bottom: 1px solid #1f1f1f;
}

.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  border-left-color: rgba(250, 250, 250, 0.25);
}
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-left-color: #111;
}

.popover-header {
  background-color: #1f1f1f;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

.popover-body {
  color: #e1e1e1;
}

.carousel-control-prev,
.carousel-control-next {
  color: #fafafa;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fafafa;
  opacity: 0.9;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fafafa'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fafafa'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators [data-bs-target] {
  background-color: #111;
  opacity: 0.5;
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  color: #111;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #fafafa;
}
.carousel-dark .carousel-caption {
  color: #fafafa;
}

.offcanvas {
  background-color: #2f2f2f;
}

.offcanvas-backdrop {
  background-color: #111;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.85;
}

.offcanvas-start {
  border-right: 1px solid rgba(250, 250, 250, 0.2);
}

.offcanvas-end {
  border-left: 1px solid rgba(250, 250, 250, 0.2);
}

.offcanvas-top {
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

.offcanvas-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.2);
}

.placeholder {
  background-color: currentColor;
  opacity: 0.5;
}

@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #fafafa 55%, rgba(255, 255, 255, 0.8) 75%, #fafafa 95%);
  mask-image: linear-gradient(130deg, #fafafa 55%, rgba(255, 255, 255, 0.8) 75%, #fafafa 95%);
}

.link-primary {
  color: #375a7f;
}
.link-primary:hover, .link-primary:focus {
  color: #2c4866;
}

.link-secondary {
  color: #626262;
}
.link-secondary:hover, .link-secondary:focus {
  color: #4e4e4e;
}

.link-success {
  color: #00bc8c;
}
.link-success:hover, .link-success:focus {
  color: #33c9a3;
}

.link-info {
  color: #17a2b8;
}
.link-info:hover, .link-info:focus {
  color: #128293;
}

.link-warning {
  color: #f39c12;
}
.link-warning:hover, .link-warning:focus {
  color: #f5b041;
}

.link-danger {
  color: #e74c3c;
}
.link-danger:hover, .link-danger:focus {
  color: #b93d30;
}

.link-light {
  color: #9e9e9e;
}
.link-light:hover, .link-light:focus {
  color: #7e7e7e;
}

.link-dark {
  color: #3b3b3b;
}
.link-dark:hover, .link-dark:focus {
  color: #2f2f2f;
}

.vr {
  background-color: currentColor;
  opacity: 0.1;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(17, 17, 17, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(17, 17, 17, 0.175) !important;
}

.border {
  border: 1px solid #515151 !important;
}

.border-top {
  border-top: 1px solid #515151 !important;
}

.border-end {
  border-right: 1px solid #515151 !important;
}

.border-bottom {
  border-bottom: 1px solid #515151 !important;
}

.border-start {
  border-left: 1px solid #515151 !important;
}

.border-primary {
  border-color: #375a7f !important;
}

.border-secondary {
  border-color: #626262 !important;
}

.border-success {
  border-color: #00bc8c !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #f39c12 !important;
}

.border-danger {
  border-color: #e74c3c !important;
}

.border-light {
  border-color: #9e9e9e !important;
}

.border-dark {
  border-color: #3b3b3b !important;
}

.border-white {
  border-color: #fafafa !important;
}

.border-black {
  border-color: #111 !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #9e9e9e !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(250, 250, 250, 0.5) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(17, 17, 17, 0.5) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: #111 !important;
}

body::-moz-selection {
  color: #cfcfcf;
  background: rgba(23, 162, 184, 0.5);
}

body::selection {
  color: #cfcfcf;
  background: rgba(23, 162, 184, 0.5);
}

/*# sourceMappingURL=bootstrap-nightfall.css.map */

:root {
  color-scheme: dark;
  --bs-dark-rgb: #e1e1e1;
  --bs-border-color: rgba(250, 250, 250, 0.125);
  --bs-body-bg: #111;
}

.widget,
.vcard-card {
	background-color: unset;
}

.comment-edit-text {
	border: 1px solid var(--bs-border-color);
}

.generic-content-wrapper {
	border: 1px solid var(--bs-border-color);
}

#profile-jot-wrapper {
	background-color: unset;
	border: 1px solid var(--bs-border-color);
}

.bootstrap-tagsinput {
	background-color: unset;
}

a,
.fakelink {
	color: var(--bs-link-color);
}
.item-category {
	background-color: #293a4f !important;
}
#cboxContent {
	background-color: #273039;
}
#jot-title-wrap,
#jot-summary-wrap,
#jot-pagetitle-wrap,
#jot-category-wrap,
#jot-customjotheaders-wrap {
	border-bottom: 1px solid var(--bs-border-color);
}
#adminpage table tr:hover {
	background-color: #2E3136;
}

