@import url(fontello.min.css);
@import url(dark.css);
@import url(responsive.css);
@import url(table.css);
@import url(tab.css);
@import url(form.css);
@import url(dialog.css);
@import url(chart.css);

@font-face {
	font-family: "Gotham Light";
	src: url("../fonts/Gotham-Light.woff2") format("opentype");
}

@font-face {
	font-family: "Gotham Medium";
	src: url("../fonts/Gotham-Medium.woff2") format("opentype");
}

@font-face {
	font-family: "Gotham Bold";
	src: url("../fonts/Gotham-Bold.woff2") format("opentype");
}

@font-face {
	font-family: "Gotham Black";
	src: url("../fonts/Gotham-Black.woff2") format("opentype");
}

:root {
	--button-text-primary: #ffffff;
	--button-text-primary-hover: #434ce8;
	--button-border-primary: #434ce8;
	--button-border-primary-hover: #5252da;
	--button-background-primary: #434ce8;
	--button-background-primary-hover: #ffffff;

	--button-background-white: #ffffff;
	--button-background-white-hover: #434ce8;
	--button-text-white: #434ce8;
	--button-text-white-hover: #ffffff;

	--text-primary: #282a32;
	--text-secondary: #686b87;
	--text-action: #404089;

	--link-primary: #434ce8;
	--link-primary-hover: #5252da;


	--border-primary: #eff1f6;
	--border-primary-hover: #d9dce6;
	--background-primary: #ffffff;
	--background-secondary: #fdfcff;
	--background-tertiary: #ecf3fe;
	--background-quaternary: #e9ecf4;

	--scroll-thumb: #dbdbdb;
	--scroll-hover: #b2b0b0;
	--success: #00c48c;
	--warning: #ff9800;
	--danger: #f44336;
	--info: #2196f3;
	--pure-black: #000000;
	--white: #ffffff;
	--shadow-default: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.05);
	--gray: #dbdbdb;
	--gray2: #f3f3f3;
	--input-color: #ffffff;
	--input-span-primary: #ffffff;
	--asc: #d9edf7;
	--asc-text: #3a87ad;
	--checkmark: #434ce8;
	--breadcrumbs: #f9f9f9;
}

.danger {
	color: var(--danger);
}

.warning {
	color: var(--warning);
}

.success {
	color: var(--success);
}

* {
	box-sizing: border-box;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.cEdit, .customFields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 10px 10px;
    position: relative;
    background: var(--background-quaternary);
    order: 3;
    border-top: 1px solid var(--button-background-primary);
}

.cEdit:empty {
    display: none;
}
.customFields:before {
    content: 'Custom Fields';
    margin-top: -5px;
}
.customFields:empty{
	display: none;
	order: 2;
}
.cEdit:before {
    content: 'Company';
    margin-top: -5px;
}

eezee-index {
	height: calc(100% - 210px);
}

span.badge {
	background: var(--asc);
	padding: 5px;
	display: inline-flex;
	word-break: break-word;
	color: var(--button-background-white-hover);
	cursor: pointer;
}

span.badge a {
    max-height: 20px;
}

.match-fields table tbody tr td {
	border-bottom: 1px solid var(--border-primary);
}

*::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

*::-webkit-scrollbar-thumb {
	background-color: var(--scroll-thumb);
	border-radius: 99em;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: var(--scroll-hover);
}

ul {
	padding: 0;
	margin: 0;
}

.list.col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 12px;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--link-primary);
	cursor: pointer;
}

nav .button {
	margin: 0;
	padding: 10px;
}

nav .button i {
	margin-right: 0;
}

.button.hamburger-menu {
	display: none;
}

.align-left {
	text-align: left;
}

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

.align-right {
	text-align: right;
}

.grid-50 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.full-width {
	display: block;
	text-align: center;
}

.bold {
	font-family: 'Gotham Bold', sans-serif;
}

.medium {
	font-family: 'Gotham Medium', sans-serif;
}

.light {
	font-family: 'Gotham Light', sans-serif;
	font-size: 13px;
}

body {
	line-height: 1.5;
	font-family: "Gotham Medium", sans-serif;
	background-color: var(--background-secondary);
	color: var(--text-primary);
	padding: 0;
	margin: 0;
	min-height: 100vh;
}

img {
	display: block;
	max-width: 100%;
}

:focus {
	outline: 0;
}

.header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-primary);
	background-color: var(--background-primary);
	flex-direction: column;
}

