.app-debug-mode-panel {
	background: repeating-linear-gradient(45deg, rgb(84,105,141), rgb(84,105,141) 20px, rgba(84,105,141,.97) 20px, rgba(84,105,141,.97) 40px);
	color: white;
	text-align: center;
	vertical-align: middle;
	min-height: 50px; 
	padding: 5px;
	position: relative;
	z-index: 999;
}

.app-debug-mode-panel-indicators {
	text-align: right;
}

.dataTables_scroll {
	overflow-x: scroll;
}

.scroll {
	width: 20px;
	height: 200px;
	overflow: auto;
	float: left;
	margin: 0 10px;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-thumb {
	background: rgba(102, 102, 102, 0.73);
	border-radius: 8px;
	/*background: rgba(102, 102, 102, 0.73);*/
}

::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 8px;
}

select {
	width: 100px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#button-goup {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	top: 20px; /* Place the button at the bottom of the page */
	right: 50%; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	/*background-color: #3c8dbc; !* Set a background color *!*/
	/*color: white; !* Text color *!*/
	cursor: pointer; /* Add a mouse pointer on hover */
	width: 40px;
	height: 40px;
	border-radius: 50%; /* Rounded corners */
	/*padding: 15px; !* Some padding *!*/
	/*border-radius: 100px; !* Rounded corners *!*/
}

#button-goup:hover {
	background-color: #555; /* Add a dark-grey background on hover */
}

input:required {
	/*background: url("https://assets.digitalocean.com/labs/icons/exclamation-triangle-fill.svg") no-repeat -10px 50% lightgoldenrodyellow;*/
	background-color: lightgoldenrodyellow;
	background-size: 25px;
}

select:required {
	/*background: url("https://assets.digitalocean.com/labs/icons/exclamation-triangle-fill.svg") no-repeat -10px 50% lightgoldenrodyellow;*/
	background-color: lightgoldenrodyellow;
	background-size: 25px;
}

textarea:required {
	/*background: url("https://assets.digitalocean.com/labs/icons/exclamation-triangle-fill.svg") no-repeat -10px 50% lightgoldenrodyellow;*/
	background-color: lightgoldenrodyellow;
	background-size: 25px;
}

.glyphicon-refresh-animate {
	-animation: spin 0.7s infinite linear;
	-webkit-animation: spin2 0.7s infinite linear;
}

.animation-shake {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 0.5s;

	/* When the animation is finished, start again */
	animation-iteration-count: infinite;
}

@keyframes shake {
	0% {
		transform: rotate(0deg);
	}
	10% {
		transform: rotate(-20deg);
	}
	20% {
		transform: rotate(20deg);
	}
	30% {
		transform: rotate(0deg);
	}
	40% {
		transform: rotate(20deg);
	}
	50% {
		transform: rotate(-20deg);
	}
	60% {
		transform: rotate(0deg);
	}
	70% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(0deg);
	}
	90% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-webkit-keyframes spin2 {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		transform: scale(1) rotate(0deg);
	}
	to {
		transform: scale(1) rotate(360deg);
	}
}

label {
	font-family: "Google Sans", Nunito, Source Sans Pro;
	font-weight: 500;
}

.panel-fullscreen {
	background-color: white;
	display: block;
	z-index: 9999;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: auto;
	padding-top: 12px;
}

.custom-logo {
	width: 90px;
}

.custom-logo-top {
	width: 30px;
}

