html, body {
	margin: 0;
	padding: 0;
	background: #f3f3f3;
	font-family: 'Open Sans', sans-serif;
}

.multi-wrapper {
    min-width: 400px !important;
}

::selection {
    background-color: #3a4dd0;
    color: white;
}

.user_role_settings {display: none;}

.leaflet-pane {
    z-index: 1 !important;
}

.leaflet-popup-content-wrapper {
    font-size: 14px;
}

.no-js-message a {
    text-decoration: none;
    color: #3a4dd0;
    font-weight: 600;
    border-bottom: 2px solid #3a4dd0;
}

.no-js-message {
    display: none;
    background: #FAFAFA;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.no-js-message .content {
    text-align: center;
    margin-top: 20%;
}

.no-js-message .content .icon {
    font-size: 60px;
    margin-bottom: 30px;
}

.no-js-message .content .text {
    line-height: 30px;
}

.no-table-data {
    text-align: center;
}

.no-table-data .icon i {
    font-size: 100px;
    color: rgba(255,255,255,0.80);
    background: rgba(192,57,43, 0.90);
    border-radius: 900px;
    box-shadow: 0px 5px 25px 0px rgba(192,57,43, 0.60);
    padding: 12px 10px;
}

.no-table-data .text {
    margin-top: 40px;
    font-size: 20px;
}

.no-table-data .action {
    margin-top: 20px;
}

.no-table-data .action a {
    font-size: 14px;
    background: rgb(140, 140, 140);
    color: #fff;
    padding: 7px 12px 7px 7px;
    border-radius: 10px;
    text-decoration: none;
}

.preloader {
    background: #F2F2F2;
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999;
}

.preloader .lgimg {
    display: block;
    height: 130px;
    width: 130px;
    background-size: cover;
    background-position: center;
    margin: auto;
    opacity: 0.5;
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes flickerAnimation {
    0%   { opacity:0.5; }
    50%  { opacity:0.8; }
    100% { opacity:0.5; }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:0.5; }
    50%  { opacity:0.8; }
    100% { opacity:0.5; }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:0.5; }
    50%  { opacity:0.8; }
    100% { opacity:0.5; }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:0.5; }
    50%  { opacity:0.8; }
    100% { opacity:0.5; }
}

header {
    background: #FAFAFA;
    z-index: 2;
    top: 0;
    left: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.10);
    position: relative;
}

header .border {
    background: -webkit-linear-gradient(to right, #3a4dd0, #27B7C8);
    background: linear-gradient(to right, #3a4dd0, #27B7C8);
    height: 5px;
}

header .content {
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 30px;
}

header .content .leftPanel {
	float: left;
	width: 60%;
}

header .content .rightPanel {
	float: right;
	width: 35%;
}

header .content .leftPanel .logo {
    overflow: hidden;
}

header .content .leftPanel .logo img {
	width: 60px;
	height: 60px;
	vertical-align: middle;
    padding-right: 15px;
    float: left;
}

header .content .leftPanel .logo .title {
	font-size: 25px;
    vertical-align: middle;
    float: left;
    margin-top: 5px;
}

header .content .leftPanel .logo .appName {
    margin-top: -5px;
}

header .content .leftPanel .logo .anet {
    font-size: 17px;
    font-weight: 600;
    margin-left: 2px;
}

header .content .rightPanel ul {
	list-style: none;
	padding: 0;
	margin: 10px 0 0 0;
	text-align: right;
}

header .content .rightPanel li {
	display: inline-block;
	margin: 0 5px;
}

header .content .rightPanel li a {
    text-decoration: none;
    color: #6d6d6d;
}

/* Quick Settings on Header */
.quick_settings {
    display: none;
    position: absolute;
    right: 25px;
    top: 73px;
    padding: 10px 13px 10px 10px;
    border-radius: 10px;
    background: #EEEEEE;
    border: 1px solid #ced4da;
    color: #6d6d6d;
    width: 282px;
    text-align: left;
}

/* Search Place */
.searchPlace #searchResults {
    display: none;
    height: 400px;
    position: absolute;
    top: 75px;
    width: 310px;
    right: 28px;
    z-index: 999999999;
    border-radius: 10px;
    background: #EEEEEE;
    border: 1px solid #ced4da;
    overflow: auto;
    box-shadow: 0px 7px 20px rgba(0,0,0,0.30);
}

.searchPlace .searchBox {
	padding: 10px 10px;
    border-radius: 10px;
    vertical-align: baseline;
    background: #EEEEEE;
    font-size: 15px;
    width: 103px;

    transition: width 0.5s;
    -webkit-transition: width 0.5s;
}

.searchBox_active {
    width: 200px !important;
}

.searchPlace #searchResults .welcome .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.searchPlace #searchResults .welcome {
    text-align: center;
    color: #5a5a5a;
    font-size: 15px;
    margin-top: 150px;
}

#searchResults ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#searchResults ul li {
    display: block;
    margin: 0;
}

#searchResults ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #292929;
    font-weight: 600;
    border-radius: 0;
}

#searchResults ul li a:hover {
    background: #404040;
    color: #fff;
}

#searchResults ul li.section a {
    color: #6d6d6d;
    background: #e0e0e0;
}

#searchResults ul li.no-results a {
    font-size: 12px;
    opacity: 0.6;
}

header .content .rightPanel .searchBox:focus {
    background: #E0E0E0;
}

header .content .rightPanel .user {
    padding: 10px 13px 10px 10px;
    border-radius: 10px;
    background: #EEEEEE;
    border: 1px solid #ced4da;
    color: #6d6d6d;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #FAFAFA;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.10);
    height: 100%;
    overflow-y: auto;
}