.header-content {
	display: flex;
	align-items: center;
	width: 90%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.header-content+.header-content {
	margin-top: 2px;
	border-top: 1px solid var(--border-primary);
	z-index: 8;
}

.header-content>a {
	display: none;
}

.header-logo {
	margin-right: 2.5rem;
}

.header-logo a {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.header-logo a img {
	height: 32px;
}

.header-logo a div {
	flex-shrink: 0;
	position: relative;
}

.header-logo a div:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: auto;
	right: 0;
	bottom: 0;
	overflow: hidden;
	height: 50%;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

nav {
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: space-between;
	height: 55px;
}

nav * {
	font-family: 'Gotham Medium';
}

nav .actions {
	gap: 2px;
	display: flex;
}

nav.sub-menu {
	width: 100%;
	background: var(--background-primary);
	height: 40px;
	display: none;
}

nav.sub-menu .links {
	display: none;
}

nav .links {
	align-items: center;
	height: 100%;
	display: flex;
}

nav .links a .sub-menu .links {
	width: 90%;
	margin: 0 auto;
	max-width: 1280px;
}

nav .links a {
	text-decoration: none;
	color: var(--text-action);
	font-weight: 500;
	transition: 0.15s ease;
	height: 100%;
	display: flex;
	align-items: center;
}

nav .links a .sub-menu .links a {
	font-size: 0.9rem;
	pointer-events: all;
}

nav .links a+* {
	margin-left: 1.5rem;
}

a:hover,
a:focus {
	color: var(--link-primary-hover);
}

.nav .actions {
	display: flex;
	align-items: center;
}

.avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}

.main {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: fit-content;
}

.main:has(eezee-index) {
	min-height: calc(100% - 200px);
}

.main-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.main-header h1 {
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.25;
}

.search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 340px;
}


.horizontal-tabs {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	overflow-x: auto;
}

.horizontal-tabs a {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	height: 48px;
	padding: 0 0.25rem;
	font-weight: 500;
	color: inherit;
	border-bottom: 3px solid transparent;
	text-decoration: none;
	transition: 0.15s ease;
}

.horizontal-tabs a:hover,
.horizontal-tabs a:focus,
.horizontal-tabs a.active {
	color: var(--accent-primary);
	border-bottom-color: var(--accent-primary);
}

.horizontal-tabs a+* {
	margin-left: 1rem;
}

.content-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
}

.content-header-intro h2 {
	font-size: 1.25rem;
	font-weight: 600;
}

.content-header-intro p {
	color: var(--text-secondary);
	margin-top: 0.25rem;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.content {
	margin-top: 1rem;
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	gap: 20px;
}

.content-panel {
	display: none;
	max-width: 280px;
	width: 25%;
	padding: 2rem 1rem 2rem 0;
	margin-right: 3rem;
}

.vertical-tabs {
	display: flex;
	flex-direction: column;
}

.vertical-tabs a {
	display: flex;
	align-items: center;
	padding: 0.75em 1em;
	background-color: transparent;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	color: var(--text-action);
	transition: 0.15s ease;
}

.vertical-tabs a:hover,
.vertical-tabs a:focus,
.vertical-tabs a.active {
	background-color: var(--background-tertiary);
	color: var(--accent-primary);
}

.vertical-tabs a+* {
	margin-top: 0.25rem;
}

.content-main {
	padding-bottom: 6rem;
	flex-grow: 1;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	row-gap: 1.5rem;
}

.card-grid.col-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}

.card {
	background-color: var(--input-color);
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 5px 15px 0 rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.card-header div {
	display: flex;
	align-items: center;
}

.card-header div span {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.17em;
}

.card-header div span img {
	max-height: 100%;
}

.card-header div h3 {
	font-weight: 500;
	margin: 0;
}

.toggle span {
	display: block;
	width: 40px;
	height: 24px;
	border-radius: 99em;
	background-color: var(--background-quaternary);
	box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.05);
	position: relative;
	transition: 0.15s ease;
}

.toggle span:before {
	content: "";
	display: block;
	position: absolute;
	left: 3px;
	top: 3px;
	height: 18px;
	width: 18px;
	background-color: var(--background-primary);
	border-radius: 50%;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
	transition: 0.15s ease;
}

