/* GENERAL, INPUTS GLOBAL */
@font-face {
	font-family: 'Brandon Grotesque';
	src: url('../font/BrandonGrotesque-Medium.woff2') format('woff2'),
		url('../font/BrandonGrotesque-Medium.woff') format('woff'),
		url('../font/BrandonGrotesque-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	user-select: none;
	font-family: sans-serif;
}
img {
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
date:focus,
submit:focus {
	outline: none;
}
select {
	background: black;
	color: white;
	outline: 1px solid white;
	height: 23px;
	margin-top: 1px;
}
input:focus,
textarea:focus {
	outline: 1px solid white;
}
select:focus {
	outline: 2px solid white;
}
input[type="date"] {
	height: 24px;
	width: 115px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
	color: rgba(0, 0, 0, 0);
	opacity: 1;
	background-image: url("/img/calendar.png");
	background-repeat: no-repeat;
	background-position: 100% center;
	background-size: 10px;
	cursor: pointer;
}
label {
	cursor: pointer;
}
input[type=checkbox] {
	margin: 2px 4px 0 0;
	height: 12px;
	width: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: 1px solid grey;
	border-radius: 6px;
	outline: none;
	background-color: black;
	cursor: pointer;
}
.hidden-radio {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
}
input[type=checkbox]:checked {
	background-color: white;
}
input[type=radio] {
	margin: 2px 2px 0 8px;
	height: 12px;
	width: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: 1px solid white;
	border-radius: 6px;
	outline: none;
	background-color: black;
	cursor: pointer;
}
input[type=radio]:checked {
	background-color: white;
}

/* SCROLLBAR STYLING  */
::-webkit-scrollbar {
	width: 8px; /* Width of the scrollbar */
	outline: none;
	cursor: pointer;
}
::-webkit-scrollbar-thumb {
	background: #aaa;
}
::-webkit-scrollbar-thumb:hover {
	background: #ccc;
}
::-webkit-scrollbar-thumb:active {
	background: #ddd;
}
::-webkit-scrollbar-track {
	background: #222;
}

.blurred {
	/* -webkit-filter: blur(8px); */
	filter: blur(2px);
}

body {
	padding-top: 20px;
	background-color: #121212;
	font-family: sans-serif;
	color: white;
}
#body-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: fit-content;
	margin: 0;
	padding: 0;
}

.hidden {
	display: none;
	visibility: hidden;
}
.no-select {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	pointer-events: none;
}

/* LOADING FULLSCREEN GIF */
.loading-fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: rgba(0,0,0,0); */
	background: #000;
}
.loading-fullscreen img {
	margin-top: -100px;
	/* width: 128px; */
	width: 256px;
}

.loading-bar-section {
	z-index: 3;
	position: fixed;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	background-color: black;
	width: 200px;
	height: 36px;
	text-align: center;
	border: 1px solid white;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	transition: all 250ms ease-in-out;
	text-shadow: none;
	opacity: 0;
}
.loading-text {
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	width: 100%;
	font-size: 12px;
}
.loading-bar-container {
	position: absolute;
	bottom: 10px;
	width: 180px;
	height: 4px;
	margin: 0 10px;
	outline: 1px solid white;
	border-radius: 2px;
}
.loading-bar {
	background: #ccc;
	height: 100%;
	transition: all 200ms ease-in-out;
	width: 0;
}


/* BACKGROUND */
.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-image: url('https://prettybirdweb.com/api/random-background.php'); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	z-index: -2;
	transition: all 500ms ease-in-out;
}
/* .background p { */
.background-credits {
	font-family: 'Brandon Grotesque';
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: white;
	font-size: 14px;
	transition: all 250ms ease-in-out;
}