nav::-webkit-scrollbar-track
{
	background-color: #FAFAFA;
}

nav::-webkit-scrollbar
{
	width: 10px;
	background-color: #FAFAFA;
}

nav::-webkit-scrollbar-thumb
{
	background-color: #c1c1c1;
	border: 0px solid #c1c1c1;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}

nav li.logo {
	height: 80px;
}

nav li.logo a {
    padding: 10px 14px;
}

nav li.logo img {
    max-width: 50px;
    padding-left: 3px;
}

nav li a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 20px 14px;
    color: #757575;
}

nav li a .icon {
	padding-bottom: 5px;
}

nav li a .text {
	font-size: 14px;
}

nav li.active a {
    color: #fff;
	background: #005C97;
	background: -webkit-linear-gradient(to right, #3a4dd0, #27B7C8);
	background: linear-gradient(to right, #3a4dd0, #27B7C8);
}

nav li a:hover {
    cursor: pointer;
    color: #292929;
    background: rgb(236, 236, 236);
}

#wrapper-main {
	margin-left: 150px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.pageTitle {
	color: #484848;
    margin-bottom: 30px;
}

.insideMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insideMenu li {
    display: inline;
}

.insideMenu li a {
    display: inline-block;
    padding: 6px 10px;
    background: #d6d6d6;
    color: #313131;
    text-decoration: none;
    font-size: 13px;
    border-radius: 5px;
}

.insideMenu li a:hover {
    color: #fff;
    background: #005C97;
    background: -webkit-linear-gradient(to right, #3a4dd0, #27B7C8);
    background: linear-gradient(to right, #3a4dd0, #27B7C8);
}

.main-content {
    margin-top: 30px;
    margin-right: 20px;
}

.login-form table {
    max-width: 400px;
    margin: 0 auto;
}

#login-page footer {
    text-align: center;
    margin-right: 50px;
    margin-left: 50px;
}

table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}

table thead {
    background: #EEEEEE;
    color: #1f1f1f;
}

table td, table th {
    padding: 5px 10px;
    font-size: 15px;
    border-bottom: 2px solid rgba(0,0,0,0.04);
}

.data-table .row-grayed-out {
    opacity: 0.4;
}

.data-table thead tr:hover {
    background: none !important;
    color: #000 !important;
}

.data-table tr:hover {
    background: #3a4dd0 !important;
    color: #fff;
}

.data-table tbody .activeRow {
    background-color: #27B7C8 !important;
    color: #fff !important;
}

table tr:nth-child(even), .nth {
    background-color: rgba(0,0,0,0.03);
}

.dataTables_length, .dataTables_info, .dataTables_filter, .dataTables_paginate {
    margin-bottom: 15px;
    font-size: 14px;
}

.dataTables_paginate, .dataTables_info {
    margin-top: 10px;
}

.dataTables_filter {
    margin-top: -20px;
}

.data-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.data-options li {
    display: inline-block;
}

.data-options li a {
    display: inline-block;
    background: #484848;
    padding: 5px;
    border-radius: 100px;
    margin: 5px;
    color: #fff;
    cursor: pointer;
}

.data-options .edit {
    background: #3498db;
}

.data-options .delete {
    background: #e74c3c;
}

.data-options .done {
    background: #27ae60;
}

.data-options .page {
    background: #e67e22;
}

.mapToggle, .infoToggle, .consumptionToggle, .chargingToggle {
    color: #2d2d2d;
    background: #e2e2e2;
    border-radius: 6px;
    padding: 10px 10px;
    margin: 0 0 20px 0;
    cursor: pointer;
}

.dash-reporting {
    margin-bottom: 0 !important;
    position: relative;
    margin-top: -65px;
    width: 900px;
    float: right;
}

.station-reporting {
    margin-bottom: 40px;
    position: relative;
}

.station-reporting .graphs {
    overflow: hidden;
}

.station-reporting .graphs .box {
    width: 49%;
}

.station-reporting .graphs .boxLeft {
    float: left;
}

.station-reporting .graphs .boxRight {
    float: right;
}

.station-reporting .form {
    position: absolute;
    top: -2px;
    right: 0;
    font-size: 14px;
}

.station-reporting .form input {
    width: 100px;
    text-align: center;
    margin: 0 5px;
}

/* Grid for Boxes */
.grid-container.section-stats {
    margin: 40px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas:
    "consumption uses clients log failures";
}

.grid-container .grid-item {
    text-align: center;
    background: rgb(236, 236, 236);
    padding: 30px 0 30px 0;
    margin: 4px 4px;
}

.grid-container .grid-item .num {
    margin-bottom: 10px;
    font-size: 35px;
    font-weight: 800;
}

.consumption { grid-area: consumption; }
.uses { grid-area: uses; }
.clients { grid-area: clients; }
.log { grid-area: log; }
.failures { grid-area: failures; }

/* Grid for Boxes on Consumers/Cards */
.consumers-container.section-con-stats {
    margin: 40px 0;
}

.consumers-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "consumption charging charging chargingbalance"
    "usage stations requests errors";
}

.consumers-container .grid-item {
    text-align: center;
    background: rgb(236, 236, 236);
    padding: 30px 0 30px 0;
    margin: 4px 4px;
}

.consumers-container .grid-item .num {
    margin-bottom: 10px;
    font-size: 35px;
    font-weight: 800;
}

.consumers-container .consumption { grid-area: consumption; }

.consumers-container .chargingbalance { grid-area: chargingbalance; }

.consumers-container .charging { grid-area: charging; }

.consumers-container .usage { grid-area: usage; }

.consumers-container .stations { grid-area: stations; }

.consumers-container .requests { grid-area: requests; }

.consumers-container .errors { grid-area: errors; }