.toggle input {
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.toggle input:checked+span {
	background-color: var(--accent-primary);
}

.toggle input:checked+span:before {
	transform: translateX(calc(100% - 2px));
}

.toggle input:focus+span {
	box-shadow: 0 0 0 4px var(--background-tertiary);
}

.card-body {
	padding: 0rem 1.25rem 1rem 1.25rem;
	font-size: 0.875rem;
}

.card-body p {
	padding: 0;
	margin: 0;
}

.card-body p span {
	font-size: 0.7rem;
	padding: 5px;
	display: block;
}

.card-footer {
	margin-top: auto;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-top: 1px solid var(--border-primary);
}

.card-footer a {
	color: var(--text-action);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	padding: 0.5em;
}

eezee-dropdown {
	display: none;
	position: absolute;
	top: 53px;
	width: 200px;
	background: var(--input-color);
	padding: 15px;
	border: 1px solid var(--border-primary);
	right: 0;
	z-index: 999;
	box-shadow: var(--shadow-default);
	cursor: default;
	font-size: 0.9rem;
}

eezee-dropdown a {
	color: var(--text-primary);
}

.d-none {
	display: none;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.d-grid {
	display: grid;
}

a.button.dropdown-container {
	position: relative;
}

.dropdown-field a {
	display: block;
	padding: 8px;
}

.dropdown-field hr {
	margin: 4px;
	border-color: var(--text-primary);
	border-top: 1px;
}

eezee-app {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

eezee-login .content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 400px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	margin-left: auto;
	margin-right: auto;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	width: 100%;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

nav .links a.active {
	box-shadow: 0px 2px 0px 0px;
}

.loader::before {
	content: '\e85f';
	font-family: fontello;
	font-style: normal;
	font-weight: 400;
	speak: never;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	animation: rotation 1s infinite linear;
}

/* Profil Page Style */



.profile {
	flex: 2;
}

.sidebar {
	flex: 1;
	-webkit-flex: 1;
}

.widget {
	background: var(--background-primary);
	box-shadow: var(--shadow-default);
	border-radius: 4px;
	margin: 0 0 20px 0;
}

.widget:last-child {
	margin: 0;
}

.widget .widget-title {
	border-bottom: 1px solid var(--border-primary);
	display: flex;
}

.widget .widget-title h3 {
	padding: 15px 20px;
	margin: 0;
	font-weight: 500;
}

.widget .widget-title span {
	padding: 0px 20px 15px 20px;
	display: block;
	margin-top: -16px;
	font-size: 13px;
	color: var(--text-secondary);
}

.widget-title button {
	/* height: 40px; */
	align-self: center;
	margin-right: 20px;
}

.widget .widget-content:not(.profile .widget .widget-content) {
	padding: 10px 20px;
}

.widget .widget-content .content-box:first-child {
	/* border-right: 1px solid var(--border-primary); */
}

.widget .widget-content .content-box {
	padding: 0 20px;
}

.content-box.horizontal {
	display: flex;
	gap: 10px;
}

.content-box.horizontal .content-box-title {
	display: flex;
	align-items: center;
}

.widget .widget-content .content-box .content-box-title {
	border-bottom: 1px solid var(--border-primary);
}

.widget .widget-content .content-box .content-box-title h3 {
	margin: 5px 0;
}

.widget .widget-content .content-box .content-inner {
	padding: 20px 0;
	font-size: 14px;
}

.widget .widget-content .content-box .content-inner>ul>li {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 5px 0;
	border-bottom: 1px solid var(--border-primary);
	padding: 6px 0;
}

.widget .widget-content .content-box .content-inner>ul>li:last-child {
	/* border-bottom: none; */
}

.widget .widget-content .content-box .content-inner ul li span {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	width: 30%;
	min-width: 110px;
	max-height: 230px;
	overflow: auto;
}

.widget .widget-content .content-box .content-inner ul li span:last-child {
	width: 100%;
}

.widget .widget-content p {
	font-family: "Gotham Light", sans-serif;
	color: var(--text-primary);
}

strong,
b {
	color: var(--pure-black);
	font-family: 'Gotham Medium';
}

.widget .radioBox {
	padding: 20px 0px 0 0px;
}

.widget .radioBox .radioBox {
	display: flex;
	flex-direction: column;
}

.widget .radioBox .radioBox .form-group {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 0;
}

.widget .radioBox .radioBox .form-group textarea {
	margin-top: 15px;
	width: 100%;
	border-color: var(--border-primary);
}

.widget .radioBox .radioBox .radioGroup {
	position: relative;
}

.widget .activities {
	background: var(--background-secondary);
	max-height: 700px;
	overflow-y: scroll;
	padding: 0;
}

.widget .activity {
	padding: 10px 10px 10px 10px;
	display: flex;
	flex-direction: column;
	font-family: "Gotham Light";
}

.widget .activity span.text {
	font-size: 14px;
}

.widget .activity span.text a {
	word-break: break-all;
	margin-left: 5px;
	overflow: hidden;
	font-family: 'Gotham Medium';
}

.widget .activity span.daten {
	font-size: 14px;
}

ul.tags,
ul.lists,
ul.horizontal {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

ul.horizontal li {
	padding: 6px !important;
}

ul.tags a {
	background: var(--accent-primary);
	color: var(--white);
	font-family: 'Gotham Medium';
}


ul.tags>li,
ul.lists>li {
	border: 0 !important;
	margin: 0 !important;
	background: var(--background-quaternary) !important;
	padding: 4px 4px 4px 4px !important;
	border-radius: 4px;
	gap: 4px;
}

ul.tags>li button,
ul.lists>li button ul.tags>li button i,
ul.lists>li button i {
	font-size: 0.8em;
}

.tooltip {
	position: fixed;
	background: var(--background-primary);
	padding: 6px;
	border-radius: 4px;
	border: 1px solid var(--border-primary);
	min-width: 100px;
	max-width: 250px;
	text-align: center;
	font-size: .8rem;
	letter-spacing: -0.7px;
}

.tooltip::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	margin-left: -8px;
	border-width: 7px;
	border-style: solid;
	border-color: var(--border-primary) transparent transparent transparent;
}

eezee-dialog.match-fields .contents {
	max-width: 1024px !important;
}

.match-fields table {
	border-spacing: 0;
}

.match-fields table thead tr {
	background: var(--background-tertiary);
	font-family: 'Gotham Bold';
}

.match-fields table tbody {
	font-size: 0.9rem;
}

.match-fields table tbody td {
	padding: 6px;
}

.match-fields table tbody tr td:nth-child(1) {
	min-width: 200px;
	max-width: 200px;
}

.match-fields table tbody tr td:nth-child(2) {
	min-width: 200px;
}

.match-fields table tbody tr td:nth-child(3) {
	width: 420px;
	/* font-family: 'Gotham Light'; */
	font-size: 0.9em;
	color: var(--button-text-white);
}

.match-fields table thead tr td {
	padding: 0;
	margin: 0;
}

eezee-dialog.match-fields .contents main {
	max-height: 80vh;
	overflow: overlay;
	border-top: 1px solid var(--border-primary);
	border-bottom: 1px solid var(--border-primary);
}

.breadcrumbs {
	padding: 10px 0;
	background: var(--breadcrumbs);
	border-bottom: 1px solid var(--border-primary);
}

.breadcrumbs .breadcrumbs_container {
	display: flex;
	justify-content: flex-end;
	max-width: 1280px;
	width: 90%;
	margin: 0 auto 0 auto;
}

.breadcrumbs ul li {
	display: inline;
	position: relative;
	padding: 0 15px 0 5px;
	color: var(--text-action);
}

.breadcrumbs ul li a {
	color: var(--text-action);
	font-size: 14px;
}

.breadcrumbs ul li a.active {
	color: var(--button-text-white);
}

.breadcrumbs ul li:after {
	content: '/';
	position: absolute;
	right: 0;
	top: 3px;
	font-size: 11px;
}

.breadcrumbs ul li:last-child {
	padding: 0 0 0 5px;
}

.breadcrumbs ul li:last-child:after {
	display: none;
}

.ml-auto {
	margin-left: auto;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mr-auto {
	margin-right: auto;
}

.jf-content {
	justify-content: center;
}

.fs-1rem {
	font-size: 1rem;
}

.fs-2rem {
	font-size: 2rem;
}

eezee-footer {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.07450980392156863);
	margin-top: 20px;
}

eezee-footer .main {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 120px;
}

eezee-footer .main .copyright {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: 'Gotham Medium';
	font-size: 14px;
}

eezee-footer .main .copyright a {
	color: #000;
}

eezee-footer .footer-logo img {
	width: 150px;
}

eezee-td.tags {
	font-size: 13px;
}

th.tags {
	min-width: 190px;
}

body.dialog-open {
	overflow: hidden;
}

a.source-link {
    margin-right: 5px;
}

.mr-5 {
    margin-right: 5px;
}