@CHARSET "UTF-8";

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial, sans-serif;
	font-size: 0.75em;
	color: rgb(80, 80, 80);
	float: left;
	width: 100%;
	display: flex;
	flex-direction: column;
}

a {
	color: black;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px dotted black;
}

.hover a.toTr,a:hover {
	background: yellow;
}

#header {
	background: url('/assets/pics/candle-welcome.svg') right bottom no-repeat yellow;
    background-size: auto 100%;
	height: 110px;
	position: relative;
}

#header h1 {
	padding: 20px 0 0 20px;
}

#header a {
	border: 0;
}

#header h1 span {
	display: none;
}

#header ul {
	position: absolute;
	right: 120px;
	top: 12px;
}

#header ul li {
	float: left;
	margin-left: 10px;
}

#header ul li a,
#header ul li button {
	border: 0;
	display: block;
	padding: 4px 8px;
	background: black;
	color: white;
}

#header ul li a:hover,
#header ul li button:hover {
	border: 0;
	text-decoration: underline;
}

#menu {
	/*border-top: 6px solid white;*/
	margin-bottom: 15px;
	background: #d2d2d2;
	font-size: 100%;
}

#menu li {
	display: inline-block;
}

#menu li a {

	display: inline-block;
	border: 0;
	font-weight: bold;
	padding: 0 12px;
	line-height: 2.3em;
}

#menu li a:hover {
	background: black;
	color: white;
}

/* Basic layout */
#content.layoutColumn {
	width: 70%;
	float: left;
}

#content.layoutWide {
	width: 100%;
}

#content .spacer {
	padding-left: 10px;
}

#content > .spacer {
	padding-right: 10px;
}

#notes {
	float: right;
	width: 30%;
}

#notes .spacer {
	margin-left: 22px;
	padding-left: 22px;
	padding-right: 22px;
	border-left: 1px solid silver;
	padding-bottom: 20px;
}

#content .leftColumn {
	float: left;
	width: 49%;
}

#content .rightColumn {
	float: right;
	width: 49%;
}

h2 {
	font-family: "Arial Narrow", sans-serif;
	color: black;
	font-size: 200%;
	font-weight: normal;
}

#content p {
	margin: 0.7em 0;
}

#content h3 {
	font-size: 140%;
	font-family: "Arial Narrow", sans-serif;
	color: gray;
	font-weight: normal;
	margin-top: 30px;
	border-bottom: 1px solid silver;
	padding:0 0 1px 4px;
}

table.list {
	border-bottom: 2px solid rgb(220, 220, 220);
	width: 100%;
	margin-bottom: 20px;
}

table.report {
	width: 100%;

}
table.report td {
	border: 1px solid silver;
	padding: 2px;
	text-align: center;
	width: 1.6em;
}
table.report th {
	border: 1px solid silver;
	padding: 2px;
	background: rgb(240, 240, 240);
}

table.list th {
	padding: 5px;
	color: black;
	font-weight: bold;
	font-family: "Arial", sans-serif;
	background: rgb(220, 220, 220);
	border-bottom: 2px solid white;
	border-right: 2px solid white;
}

table.list td {
	padding: 6px 5px;
	border-top: 1px solid rgb(220, 220, 220);
}

table.details {
	width: 100%;
	background: rgb(240, 240, 240);
}

table.details th {
	color: black;
	padding: 6px 8px 6px 8px;
	width: 10em;
	font-weight: bold;
}

table.details td {
	padding: 6px 8px 6px 0;
}

form {
	padding: 1px 15px 15px;
	background: rgb(230, 230, 230);
	color: black;
	margin-bottom: 1em;
	border: 2px solid silver;
}

form.filter {
	border: 0;
	background: #a9dfd7;
	padding: 5px 9px;
}

#content form h3 {
	font-family: "Arial Narrow", sans-serif;
	margin: 7px 0 6px !important;
	font-size: 140%;
	color: black !important;
	border: 0 !important;
}
#content form h2 {
	margin-top: 0.5em;
}
form table.layouter tr th {
	font-weight: normal;
	width: 12em;
}

form table.layouter tr th,form table.layouter tr td {
	border-top: 1px dotted rgb(150, 150, 150);
}

form table.layouter {
	border-bottom: 1px dotted rgb(150, 150, 150);
}

