﻿.underlined-row {
	/*border-top: solid 1px transparent;*/
	border-bottom: solid 1px transparent;
}

	.underlined-row:hover {
		border-color: #cccbcb;
	}

.task-row {
	color: #000;
	text-decoration: none;
	border: solid 1px transparent;
	margin-bottom: 2px;
}

	.task-row:hover {
		color: #000;
		text-decoration: none;
		border: solid 1px #1a88ff;
	}

	.task-row.selected {
		border: solid 1px #1a88ff;
	}

.text--ellipsis {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}


/*Agent Control*/
.agent-control {
	display: flex;
	width: 100%;
	align-items: center;
	min-height: 42px;
}

.agent-control-name-container {
	flex: 1;
	overflow: hidden;
}

.agent-control-name {
	line-height: 1.3;
}

.agent-control-name-icon {
	font-size: 19px !important;
}

.agent-control-name:hover {
	text-decoration: none;
	color: var(--darkgrey);
}

.agent-control-button {
	margin-left: auto;
	background-color: #C0C0C0;
	padding: 4px;
	margin-top: 5px;
}

.clear-button, .agent-control-clear {
	font-size: 14px !important;
}

	.clear-button:hover, .agent-control-clear:hover {
		cursor: pointer;
		color: rgba(220,53,69,0.6) !important;
	}

	.clear-button:focus, clear-button:active {
		outline: 0px;
	}
/*File control*/
.filebasket {
	min-height: 180px;
	min-width: 180px;
	position: relative;
}

.files-container {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	padding: 15px;
	min-height: 305px;
	max-height: 305px;
	overflow-y: auto;
	overflow-x: hidden;
}

[part="projectstrikefiles"] .files-container {
	padding: 11px;
}


.files-container::-webkit-scrollbar-track {
	background-color: #D4D4D4;
}

.files-container::-webkit-scrollbar-thumb {
	background-color: #BFBFBF;
}

.files-container::-webkit-scrollbar-button {
	display: none;
}


.agent-control-title {
	font-size: 14px;
	font-family: "Montserrat Regular",sans-serif,Arial;
}

.file-item {
	color: #000;
	position: relative;
	width: 75px;
	min-height: 95px;
	display: flex;
	padding: 5px;
	flex-direction: column;
	align-items: center;
	border: 1px solid transparent;
	transition: all 0.3s;
}

.file-item--big {
	width: 150px;
	min-height: 150px;
}

.file-item--medium {
	width: 120px;
	min-height: 120px;
}

.file-item:hover {
	background-color: var(--gainsboro);
	border: 1px solid var(--litegrey);
}

	.file-item:hover .file-item-download {
		display: flex !important;
		justify-content: center;
		align-items: center;
	}

	.file-item:hover .file-item-delete {
		display: flex !important;
		justify-content: center;
		align-items: center;
	}