/* LOGIN */
.login-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login-box-holder {
	border: 1px solid white;
	height: 130px;
	margin-top: -100px; 
	background: black;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.login-box-holder img {
	width: 14px;
	height: 14px;
	padding: 5px;
}
.login-box {
	width: 260px;
	height: 130px;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: 1px solid white;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.login-box input[type=text],
.login-box input[type=password] {
	width: 200px;
	height: 22px;
	padding: 4px;
	background: black;
	color: white;
	border: 1px solid white;
	margin: 3px 0;
}
.login-box input[type=submit] {
	width: 75px;
	height: 25px;
	background: black;
	color: white;
	border: 1px solid white;
	margin: 8px 0 4px 0;
	cursor: pointer;
}
.login-box input[type=submit]:hover {
	background: #333;
}
.login-box input[type=submit]:focus {
	background: #666;
}
.login-error {
	border: 1px solid red;
	color: red;
	width: fit-content;
	background: black;
	border-radius: 10px;
	padding: 10px 15px;
	margin-top: 15px;
	opacity: 0;
	-webkit-animation: fadeout 2s; /* Safari, Chrome and Opera > 12.1 */
	   -moz-animation: fadeout 2s; /* Firefox < 16 */
		-ms-animation: fadeout 2s; /* Internet Explorer */
		 -o-animation: fadeout 2s; /* Opera < 12.1 */
			animation: fadeout 2s;
}
@keyframes fadeout {
	0%,75% { opacity: 1; };
	100% { opacity: 0; };
}
/* Firefox < 16 */
@-moz-keyframes fadeout {
	0%,75% { opacity: 1; };
	100% { opacity: 0; };
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
	0%,75% { opacity: 1; };
	100% { opacity: 0; };
}



/* MAIN MENU NAV MENU */
.index-nav-holder-holder {
	width: 100%;
	height: 100%;
}
.index-nav-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.index-nav-holder .nav-box {
	/* background: black; */
	background: rgba(0, 0, 0, 0.5);
	outline: 1px solid white;
	border-radius: 10px;
	padding: 35px 45px;
	margin-top: 80vh;
	transition: opacity 250ms ease-in-out;
}
.index-nav-holder .nav-box .list-holder {
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-box hr {
	border: 0.1px solid white;
	border-radius: 5px;
	margin: 10px 0;
}
.nav-box .list-holder .primary {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 15px;
}
.nav-box .list-holder .primary a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: white;
	line-height: 30px;
	font-size: 18px;
	font-weight: 100;
	cursor: pointer;
	margin: 0 15px;
}
.nav-box .list-holder .primary a img {
	height: 20px;
	padding-right: 5px;
}
.nav-box li {
	display: flex;
	align-items: center;
	list-style-type: none;
	line-height: 30px;
	cursor: pointer;
}
.nav-box .list-holder .secondary {
	padding: 15px 15px 0 15px;
}
.nav-box .list-holder .secondary li {
	font-size: 14px;
	font-weight: 100;
}
.nav-box .list-holder .secondary li img {
	height: 16px;
	padding-right: 5px;
}
/* .nav-box .list-holder .admin-link { */
/* 	color: white; */
/* 	border-radius: 10px; */
/* 	margin-top: 25px; */
/* 	padding: 5px 100px; */
/* 	border: 1.5px solid white; */
/* } */
.nav-box .list-holder .admin-link:hover { background: #333; }
.nav-box .list-holder .admin-link:active { background: #666; }
.nav-box * {
	text-decoration: none;
}
.nav-box li img {
}
.nav-box li {
	color: white;
	text-decoration: none;
}
.nav-box li:hover {
	text-shadow: 0 0 10px white;
}
.nav-box li:hover img {
	filter: drop-shadow(0 0 10px rgb(255,217, 0));
}
.nav-box a:hover {
	text-shadow: 0 0 10px white;
}
.nav-box a:hover img {
	filter: drop-shadow(0 0 10px rgb(255,217, 0));
}


/* SEARCH BAR */
.search-bar {
	border: 1px solid white;
	margin-top: 45px;
	padding: 10px;
	display: inline-block;
	position: relative;
	border-radius: 10px;
	margin-left: 10px;
}
.search-holder {
	display: inline-flex;
	align-items: center;
}
.search-holder img {
	height: 22px;
}
.search-holder input[type=text] {
	width: 250px;
	height: 28px;
	font-size: 16px;
	background: black;
	color: white;
	border: 1px solid white;
	padding: 2px 2px 2px 6px;
	background: #111;
	margin: 3px 8px;
}
.search-holder .x-button {
	cursor: pointer;
	position: absolute;
	left: 266px;
	padding: 3px 6px;
	color: grey;
	transition: color 100ms ease-in-out;
}
.search-holder .x-button:hover {
	color: white;
}
.search-bar .category-options {
	height: 0px;
	overflow: hidden;
	transition: height 250ms ease-in-out;
}
.search-bar .category-options p img {
	width: 20px;
	margin-right: 3px;
	opacity: 0.3;
	transition: all 150ms ease-in-out;
}
.search-bar:hover .category-options {
	height: 25px;
}
.search-bar .category-options p {
	margin-top: 5px;
	display: inline-flex;
	align-items: center;
	margin-right: 5px;
	cursor: pointer;
	color: #555;
	opacity: 0;
	transition: all 150ms ease-in-out;
}
.search-bar:hover .category-options p {
	opacity: 1;
}
.search-bar:hover .category-options p.selected img {
	opacity: 1;
}
.search-bar .category-options p:hover {
	text-shadow: 0 0 5px white;
	color: white;
}
.search-bar .category-options p:hover img {
	opacity: 1;
}
.search-bar .category-options .bare-icon img {
	width: 16px;
}

.search-bar .categories-selected {
	margin-right: -10px;
}
.search-bar .categories-selected div {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	background: #222;
	padding: 8px 10px;
	margin: 10px 10px 5px 0;
	border-radius: 10px;
	cursor: pointer;
}
.search-bar .categories-selected div img {
	height: 26px;
	padding: 4px;
	margin: 0;
	margin-right: 4px;
}
.search-bar .categories-selected .loaded-image {
	border-radius: 50%;
	height: 34px;
	padding: 0;
	margin-right: 6px;
}
.search-bar .categories-selected .loaded-company-logo { /* only loaded company logos */
	height: 34px;
	padding: 0;
	margin-right: 6px;
}
.search-bar .categories-selected div a {
}
.search-bar .categories-selected div:hover {
	background: #444;
}
.search-bar .categories-selected div:hover a {
	/* text-decoration: line-through; */
}



/* CARD INTERFACE TOOLBAR */
.toolbar {
	display: inline-block;
	position: relative;
	margin-top: 40px;
	padding: 5px;
	width: auto;
	user-select: none;
}
.toolbar-icons {
	display: inline-block;
	position: relative;
	background: black;
	padding: 5px;
	border: 1px solid white;
	/* border-bottom: none; */
	width: auto;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	/* border-bottom-left-radius: 10px; */
	/* border-bottom-right-radius: 10px; */
}
.toolbar-icons img {
	width: 20px;
	padding: 2px 5px;
	cursor: pointer;
}

.toolbar-expanded {
	padding: 10px;
	background: black;
	outline: 1px solid white;
	margin-left: 1px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.toolbar-expanded img {
	display: inline-block;
	height: 16px;
	margin-right: 3px; 
}

.toolbar .checkbox-section {
	width: 100%;
}
.toolbar input[type=text] {
	width: 250px;
	height: 25px;
	background: black;
	color: white;
	border: 1px solid white;
	padding: 2px 2px 2px 6px;
	background: #111;
	margin: 3px 8px 0 0;
}
.toolbar .status-checkbox-holder {
	margin-top: 5px;
	vertical-align: top;
	display: inline-block;
	width: 120px;
}
.toolbar .company-checkbox-holder {
	vertical-align: top;
	display: inline-block;
	width: 150px;
}
.navbar {
	position: fixed;
	width: 100%;
	width: calc(100% - 12px);
	height: 18px;
	overflow: hidden;
	top: 1px;
	left: 1px;
	outline: 1px solid white;
	padding: 5px;
	color: white;
	z-index: 2;
	background: #111;
	border-bottom-left-radius: 5px;
	box-shadow: 0 2px 5px 2px black;
}

.navbar .page-logo {
	position: fixed;
	top: 0;
	left: 0;
}
.navbar .page-logo img {
	padding: 6px;
	width: 18px;
	height: 18px;
}

.navbar .page-title {
	position: fixed;
	font-weight: 100;
	top: 6px;
	left: 30px;
	width: 250px;
}



.navbar .button-holder {
	position: absolute;
	top: 2px;
	right: 0px;
	height: 24px;
	width: fit-content;
}

.navbar .button-holder div {
	position: relative;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	float: right;
	margin-left: 3px;
}
.navbar .button-holder div img {
	
}

.navbar .menu-button { cursor: pointer; }
.navbar .menu-button img {
	width: 18px;
}

.navbar .unlock-icon { cursor: pointer; }
.navbar .unlock-icon img {
	width: 18px;
}

.navbar .loading-icon {
	margin-right: 5px;
}
.navbar .loading-icon img {
	width: 100%;
	height: auto;
}



.navbar-menu {
	position: fixed;
	right: 0;
	top: 29px;
	z-index: 2;
	border: 1px solid white;
	padding: 5px;
	background: black;
	border-bottom-left-radius: 10px;
}
.navbar-menu-entry {
	padding: 5px 15px 5px 5px;
}
.navbar-menu-entry a {
	transition: all 100ms ease-in-out;
	display: flex;
	align-items: center;
	width: fit-content;
	padding-right: 5px;
}
.navbar-menu-entry:hover a {
	text-shadow: 0 0 5px white;
}
.navbar-menu-entry a {
	cursor: pointer;
}
.navbar-menu-entry img {
	cursor: pointer;
	width: 16px;
	margin-right: 5px;
}

.sort-container {
	padding: 20px 0 0 0;
}
.sort-container-entry {
	color: #eee;
	cursor: pointer;
}
.sort-container-entry:hover {
	text-shadow: 0 0 10px white;

}
.sort-container-entry .selected {
	color: white;
	font-weight: bold;
}


.job-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: .25rem;
	margin-top: 8px;
}

.job-card-category {
	position: relative;
	background: #000;
	margin: 10px;
	padding: 10px 0 10px 10px;
	border: 1px solid #333;
	border-radius: 10px;
	height: fit-content;
	overflow-x: hidden;
}
.compressed {
	/* border-top-right-radius: 0; */
	/* border-bottom-right-radius: 0; */
	max-height: 700px;
	overflow: auto;
	margin-right: 10px;
}
.compressed .job-card-category-jobs {
	/* padding-top: -10px; */
	/* margin-top: 10px; */
	max-height: 590px;
	overflow: auto;
}
.compressed .card {
	margin-right: .5rem;
}

.job-card-category .closed {
	height: fit-content;
	max-height: 500px;
}
.job-card-category-background {
	position: absolute;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	opacity: 0.125;
	top: 0;
	left: 0;
}
.job-card-category h3 {
	padding: 0;
	margin: 0;
	user-select: none;
}
.job-card-category h3 img {
	width: 20px;
	height: 20px;
	margin-right: 4px;
	margin-bottom: -3px;
}
.job-card-category h4 {
	position: absolute;
	top: 8px;
	right: 12px;
	/* cursor: pointer; */
	color: #444;
	font-size: 12px;
	transition: all 100ms ease-in-out;
}
.job-card-category h4:hover {
	color: #777;
	text-shadow: 0 0 10px #666;
}
.job-card-category-icons {
	position: absolute;
	top: 12px;
	right: 8px;
}
.job-card-category-icons img {
	width: 14px;
	margin-left: 7px;
	opacity: 0.5;
	transition: all .1s ease-in-out;
}
.job-card-category-icons img:hover {
	opacity: 1;
}

.job-card-category-jobs {
	width: 100%;
	height: fit-content;
	margin: 0;
	padding: 0;
	/* border: 1px solid red; */
	position: relative;
}



.job-card-min-container {
	margin-top: 16px;
}
.job-card-min-category {
	position: relative;
	display: inline-block;
	background: #000;
	border: 1px solid #333;
	border-radius: 8px;

	margin: 0 0 0 10px;
	padding: 10px;
	height: auto;
	width: auto;
	font-size: 12px;
	opacity: 0.8;
	transition: all .1s ease-in-out;
}
.job-card-min-category:hover {
	opacity: 1;
}


.card {
	position: relative;
	outline: 1px solid white;
	padding: .5rem;
	/* margin: .75rem .5rem; */
	margin: .75rem 1rem .75rem .5rem;
	overflow: hidden;
	border-radius: 5px;
	background: #000;
	background: rgba(0,0,0,0.25);
	transition: all .1s ease-in-out;
	opacity: 0.95;
}
.active-card {
	background: rgba(50,50,50,0.15);
	/* box-shadow: 0 0 5px white; */
	opacity: 1;
}
.collapsed {
	height: 15px;
	padding-top: .25rem;
}
.card .spacer {
	height: 15px;
}
.card .notes-text {
	font-style: italic;
	/* white-space: pre; */
}
.card a div {
	position: relative;
	width: fit-content;
}
.card .id-line {
	color: #999;
	margin: -3px 0 2px -2px;
	font-size: 10px;
}

.card > .body > .last-event-notes {
	font-style: italic;
	margin-bottom: 5px;
}


/* tooltip */
.tooltip-holder {
	position: fixed;
	/* display: none; */
	display: flex;
	opacity: 0;

	margin: 5px;
	padding: 5px;

	z-index: 3;

	top: 0;
	bottom: 0;

	width: fit-content;
	height: fit-content;

	transition: opacity 150ms ease-in-out;
}
.tooltip-content {
	background: black;
	outline: 1px solid white;
	border-radius: 0 8px 8px 8px;

	/* margin: 5px; */
	padding: 5px;

	width: fit-content;
	height: fit-content;
}
.tooltip-content div {
	display: flex;
	align-items: center;
}
.tooltip-title {
	text-decoration: underline;
}
.tooltip-content a {
	font-size: 14px;
	padding: 2px;
	display: block;
	/* cursor: pointer; */
}
.tooltip-content div img {
	height: 14px;
	margin-right: 2px;
}
.tooltip-content div {
	opacity: 0.8;
}
.tooltip-content .clickable {
	cursor: pointer;
}
.tooltip-content .clickable:hover {
	text-shadow: 0 0 10px white;
	opacity: 1;
}


.card a {
	/* display: inline-block; */
}

.card .clickable {
	cursor: pointer;
}
.card .clickable a {
	transition: all 100ms ease-in-out;
}
.card .clickable:hover a {
	text-shadow: 0 0 10px white;
}
.card .clickable:hover.empty:hover img {
	opacity: 0.6;
}
.card .empty {
	font-style: italic;
	color: #777;
}
.card .empty img {
	opacity: 0.5;
}

.card > .header {
	margin-bottom: .25rem;
}
.card > .header img {
	width: 14px;
	height: 14px;
}
.card > .header .icon-holder {
	display: inline-flex;
	padding: 0 5px;
}
.card > .header .icon-holder img {
	margin-top: -2px;
	width: 22px;
	height: 22px;
}
.card > .header > .truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 25px;
}

.card > .header .clickable {
	cursor: pointer;
	transition: all 100ms ease-in-out;
}
.card > .header .clickable:hover {
	text-shadow: 0 0 10px white;
}
.card > .header .clickable img:hover {
	/* opacity: 0.2; */
}

.card > .body {
	padding-top: .4rem;
	font-size: .8rem;
}
.card .body-header {
	width: fit-content;
	font-size: 11px;
	text-decoration: underline;
	display: flex;
	align-items: center;
	margin-bottom: 4px;
}
.card .body-line {
	width: fit-content;
	display: flex;
	align-items: center;
}
.card .body-line { 
	transition: all 100ms ease-in-out;
}
/* body-lines containing sub-lines */
.card .body-line div { 
	display: flex;
	align-items: center;
}
.card .body-line img {
	height: 14px;
	width: 14px;
	margin: 2px 3px 2px 3px;
	padding-right: 3px;
}
.card .body-line .loaded-image {
	height: 20px;
	width: 20px;
	margin: 0;
	border-radius: 50%;
}
.card .line-notes {
	margin: 2px 0 6px 4px;
	/* margin-left: 4px; */
	/* margin-bottom: 6px; */
}
.card .line-notes a {
	font-style: italic;
	font-size: 11px;
	color: #ccc;
}
.card .body-line .location-icon {
	padding-left: 5px;
	padding-right: 0;
}
.card > .body textarea {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 80px;
	max-height: 400px;
	padding: 6px;
	background: #000;
	color: white;
	margin-bottom: 10px;
}

.click-text {
	color: white;
	cursor: pointer;
	transition: all 80ms ease-in-out;
}
.click-text:hover {
	font-weight: bold;
	text-shadow: 0 0 5px white;
}


.card-icon {
	height: 21px;
	float: left;
	margin-right: 5px;
	margin-left: -2px;
	margin-top: -1px;
	/* cursor: pointer; */
}
.collapse-button {
	float: right;
	text-align: right;
	cursor: pointer;
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease-in;
}
.collapse-button-rotated {
	transform: rotate(180deg);
	transition: transform 0.25s ease-in;
}
.collapse-button-rotated-90 {
	transform: rotate(-90deg);
	transition: transform 0.25s ease-in;
}
.status-button {
	float: right;
	text-align: right;
	/* cursor: pointer; */
	width: 18px;
	height: 18px;
	margin-right: 8px;
}

.save-button {
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 2px;
	width: 98%;
	background: black;
	outline: 1px solid grey;
}
.save-button:hover {
	background: #222;
}

.delete-button {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 6px;
	right: 4px;
	cursor: pointer;
	float: right;
	opacity: 0.5;
}
.delete-button img {
	width: 16px;
	height: 16px;
}
.delete-button a {
	padding-right: 2px;
	opacity: 0;
	transition: all 80ms ease-in-out;
}
.delete-button:hover {
	opacity: 1;
}
.delete-button:hover a {
	text-shadow: 0 0 5px white;
	opacity: 1;
}

.card-footer {
	margin-top: 20px;
}

.id-footer {
	display: flex;
	justify-content: center;
	position: absolute;
	left:0;
	right:0;
	bottom: 6px;
  	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.2;
	transition: all 80ms ease-in-out;
	cursor: pointer;
}
.id-footer:hover {
	opacity: 1;
}

.history-button {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 6px;
	left: 4px;
	cursor: pointer;
	float: right;
	opacity: 0.7;
}
.history-button img {
	width: 16px;
	height: 16px;
}
.history-button a {
	padding-left: 4px;
	opacity: 0;
	transition: all 80ms ease-in-out;
}
.history-button:hover {
	opacity: 1;
}
.history-button:hover a {
	text-shadow: 0 0 5px white;
	opacity: 1;
}



/* JOB HISTORY  */
.job-history-holder {
	margin-top: 40px;
}
.job-history-holder .job-history-date-holder {
	padding: 0 10px;
	border: 4px solid;
	border-image-slice: 1;
	border-width: 0 0 0 4px;
	margin: 30px 0;
}
.job-history-holder .job-history-date {
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 0;
	margin-left: 4px;
}
.job-history-holder .job-history-event {
	display: block;
	overflow: auto;
	margin: 5px 0;
	width: fit-content;
}
.job-history-holder .job-history-event-note {
	font-size: 12px;
	font-style: italic;
}
.job-history-holder .job-history-event img {
	width: 13px;
	height: 13px;
	margin-right: 4px;
}
.job-history-holder .job-history-event .loaded-image {
	width: auto;
	height: 18px;
	margin: 0 4px -2px 0;
	border-radius: 50%;
}

.event-details-blurb {
	display: block;
	font-size: 10px;
	font-style: italic;
	padding-left: 2px;
	color: #666;
}
.event-edit-holder {
	cursor: pointer;
	display: inline;
}
.event-delete-button {
	color: red;
	margin: 2px 4px 0 0;
	opacity: 0.5;
	transition: all 100ms ease-in-out;
}
.event-delete-button:hover {
	opacity: 1;
}
.event-edit-button {
	color: green;
	margin: 2px;
	margin: 2px 4px 0 0;
	opacity: 0.5;
	transition: all 100ms ease-in-out;
}
.event-edit-button:hover {
	opacity: 1;
}



.tippy-arrow {
	color: white !important;
	background: white !important;
}
.tippy-box {
	background-color: white !important;
	color: white !important;
	padding: 3px !important;
	position: relative !important;
	z-index: 1000 !important;
	pointer-events: auto !important;
	box-shadow: 0 10px 60px 10px black;
}
.tippy-box div {
	width: fit-content;
	background: black;
	padding: 5px;
	border-radius: 5px;
}

.tippy-box .tippy-calendar-delete-button {
	opacity: 0;
	position: absolute;

	color: white;
	background: red;
	border-radius: 50%;
	border: 2px solid white;

	top: -12px;
	left: -10px;
	width: 24px;
	height: 24px;
	font-size: 16px;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	transition: opacity 100ms ease-in-out;
}
.tippy-box .tippy-calendar-delete-button:hover {
	opacity: 1;
}

.tippy-box .title-line {
	display: flex;
	justify-content: center;
	margin: 5px 0;
}
.tippy-box .title-line img {
	margin: 0 8px 0 -4px;
	padding: 0;
	width: 18px;
	height: 18px;
}
.tippy-box div input {
	border: 1px solid white;
	margin: -2px 0 0 0;
}
.tippy-box div textarea {
	padding: 4px;
	border: 1px solid white;
	max-width: 100%;
	min-width: 100%;
	margin: 4px 0;
}