form table.filter {
	border: 0;
}

form table.filter tr th,form table.filter tr td {
	border: 0;
}

form table.layouter tr.notReq th {
	color: gray;
}

form .sendPanel {
	border-top: 0;
	margin-top: 1em;
	margin-bottom: 1em;
}

form p.error {
	color: red;
}

form p.note {
	color: gray;
	font-size: 90%;
}

#bubble {
	display: none;
	padding: 0;
	margin: 0;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}

#bubble.show {
	animation: fadeInFromNone 1.5s ease-out;
	opacity: 1;
	display: block;
}
#bubble.hide {
	animation: fadeOutFromNone 1s ease-out;
	display: block;
}

#bubble p {
	background: black;
	padding: 20px;
	color: white;
}

#footer {
	margin-top: auto;
	border-top: 1px solid silver;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

#footer p {
	color: black;
	font-size: 90%;
}

/* Items statuses */
.closedItem {
	background: rgb(220, 220, 220) !important;
}

.myItem td {
	font-weight: bold;
	color: black;
}

/* Page-specific */
form table.workshopEdit tr th {
	width: auto;
	text-align: left;
	border-top: 0;
	padding-left: 5px;
}

table.workshopsList td {
	vertical-align: middle;
}

/* Info boxes */
p.info,
div.info {
	border: 1px solid silver;
	font-style: italic;
	padding: 1em;
}

.loginForm {
	background: yellow;
	border: 0;
	margin: 15px auto 0;
	width: 27em;
	padding: 15px;
}

.loginForm table td,.loginForm table th {
	padding: 5px 10px 0 0;
	vertical-align: middle;
    white-space: nowrap;
}

.loginForm table th {
	font-weight: bold;
}

.loginForm .button {
	margin-top: 15px;
}

.loginForm .button.alt {
    margin-top: 0;
}


.loginForm input.short {
    width: 150px;
}

.new {
	background: yellow;
	padding: 2px 5px;
	font-weight: bold;
	font-family: "Arial Narrow", sans-serif;
	color: black;
}

#dashboard h3 {
	font-size: 100%;
	font-family: "Arial Narrow", sans-serif;
	color: gray;
	font-weight: normal;
	margin-top: 30px;
	border-bottom: 1px solid silver;
	padding:0 0 1px 4px;
	}

	#dashboard  .newsBox {
		color: black;
	}
	#dashboard .critical {
		border: 1px solid red;
		margin-bottom: 2em;
		color: red;
		padding-left: 1em;
		font-weight: bold;
	}
		#dashboard .newsBox h4 {
			font-family: "Arial Narrow", sans-serif;
			color: black;
			font-size: 160%;
			text-transform: uppercase;
		}
		#dashboard  .newsBox h4 span {
			background: yellow;
		}
		#dashboard .newsBox p {
			line-height: 160%;
		}
		#dashboard .newsBox p.footer {
			text-align: right;
			color: gray;
			font-size: 90%;
			margin-top: -3px;
		}


		#dashboard .even td, #dashboard .even th {
			background: #f0f0f0;
		}

	.paging {
		padding:0 !important;
		margin:10px 0 0 !important;
		height:3em;
	}

	.paging span  {
		display:block;
		float:left;
		padding:0.3em;
		line-height:1.6em;
		margin:0 0 0 5px;
	}
	.paging strong, .paging a, .paging a.active {
		display:block;
		float:left;
		padding:4px 7px;
		text-align:center;
		border-top:1px solid #e7da6b;
		border-left:1px solid #e7da6b;
		border-right:1px solid #c6b632;
		border-bottom:1px solid #c6b632;
		margin:0 0 0 5px;
	}
	.paging strong, .paging a.active {
		border-top: 1px solid #9d9d9d;
		border-left: 1px solid #7b7a7a;
		border-right: 1px solid #262626;
		border-bottom: 1px solid #000;
		color: #000;
	}
	.paging em {
		float:right;
	}
	.paging a {
		color:gray;
		text-decoration:none;
	}
	.paging a:hover {
		background:#e6e6e6;
		text-decoration:none;
	}
	.paging .prev, .paging .next {
		border:none;
		color: black;
	}
	.paging .prev:hover, .paging .next:hover {
		border:none;
		text-decoration:underline;
		background:none;
	}