.custom-logo-preloading {
	width: 60px;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.custom-avatar-small {
	width: 25px;
}

.custom-avatar-normal {
	width: 45px;
}

.btn-tag {
	border-radius: 18px;
	padding: 3px 10px 3px 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-align: left;
	/*border: 1px solid transparent;*/
}

.btn-tag-sm {
	border-radius: 18px;
	padding: 3px 10px 3px 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	direction: rtl;
	max-width: 180px;
}

.modal-header,
.modal-footer {
	border: 0px;
}

.modal-select-column {
	margin-left: 15px;
	width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.modal-select-actions {
	margin-right: 15px;
}

.tooltip-hint {
	border-bottom: dotted 1px lightslategrey;
	text-decoration: none;
}

.popover-hint {
	cursor: pointer;
	border-bottom: dotted 1px lightslategrey;
	text-decoration: none;
}

.map-hint:hover {
	text-decoration: underline;
}

/* */

.form-path {
	display: flex;
	flex-direction: row;
	justify-content: stretch;
	color: white;
	margin: 2rem;
  }
  
  .form-path > div {
	background: #00a65a;
	height: 3rem;
	position: relative;
	flex: 1;
	display: flex;
	margin-right: 1rem;
	margin-left: -1rem;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 1.5rem 0 1.5rem;
	white-space: nowrap;
	user-select: none;
  }
  
  .form-path > div:first-child {
	border-radius: 0.5rem 0 0 0.5rem;
  }
  
  .form-path > div:hover:after {
	border-left-color: #00d173;
  }
  
  .form-path > div:first-child:hover {
	background: #00d173;
  }
  
  .form-path > div:hover {
	background: #00d173;
  }
  
  .form-path > div:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	width: 0;
	right: -1rem;
	flex: 1;
	border-left: 1rem solid #00a65a;
	border-top: 1.5rem solid transparent;
	border-bottom: 1.5rem solid transparent;
	z-index: 1;
  }
  
  .form-path > div.current {
	color: white;
	background: #00a65a;
  }
  
  .form-path > div.current:hover {
	background: #00d173;
  }
  
  .form-path > div.current:after {
	border-left-color: #00a65a;
  }
  
  .form-path > div.current:hover:after {
	border-left-color: #00d173;
  }
  
  .form-path > div.current:last-child:after {
	background: #00a65a;
	border-radius: 0 .5rem .5rem 0;
  }
  
  .form-path > div.current:last-child:hover:after {
	background: #00d173;
  }
  
  .form-path > div.current ~ div {
	background: rgb(225, 225, 225);
	color: black;
  }
  
  .form-path > div.current ~ div:hover {
	background: rgb(240, 240, 240);
  }
  
  .form-path > div.current ~ div:after {
	border-left-color: rgb(225, 225, 225);
	background: transparent;
  }
  
  .form-path > div.current ~ div:hover:after {
	border-left-color: rgb(240, 240, 240);
  }
  
  .form-path > div.current ~ div:last-child:after {
	background: rgb(225, 225, 225);
	content: "";
	border-radius: 0 0.5rem 0.5rem 0;
  }
  
  .form-path > div.current ~ div:last-child:hover:after {
	background: rgb(240, 240, 240);
	border-radius: 0 0.5rem 0.5rem 0;
  }

/* */


.material-switch-item {
	border: 0px;
}

.material-switch > input[type="checkbox"] {
	display: none;
}

.material-switch > label {
	cursor: pointer;
	height: 0px;
	position: relative;
	width: 40px;
}

.material-switch > label::before {
	background: rgb(0, 0, 0);
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	content: "";
	height: 16px;
	margin-top: -8px;
	position: absolute;
	opacity: 0.3;
	transition: all 0.4s ease-in-out;
	width: 40px;
}

.material-switch > label::after {
	background: rgb(255, 255, 255);
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	content: "";
	height: 24px;
	left: -4px;
	margin-top: -8px;
	position: absolute;
	top: -4px;
	transition: all 0.3s ease-in-out;
	width: 24px;
}

.material-switch > input[type="checkbox"]:checked + label::before {
	background: inherit;
	opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + label::after {
	background: inherit;
	left: 20px;
}

.border-danger {
	border-color: #c7254e;
}

.border-danger:focus {
	border-color: #c7254e;
}

.loader-by {
	--uib-size: 80px;
	--uib-speed: 1.4s;
	--uib-color: #85929e;
	--uib-line-weight: 5px;
  
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--uib-line-weight);
	width: var(--uib-size);
	border-radius: calc(var(--uib-line-weight) / 2);
	overflow: hidden;
	transform: translate3d(0, 0, 0);
  }
  
  .loader-by::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--uib-color);
	opacity: 0.1;
  }
  
  .loader-by::after {
	content: '';
	height: 100%;
	width: 100%;
	border-radius: calc(var(--uib-line-weight) / 2);
	animation: raceBy var(--uib-speed) ease-in-out infinite;
	transform: translateX(-100%);
	background-color: var(--uib-color);
  }
  
  @keyframes raceBy {
	0% {
	  transform: translateX(-100%);
	}
	100% {
	  transform: translateX(100%);
	}
  }