/* 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 #f7760a #f7760a;
		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;
}
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;
}
.jqx-validator-error-element {
	border-color: #dd4b39 !important;
}

/* ***** autocomplete ***** */
.autocomplete-suggestions {
	border: 1px solid #e4e4e4;
	background: #F4F4F4;
	cursor: default;
	overflow: auto;
}

.autocomplete-suggestion {
	padding: 2px 5px;
	font-size: 1.2em;
	white-space: nowrap;
	overflow: hidden;
}

.autocomplete-selected {
	background: #f0f0f0;
}

.autocomplete-suggestions strong {
	font-weight: normal;
	color: #3399ff;
	font-weight: bolder;
}

/* ***** /autocomplete *****/




/** {
	font-family: monospace;
}

	*:focus {
		outline-color: transparent;
	}
*/

/*input {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1.5px solid rgb(217, 217, 217);
	border-radius: 0;
	padding: 0;
	transition: 0.3s ease;
}

::placeholder {
	font-weight: 600;
	color: #ADADAD;
}

.StoreName {
	text-align: center;
}
.col-md-6.col-xs-12 {
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}
form.row.g-3.ng-pristine.ng-valid{
	margin-top:50px;
}
.btn-sub-custom {
	background: linear-gradient(45deg,#00dbde,#fc00ff);
	border: 0;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	margin-top: 5px;
}
.btn-primary {
	color: #fff;
	background-color: #696cff;
	border-color: #696cff;
	box-shadow: 0 .125rem .25rem 0 rgba(105,108,255,.4);
}
	.btn-primary:hover {
		color: #fff !important;
		background-color: #5f61e6 !important;
		border-color: #5f61e6 !important;
		transform: translateY(-1px) !important;
	}

img {
	width: 150px;
	height: 75px;
}

input:focus {
	outline: none;
	box-shadow: none;*/ /* This also removes the default Bootstrap box shadow */
/*}

input:active {
	border-bottom: #000;
}
.col-md-12 > * {
	margin-bottom: 5px;
}
.form-label, .col-form-label {
	font-size: 0.9rem;
	font-weight: 800;
}
@media only screen and (max-width:450px) {
	.col-md-6.col-xs-12 {
		grid-template-columns: none;
	}
}
li.paginate_button {
	padding: 5px 15px 5px;
	color: #fff;
	background-color: #696cff;
	border-color: #696cff;
	box-shadow: 0 .125rem .25rem 0 rgba(105,108,255,.4);
	border-radius: 5px;
	margin: .5em;
}
.company-dropdown,.state-dropdown,.branch-dropdown{
	flex-grow:1 !important;
}*/