form h2 {
	margin-top: 1em;
}


.right {
    float: right;
}

.hidden {
    display: none;
}

.alert {
    color: red;
    font-weight: bold;
}

.alert-box {
    color: red;
    font-weight: bold;
    border: solid #f00 1px;
    background: rgb(255,204,204);
    padding: 10px;
}

.alert-row {
    background: rgb(255,204,204) !important;
}

/* Dropbox elements */
.drop_holder {
        font: 12px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
        margin: 10px;
    }

    .drop_breadcrumbs {
        margin: 0 0 20px 0;
        padding: 5px;
    }

        .drop_breadcrumbs a {
            border: none;
        }
            .drop_breadcrumbs a:hover {
                background: none;
            }

    .drop_holder img {
        display: inline-block;
        vertical-align: middle;
        margin: 0 10px 0 0;
        width: 24px;
        height: 24px;
    }

    .drop_folders {
        border-top: solid #E5E5E5 1px;

    }

    .drop_folders > a,
	.drop_holder .item {
        margin: 0;
        padding: 5px;
        display: block;
        clear: both;
        color: #3D464D;
        border-bottom: solid #E5E5E5 1px;
        text-decoration: none;
        font-weight: normal;
    }

	.drop_folders a:hover {
		text-decoration: none;
	}

.drop_holder .item {
	display: flex;
	align-items: center;
}

.drop_holder .item .item_actions {
	margin-left: 16px;
	display: flex;
	gap: 8px;
	align-items: center;
}

.drop_holder .item .item_actions a,
.drop_holder .item .item_actions button {
	border: none;
	background: transparent;
	cursor: pointer;
	color: #0437d0;
	padding: 0;
}

.child-max-200 > * {
    max-width: 200px;
}

 .photos_list .item {
    box-sizing: border-box;
    width: 100px;
    height: 100px;
    display: inline-block;
    margin: 3px;
    vertical-align: middle;
    border: solid #fff 3px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.photos_list .item a {
    border: none;
    overflow: hidden;
}
.photos_list .item img {
    min-width: 100%;
    width: auto;
    height: 100%;
    display: inline-block;

}

.photos_list .item .name {
    font-size: 9px;
    overflow: hidden;
    max-width: 100%;
}

.photos_list .item .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: bold;
    color: #fff;
	text-shadow: 1px 1px 4px #000;
	background: transparent;
}

.photos_list .item .remove:hover {
	color: #f00;
	text-decoration: none;
	background: none;
}

.photos_list .item.file {
    background: #fff;
}

.photos_list .item.file img {
	height: auto;
	min-width: 1px;
	margin: 11px 0 0 0;
}

.button.large {
    display: inline-block;
    background: yellow;
    font-size: 24px;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
    margin: 10px;
}

.tablesort a {
	border: none;
}

@keyframes fadeInFromNone {
	0% {
		visibility: hidden;
		opacity: 0;
	}

	1% {
		visibility: visible;
		opacity: 0;
	}

	100% {
		visibility: visible;
		opacity: 1;
	}
}

.js-toggle-elm {
	background: transparent;
	border: 0;
	color: black;
	font-weight: bold;
	padding: 0 1px;
	font-size: 12px;
	cursor: pointer;
}

.hoverable tr:hover {
	background-color: #f5f5f5;
}

.notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 10px 20px;
	color: white;
	font-weight: bold;
	z-index: 1000;
	opacity: 0.9;
}

.notification.success {
	background-color: #4CAF50;
}

.notification.error {
	background-color: #f44336;
}

#avModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	justify-content: center;
	align-items: center;
}

#avModal .modal-content {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	position: relative;
}

#avModal .close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	font-weight: bold;
	color: #aaa;
	cursor: pointer;
}

.badges {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.badge {
	padding: 1px 4px;
	font-size: 10px;
	font-weight: bold;
	border-radius: 2px;
}

.badge.warning {
	background-color: #fbef93;
	color: #856404;
}

@keyframes fadeOutFromNone {
	0% {
		visibility: visible;
		opacity: 1;
	}

	99% {
		visibility: visible;
		opacity: 0;
	}

	100% {
		visibility: hidden;
		opacity: 0;
	}
}
