@font-face {
  font-family: 'Arcon';
  src:
    url('Resources/Fonts/Arcon/Arcon.ttf.svg#Arcon') format('svg'),
    url('Resources/Fonts/Arcon/Arcon.ttf.eot'),
    url('Resources/Fonts/Arcon/Arcon.ttf.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../Resources/Fonts/Icons/icomoon.eot?8ne700');
  src:  url('../Resources/Fonts/Icons/icomoon.eot?8ne700#iefix') format('embedded-opentype'),
    url('../Resources/Fonts/Icons/icomoon.ttf?8ne700') format('truetype'),
    url('../Resources/Fonts/Icons/icomoon.woff?8ne700') format('woff'),
    url('../Resources/Fonts/Icons/icomoon.svg?8ne700#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-large{
  font-size: 5em;
}
.icon-medium{
  font-size: 3em;
}

.icon-battery:before {
  content: "\e900";
}
.icon-water-tank:before {
  content: "\e901";
}
.icon-solar-panel:before {
  content: "\e902";
}
.icon-generator:before {
  content: "\e903";
}
.icon-cloud-off:before {
  content: "\e904";
}

.arcon {
  font-family: 'Arcon' !important;
  font-size: 3.5rem !important;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 6px;
  margin-right: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body {
  color: black !important;
  overflow-x: hidden;
}

.st0{
  fill:#6EA0D7;
  }

.st1{
  fill:#00416E;
}

/*////////////////////////////////////////////////*/
.text-group-icon {
  position: absolute;
  right: 2em;
  text-align: center;
  vertical-align: middle;
  line-height: 3em;
  width: 2em;
}

.text-group-status {
  position: absolute;
  z-index: 1;
  right: 2em;
  top: 1em;
}

.text-group {
  position: relative;
  display: inline-block;
  width: 100%;
}

.text-input {
  font-size: 1em;
  padding: 0.75em;
  display: inline-block;
  width: calc(100% - 1.5em);
  border: none;
  border-bottom: 1px solid #757575;
}

.text-input-empty {
  font-size: 1em;
  padding: 0.75em;
  display: inline-block;
  width: calc(100% - 1.5em);
  border: 1px solid red;
  animation-name: border-animate;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes border-animate {
  0% {
    border: 1px solid white;
    border-bottom: 1px solid #757575;
  }
  25% {
    border: 1px solid red;
  }
  50% {
    border: 1px solid white;
    border-bottom: 1px solid #757575;
  }
  75% {
    border: 1px solid red;
  }
  100% {
    border: 1px solid white;
    border-bottom: 1px solid #757575;
  }
}

.select-input {
  font-size: 1em;
  padding: 0.75em;
  display: inline-block;
  width: calc(100% - 1.5em);
  border: none;
  border-bottom: 1px solid #757575;
}

.select-input:disabled {
  opacity: 100%;
}

.text-input:focus {
  outline: none;
}

.select-input:focus {
  outline: none;
}

.text-input-label {
  color: #999;
  font-size: 1em;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0.5em;
  top: 0.75em;
  transition: 0.2s ease all;
}

.text-input-label-fixed {
  color: #6EA0D7;
  font-size: 0.75em;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0.5em;
  top: -0.8em;
  transition: 0.2s ease all;
}

.text-input:focus~.text-input-label, .text-input:valid~.text-input-label, .text-input:disabled~.text-input-label, .select-input:focus~.text-input-label, .select-input:valid~.text-input-label, .select-input:disabled~.text-input-label {
  top: -.8em;
  font-size: 0.75em;
  color: #6EA0D7;
}

.text-bar {
  position: relative;
  display: block;
  width: calc(100% - 1.5em);
}

.text-bar:before, .text-bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #6EA0D7;
  transition: 0.2s ease all;
}

.text-bar:before {
  left: 50%;
}

.text-bar:after {
  right: 50%;
}

/* active state */
.text-input:focus~.text-bar:before, .text-input:focus~.text-bar:after, .multi:focus~.text-bar:before, .multi:focus~.text-bar:after, .select-input:focus~.text-bar:before, .select-input:focus~.text-bar:after {
  width: 50%;
}

.g-modal-bg {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100vh);
  width: calc(100vw);
  background-color: black;
  opacity: 0.7;
}

.g-modal-xl {
  display: none;
  z-index: 1000;
  position: relative;
  top: 2em;
  left: 2em;
  height: calc(100vh - 4em);
  width: calc(100vw - 4em);
  min-width: 1500px;
}

.table-ml thead th{
  font-weight: 400!important;
}

.nav-item{
  /* border-bottom: 0.125rem solid #f8f9fc !important; */
}

.nav-item.active{
  border-bottom: 0.125rem solid #6EA0D7 !important;
  background-color: #f8f9fc !important;
}

.card.active{
  border-bottom: 0.25rem solid #6EA0D7 !important;
}

.pointer{
  cursor: pointer;
}

.scale-s:hover{
  transform: scale(1.025);
}

.datepicker{ z-index:99999 !important; }


.blob-red {
	background: rgba(255, 82, 82, 1);
  border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
	height: 16px;
	width: 16px;
  text-align: center;
  color: black;
	transform: scale(1);
	animation: pulse-red 2s infinite;
}

.blob-green {
	background: #1cc88a;
  border-radius: 50%;
	box-shadow: 0 0 0 0 #1cc88a;
	height: 16px;
	width: 16px;
  text-align: center;
  color: black;
}

.blob-yellow {
  background: rgba(255, 177, 66, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255 177 66);
  height: 16px;
  width: 16px;
  text-align: center;
  color: white;
  transform: scale(1);
  animation: pulse-yellow 2s infinite;
}

.blob-red2 {
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(255 82 82);
    text-align: center;
    color: black;
    transform: scale(1);
    animation: pulse-red 2s infinite;
  }

.blob-yellow2 {
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(246, 194, 62);
    text-align: center;
    color: black;
    transform: scale(1);
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
	}
}

@keyframes pulse-yellow {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
	}
}

.card{
  border-radius: 0 !important;
}