.file-item[pdf]:hover .file-item-download-btn {
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.file-item-icon {
	max-width: 48px;
	max-height: 48px;
	display: block;
}

.file-item--big .file-item-icon {
	max-width: 100px;
	max-height: 100px;
}

.file-item--medium .file-item-icon {
	max-width: 60px;
	max-height: 60px;
}

.file-item-name {
	line-height: 1.3;
	font-size: 12px;
	padding-top: 5px;
	font-family: "Montserrat Regular",sans-serif,Arial;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: center;
	width: 100%;
}

.files-container-cover {
	display: none;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-align: center;
	font-size: 23px;
	color: var(--white);
	font-family: "Montserrat Bold",sans-serif,Arial;
	text-transform: uppercase;
}

	.files-container-cover:before {
		content: "";
		display: none;
		position: absolute;
		border: 6px dashed var(--white);
		top: 20px;
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.files-container-cover.dragging {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(128, 128, 128, 0.6);
		padding: 20px;
	}

		.files-container-cover.dragging:before {
			display: block;
		}

		.files-container-cover.dragging.dragover {
			background-color: rgba(128, 128, 128, 0.4);
		}

.files-loading {
	display: none;
	background-color: var(--sahara);
	padding-left: 15px;
	padding-top: 3px;
	padding-bottom: 3px;
	font-family: "Montserrat Regular",sans-serif,Arial;
	min-height: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow-x: hidden;
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

/*.files-container-cover-content {
	border: 4px dashed #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 20px;
	width: 100%;
	color: var(--white);
	font-family: "Montserrat Bold",sans-serif,Arial;
	text-transform: uppercase;
}*/

.file-item-download {
	display: none !important;
	background-color: white;
	position: absolute;
	font-size: 20px !important;
	right: 0;
	bottom: 0;
	border-top: 1px solid var(--litegrey);
	border-left: 1px solid var(--litegrey);
}

	.file-item-download:hover {
		text-decoration: none;
	}

.file-item-download-btn {
	display: none !important;
	background-color: white;
	position: absolute;
	font-size: 20px !important;
	right: 0;
	bottom: 0;
	border-top: 1px solid var(--litegrey);
	border-left: 1px solid var(--litegrey);
}

	.file-item-download-btn:hover {
		text-decoration: none;
	}

.file-item-delete {
	display: none !important;
	position: absolute;
	font-size: 20px !important;
	right: 0;
	top: 0;
	border-bottom: 1px solid var(--litegrey);
	border-left: 1px solid var(--litegrey);
	background-color: var(--white);
}

	.file-item-delete:hover {
		text-decoration: none;
	}
/*preloader start*/
.preloader-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	background-color: var(--gainsboro);
	background-size: cover;
	z-index: 5;
}

.preloader span {
	display: inline-block;
	height: 15px;
	width: 15px;
	background: #efe813d1;
	border-radius: 0px;
}

	.preloader span:nth-child(1) {
		-webkit-animation: temp 1s 0.05s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.05s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(2) {
		-webkit-animation: temp 1s 0.1s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.1s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(3) {
		-webkit-animation: temp 1s 0.15s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.15s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(4) {
		-webkit-animation: temp 1s 0.2s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.2s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(5) {
		-webkit-animation: temp 1s 0.25s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.25s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(6) {
		-webkit-animation: temp 1s 0.3s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.3s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(7) {
		-webkit-animation: temp 1s 0.35s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.35s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(8) {
		-webkit-animation: temp 1s 0.4s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.4s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(9) {
		-webkit-animation: temp 1s 0.45s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.45s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(10) {
		-webkit-animation: temp 1s 0.5s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.5s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(11) {
		-webkit-animation: temp 1s 0.55s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.55s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(12) {
		-webkit-animation: temp 1s 0.6s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.6s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(13) {
		-webkit-animation: temp 1s 0.65s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.65s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(14) {
		-webkit-animation: temp 1s 0.7s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.7s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(15) {
		-webkit-animation: temp 1s 0.75s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.75s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(16) {
		-webkit-animation: temp 1s 0.8s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.8s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(17) {
		-webkit-animation: temp 1s 0.85s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.85s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(18) {
		-webkit-animation: temp 1s 0.9s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.9s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(19) {
		-webkit-animation: temp 1s 0.95s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 0.95s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

	.preloader span:nth-child(20) {
		-webkit-animation: temp 1s 1s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		animation: temp 1s 1s infinite cubic-bezier(0.005, 0.56, 0.58, 1.59);
		width: 7.5px;
		height: 7.5px;
		margin: 0 2px;
	}

@keyframes temp {
	0% {
	}

	50% {
		transform: scale(1,5);
		background: var(--darkyellow);
	}

	100% {
	}
}

.newagent-fullname, .newagent-class {
	border: 0px;
	border-bottom: 1px solid var(--gainsboro);
	min-height: 25px;
}

/*preloader end*/

/*withdraw control start*/

.withcontrol {
	display: flex;
	font-size: 20px;
	font-family: "Oswald",sans-serif,Arial;
	font-weight: 500;
}

.withcontrol__paid, .withcontrol__main, .withcontrol__total, .withcontrol__field, .withcontrol__requested, .withcontrol__available {
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	align-items: center;
}

.withcontrol__paid {
	background-color: var(--brown);
	width: 25%;
	color: var(--sahara);
}

.withcontrol__requested {
	background-color: var(--sahara);
	width: 25%;
	color: var(--sahara);
}

.withcontrol__available {
	background-color: var(--gainsboro);
	width: 25%;
	color: var(--sahara);
}

.withcontrol__main {
	background-color: var(--sahara);
	width: 50%;
	color: var(--litegrey);
	position: relative;
	flex: 1;
}

.withcontrol__total {
	background-color: var(--darkgrey);
	width: 25%;
	color: var(--darkyellow);
}

.withcontrol__field {
	width: 160px;
}

	.withcontrol__field input::-webkit-calendar-picker-indicator {
		display: none;
	}
	/* Chrome, Safari, Edge, Opera */
	.withcontrol__field input::-webkit-outer-spin-button,
	.withcontrol__field input::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	/* Firefox */
	.withcontrol__field input[type=number] {
		-moz-appearance: textfield;
	}

.withcontrol__carret {
	position: absolute;
	width: 1px;
	top: 0;
	bottom: 0;
	background-color: rgba(64,64,64,0.5);
}

	.withcontrol__carret:after {
		content: '';
		position: absolute;
		display: block;
		position: absolute;
		left: 0;
		width: 0;
		transform: translateX(-47%);
		height: 0;
		top: 100%;
		border-style: solid;
		border-width: 0 7px 8px 7px;
		z-index: 20;
		border-color: transparent transparent var(--grey) transparent;
	}
/*withdraw control end*/


/*circlediagramcontrol control start*/

.doughnutTip {
	position: absolute;
	min-width: 30px;
	max-width: 300px;
	padding: 5px 15px;
	border-radius: 1px;
	background: rgba(0,0,0,.8);
	color: #ddd;
	font-size: 17px;
	text-shadow: 0 1px 0 #000;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
	letter-spacing: .06em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	pointer-events: none;
	z-index: 2;
}

	.doughnutTip:after {
		position: absolute;
		left: 50%;
		bottom: -6px;
		content: "";
		height: 0;
		margin: 0 0 0 -6px;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
		border-top: 6px solid rgba(0,0,0,.7);
		line-height: 0;
	}

.doughnutSummary {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #d5d5d5;
	text-align: center;
	text-shadow: 0 -1px 0 #111;
	cursor: default;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}

.doughnutSummaryTitle {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: .06em;
	margin-bottom: 0px;
	font-family: "Montserrat", sans-serif, Arial;
	text-transform: uppercase;
	color: var(--grey);
}

.doughnutSeparator {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 4px;
	background-color: var(--grey);
}

.doughnutSummaryNumber {
	font-size: 37px;
	font-weight: bold;
	width: 100%;
	line-height: 1;
	margin-bottom: 0px;
	font-family: "Montserrat", sans-serif, Arial;
	color: var(--darkgrey);
	overflow: hidden !important;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chart path:hover {
	opacity: 0.65;
}

.circle-diagram-legend-outer {
	display: flex;
	background: var(--white);
	min-width: 350px;
	padding: 40px 40px 40px 70px;
}

.circle-diagram-legend {
	width: 100%;
	overflow-y: auto;
}

.circle-diagram-legend-item {
	display: flex;
	width: 100%;
	align-items: center;
	margin-bottom: 15px;
}

.circle-diagram-legend-item-indicator {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.circle-diagram-legend-item-text {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	color: var(--grey);
	overflow: hidden !important;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.profit-diagram-container {
	display: flex;
}

.circle-diagram {
	position: relative;
	width: 400px;
	height: 400px;
}
/*circlediagramcontrol control end*/

/*android checkbox start*/

.toggle-a-checkbox {
	position: relative;
	width: 60px;
	height: 30px;
	border-radius: 100px;
	background-color: #ddd;
	overflow: hidden;
	box-shadow: inset 0 0 2px 1px rgba(0,0,0,.05);
}

.check-a-checkbox {
	position: absolute;
	display: block;
	cursor: pointer;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 6;
}

	.check-a-checkbox:checked ~ .track-a-checkbox {
		box-shadow: inset 0 0 0 20px var(--darkyellow);
	}

	.check-a-checkbox:checked ~ .switch-a-checkbox {
		right: 2px;
		left: 29px;
		transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
		transition-property: left, right;
		transition-delay: .05s, 0s;
	}

.switch-a-checkbox {
	position: absolute;
	left: 2px;
	top: 2px;
	bottom: 2px;
	right: 29px;
	background-color: #fff;
	border-radius: 36px;
	z-index: 1;
	transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	transition-property: left, right;
	transition-delay: 0s, .05s;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.track-a-checkbox {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	box-shadow: inset 0 0 0 2px rgba(0,0,0,.05);
	border-radius: 40px;
}

/*android checkbox end*/

/* json viewer */
.json-document {
	padding: 1em 2em;
}

/* Syntax highlighting for JSON objects */
ul.json-dict, ol.json-array {
	list-style-type: none;
	margin: 0 0 0 1px;
	border-left: 1px dotted #ccc;
	padding-left: 2em;
}

	ul.json-dict.collapsed, ol.json-array.collapsed {
		display: none;
	}

.json-string {
	color: #0B7500;
}

.json-literal {
	color: #1A01CC;
	font-weight: bold;
}

/* Toggle button */
a.json-toggle {
	position: relative;
	color: inherit;
	text-decoration: none;
}

	a.json-toggle:focus {
		outline: none;
	}

	a.json-toggle:before {
		font-size: 1.1em;
		color: #c0c0c0;
		content: "\25BC"; /* down arrow */
		position: absolute;
		display: inline-block;
		width: 1em;
		text-align: center;
		line-height: 1em;
		left: -1.2em;
	}

	a.json-toggle:hover:before {
		color: #aaa;
	}

	a.json-toggle.collapsed:before {
		/* Use rotated down arrow, prevents right arrow appearing smaller than down arrow in some browsers */
		transform: rotate(-90deg);
	}

/* Collapsable placeholder links */
a.json-placeholder {
	color: #aaa;
	padding: 0 1em;
	text-decoration: none;
}

	a.json-placeholder:hover {
		text-decoration: underline;
	}

.file-item--big .file-item-icon {
	object-fit: cover;
	height: 120px;
	width: 140px;
	max-height: 150px;
	max-width: 140px;
}

/*files download feature*/
[not-image]:hover {
	background: var(--grey)
}

	[not-image]:hover .file-item-icon {
		opacity: 0.3
	}

	[not-image]:hover .file-item-download {
		bottom: 50%;
		right: 50%;
		/*transform:translate(50%, 50%);*/
		transform: translateX(50%);
		border: none;
		font-size: 30px !important;
		color: var(--white) !important;
		background: transparent;
		animation: follingArrow 1000ms linear;
		cursor: pointer;
	}

		[not-image]:hover .file-item-download::before {
			content: '';
			position: absolute;
			top: 100%;
			left: 50%;
			transform: translateX(-50%);
			width: 30px;
			height: 10px;
			border-bottom: 3px solid var(--white);
			border-right: 3px solid var(--white);
			border-left: 3px solid var(--white);
		}

[not-image][pdf]:hover {
	background: var(--grey)
}

	[not-image][pdf]:hover .file-item-icon {
		opacity: 0.3
	}

	[not-image][pdf]:hover .file-item-download-btn {
		bottom: 50%;
		right: 50%;
		/*transform:translate(50%, 50%);*/
		transform: translateX(50%);
		border: none;
		font-size: 30px !important;
		color: var(--white) !important;
		background: transparent;
		animation: follingArrow 1000ms linear;
		cursor: pointer;
	}

		[not-image][pdf]:hover .file-item-download-btn::before {
			content: '';
			position: absolute;
			top: 100%;
			left: 50%;
			transform: translateX(-50%);
			width: 30px;
			height: 10px;
			border-bottom: 3px solid var(--white);
			border-right: 3px solid var(--white);
			border-left: 3px solid var(--white);
		}
