/* this CSS is not part of the widget, it is here just as an example of the demo page styling.... Don't copy this one, roll your own. One
 * of the key things about the widget is that it allows you to do your own styling!
 */


#editor, #first-editor, #second-editor {
	max-height: 250px;
	height: 250px;
	background-color: white;
	border-collapse: separate;
  	border: 1px solid rgb(204, 204, 204);
 	padding: 4px;
 	box-sizing: content-box;
 	-webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0 1px 1px 0 inset;
 	box-shadow: rgba(0, 0, 0, 0.0745098) 0 1px 1px 0 inset;
	border-top-right-radius: 3px; border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px; border-top-left-radius: 3px;
	overflow: scroll;
	outline: none;
}
#editor:focus{
    border-color:rgba(82, 168, 236, 0.8);
    outline:0;
    outline:thin dotted \9;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
    -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
    box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}

.voiceBtn {
	width: 20px;
	color: transparent;
	background-color: transparent;
	transform: scale(2.0, 2.0);
	-webkit-transform: scale(2.0, 2.0);
	-moz-transform: scale(2.0, 2.0);
	border: transparent;
	cursor: pointer;
	box-shadow: none;
	-webkit-box-shadow: none;
}

div[data-role="editor-toolbar"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dropdown-menu a {
	cursor: pointer;
}
.btn-toolbar {
	padding: 10px 0px 10px 0px;
}

[contentEditable=true]:empty:not(:focus):before {
	content:attr(data-placeholder)
}

.placeholderText {
	color: #777;
}

.imgUpload
{
	width: 0;
	height: 0;
	position:absolute
}

/*
	Font Sizes 
	fs represents the font-size attribute; therefore,
	fs-five would be the equivalent to font-size: 5;	
*/

.fs-One {
	font-size: x-small;
}

.fs-Three {
	font-size: medium;
}

.fs-Five {
	font-size: x-large;
}

.jqx-validator-error-element {
	border-color: #dd4b39 !important;
}
.copy-icon {
	color: #007bff;
	font-size: 20px;
}

.hover-hand {
	text-decoration: underline;
	cursor: pointer;
}
.scrollable-bar {
	height: 100px;
	overflow: auto;
	overflow-x: auto;
	overflow-y: auto;
}

#overlay {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0,0,0,0.6);
}

.loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	border: 3px solid;
	border-color: #FFF #FFF transparent transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

	.loader::after,
	.loader::before {
		content: '';
		box-sizing: border-box;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		border: 3px solid;
		border-color: transparent transparent #FF3D00 #FF3D00;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		box-sizing: border-box;
		animation: rotationBack 0.5s linear infinite;
		transform-origin: center center;
	}

	.loader::before {
		width: 32px;
		height: 32px;
		border-color: #FFF #FFF transparent transparent;
		animation: rotation 1.5s linear infinite;
	}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}
    


.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.date-filter {
	background: #fff;
	border: 1px solid #ccc;
	width: 20%;
	cursor: pointer;
	padding: 7px 10px;
	float: left ;
		
}

.tomato {
	color: #dc3545;
}

.dark-orange{
	color: darkorange;
}


.hover-handcursor {
	cursor: pointer;
}

form-Search {
	color: #555;
	display: inline-flex;
	border: 1px solid currentColor;
	border-radius: 5px;
	margin: 0 0 30px;
}


input[type="search-type"] {
	border: none;
	background: transparent;
	margin: 0;
	padding: 5px 5px;
	font-size: 14px;
	color: inherit;
	border: 1px solid transparent;
	border-radius: inherit;
}



button[type="submit-type"] {
	text-indent: -999px;
	overflow: hidden;
	width: 40px;
	padding: 0;
	margin: 0;
	border: 1px solid transparent;
	border-radius: inherit;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
	cursor: pointer;
	opacity: 0.7;
}

	button[type="submit-type"]:hover {
		opacity: 1;
	}

	button[type="submit-type"]:focus,
	input[type="search-type"]:focus {
		box-shadow: 0 0 3px 0 #1183d6;
		border-color: #1183d6;
		outline: none;
	}

form.nosubmit-type {
	border: none;
	padding: 0;
}

input.nosubmit-type {
	border: 1px solid #555;
	width: 100%;
	padding: 9px 4px 9px 40px;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}
.tile_count {
	display: flex;
	justify-content: space-between;
}

@media (max-width:600px) {
	.dashBoard-mobile {
		width: 62% !important;
	}
	.dashBoard-dept {
		width: 65% !important;
	}
	.refresh-mobile {
		width: 33%;
		padding: 6px 4px;
	}
	.refresh-dept {
		width: 36%;
		padding: 6px 4px;
		margin-top: -6em;
		margin-right: -17px;
	}
	.date-mobile {
		margin-top: 10px;
		text-align: center;
	}
	.search-view {
		margin-top: 10px;
		text-align: center;
	}
	.follow-mobile {
		margin-top: -2em;
	}
	.create-text {
		margin-top: 1em;
	}
	.spacing-text {
		margin-top: 10px;
	}
	.dropdown-text {
		width: 100% !important;
		margin-top: 10px;
	}
	.set-clear {
		margin-top: 10px;
		text-align: center;
	}
	.dashboard-space {
		margin-top: -17px;
	}
	.tile_countView {
		display: block;
	}
	.resendMobile {
		transform: translate(-127px,-6px)
	}
}
.addComments {
	background-color: #007bff;
	color: white;
}
.escalate {
	background-color: #dc3545;
	color: white;
}
.stp {
	background-color: #17a2b8;
	color: white;
}
.hold {
	background-color: #17a2b8;
	color: white;
}
.reject {
	background-color: #ffc107;
	color: black;
}
.closeTicket {
	background-color: #28a745;
	color: white;
}
.reopen {
	background-color: #ffc107;
	color: black;
}
.pieGraph-dashboard {
	width: 100%;
	max-width: 1000px;
	margin-left: 0px;
	height: 400px;
	overflow: visible;
	margin: 0 !important;
	padding-bottom: 0 !important;
}

.total-ticket-dashboard {
	font-size: 20px;
	font-weight: bold;
	text-align: right;
	margin-right:10px;
}


/* Responsive styles for mobile */
@media (max-width: 768px) {
	.pieGraph-dashboard {
		width: 100%; /* Full width for mobile */
		height: 300px; /* Adjust the height as needed for mobile */
	}
}

/* Mobile styling for legend */
@media (max-width: 768px) {
	.echarts-legend {
		font-size: 12px; /* Adjust font size for mobile */
	}
}

.main-chart {	
	min-height: 1px;
	float: left;
	padding-right: 0;
	padding-left: 0px;
}