/* VARS */

@font-face {
	font-family: Univia;
	src: url(../fonts/UniviaPro-Book.otf);
	font-weight: 350;
}

@font-face {
	font-family: Univia;
	src: url(../fonts/UniviaPro-Regular.otf);
	font-weight: normal;
}

@font-face {
	font-family: Univia;
	src: url(../fonts/UniviaPro-Medium.otf);
	font-weight: 500;
}

@font-face {
	font-family: Univia;
	src: url(../fonts/UniviaPro-Bold.otf);
	font-weight: bold;
}

:root {
	--evc-blue-dark: #212529;
	--evc-blue-gray: #778089;
	--evc-green-lime: #77C14B;
	--evc-red: #E8535C;
	--evc-gray-lines: #DAE3EC;
	--evc-gray-background: #EFF4F9;
	--evc-success: #7AB571;
	--evc-error: var(--evc-red);
	--evc-small-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.10);
	--evc-large-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
	--evc-gradient-blue: #00AACC;
	--evc-gradient-green: #77C14B;
	--evc-gradient-45: linear-gradient(135deg, var(--evc-gradient-blue) 0%, var(--evc-gradient-green) 100%);
	--filter-bar-height: 84px;
}

@keyframes fadeInOpacity {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* RESET */

html {
	box-sizing: border-box;
	font-size: 16px;
	font-family: Univia, sans-serif;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, strong {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: var(--evc-blue-dark);
}

ol, ul {
	list-style: none;
}

a {
	color: var(--evc-green-lime);
	text-decoration: none;
}

a:hover {
	color: var(--evc-blue-dark) !important;
}

a.link-button {
	display: inline-block;
	background-color: var(--evc-blue-dark);
	padding: 16px 25px 13px 25px;
	border-radius: 50rem;
	color: #fff;
	font-weight: 500;
	font-size: 0.875rem;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.10);;
	transition: background-color 0.125s linear;
	cursor: pointer;
}

a.link-button.light {
	background-color: white;
	color: var(--evc-blue-dark);
}

a.link-button:hover {
	color: #fff !important;
	background-color: var(--evc-green-lime);
}

a.icon-button {
	width: 36px;
	height: 36px;
	box-shadow: var(--evc-small-shadow);
	border-radius: 50rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

input[type="checkbox"] {
	cursor: pointer;
	appearance: none;
	margin: 0;
	background-color: #fff;
	font: inherit;
	color: currentColor;
	width: 28px;
	height: 28px;
	border: 1px solid var(--evc-gray-lines);
	border-radius: 10px;
	display: grid;
	place-content: center;
}

input[type="checkbox"]::before {
	content: "";
	width: 1em;
	height: 1em;
	transform: scale(0) rotate(8deg);
	transition: 150ms transform ease-in-out;
	box-shadow: inset 1em 1em white;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked {
	background: var(--evc-gradient-45);
	border: 1px solid transparent;
}

input[type="checkbox"]:checked::before {
	transform: scale(1)  rotate(8deg);
}

.charge-location-marker {
	border: 1px solid var(--evc-gray-lines);
	border-radius: 50rem;
}

/* UTILITIES */

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-duration: 0.15s;
}

/* BASIC LAYOUT */

html, body {
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	align-items: stretch;
	background-color: #fff;
}

nav {
	width: 292px;
	margin: 76px 0 0 0;
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

nav header {
	padding-left: 35px;
}

nav ol {
	margin-top: -140px;
}

nav li {
	display: table;
	margin: 0 0 25px 35px;
}

nav li a {
	display: flex;
	align-items: center;
	height: 46px;
	padding: 2px 18px 0 18px;
	border-radius: 50rem;
	color: var(--evc-blue-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	transition: color 0.05s linear, background-color 0.125s linear;
}

nav li.active a {
	background-color: var(--evc-blue-dark);
	color: #fff;
}

nav li.active a::before {
	background-color: #fff;
}

nav li a::before {
	content: "";
	position: relative;
	width: 24px;
	height: 24px;
	margin-top: -3px;
	background-repeat: no-repeat;
	margin-right: 10px;
	background-color: var(--evc-blue-dark);
	transition: background-color 0.05s linear;
}

nav li a:hover {
	background-color: var(--evc-green-lime);
	color: #fff !important;
}

nav li a:hover::before {
	background-color: #fff;
}

@media only screen and (max-height: 800px) {
	nav {
		margin-top: 20px;
	}
	
	nav ol {
		margin-top: 0;
	}
}

#nav-map a::before {
	mask-image: url("../images/nav-icon-map.svg");
}

#nav-list a::before {
	mask-image: url("../images/nav-icon-list.svg");
}

#nav-liked a::before {
	mask-image: url("../images/nav-icon-liked.svg");
}

#nav-info a::before {
	mask-image: url("../images/nav-icon-info.svg");
}

nav footer {
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
	text-align: center;
	color: var(--evc-blue-gray)
}

nav footer img {
	display: block;
	margin: 26px 0 0 0;
}

nav footer a {
	display: inline-block;
	margin: 49px 10px 54px 10px;
	color: var(--evc-blue-dark);
	font-weight: bold;
}

#app-download-prompt {
	display: none;
}

main {
	margin: 20px 20px 20px 0;
	flex-grow: 1;
	flex-shrink: 1;
	position: relative;
	border-radius: 40px;
	overflow: hidden;
}

#main-content {
	border: 1px solid var(--evc-gray-lines);
	border-radius: 40px;
	width: 100%;
	height: 100%;
}

#general-content {
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #00AACC 0%, #77C14B 30%, #00AACC 100%);
	padding: 20px 88px 0 88px;
	border-radius: 39px;
	color: var(--evc-blue-gray);
	font-size: 1.125rem;
}

#general-content:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0, white 350px);
	border-radius: 39px;
	border: 1px solid var(--evc-gray-lines);
}

#general-content-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 30px;
	overflow: auto;
	padding-bottom: 50px;
}

#general-content-inner > div:first-child {
	padding: 0 50px;
}

#general-content h1 {
	border-bottom: 1px solid var(--evc-gray-lines);
	padding: 40px 0 30px 0;
	margin-bottom: 30px;
}

#general-content h2 {
	margin-bottom: 0.25rem;
}

#general-content p {
	margin-bottom: 1.5rem;
}

#general-content ol h2 {
	font-size: 1.25rem;
	font-weight: 500;
}
#general-content ul {
	list-style-type: disc;
	margin-bottom: 2rem;
}

#general-content ul li {
	list-style-type: disc;
	margin: 0.75rem 0 1rem 50px;
}

details {
	position: absolute;
	z-index: 100001;
	right: -432px;
	width: 432px;
	height: 100%;
	background-color: #fff;
	box-shadow: var(--evc-small-shadow);
	transition: right 0.3s ease-in-out;
	overflow: auto;
}

details summary,
details summary::marker,
details summary::-webkit-details-marker {
	display: none;
}

details.open {
	right: 0;
}

#issue-report-toggle-wrapper
{
	display: none;
}

details.open #issue-report-toggle-wrapper
{
	display: block;
}

#main-content, #details-panel {
	opacity: 1;
	transition: opacity 0.2s ease-out;
}

#main-content.htmx-swapping, #details-panel.htmx-swapping {
	opacity: 0;
}

/* MAP */

#map-holder {
	position: absolute;
	left: -1px;
	top: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background-color: #74e2fc;
	display: flex;
	justify-content: center;
}

#map {
	width: 100%;
	height: 100%;
	opacity: 0;
}

#map-holder #filter-bar {
	position: absolute;
	top: 12px;
	border: 0;
	border-radius: 50rem;
	background-color: #fff;
	padding: 19px 30px 19px 39px;
	box-shadow: var(--evc-small-shadow);
}

.mapboxgl-ctrl-bottom-left {
	left: 10px !important;
	bottom: 10px !important;
}

.mapboxgl-ctrl-bottom-right {
	right: 10px !important;
	bottom: 10px !important;
}

.mapboxgl-ctrl-attrib {
	border-radius: 1rem;
	font-size: 0.7rem;
	margin: 5px !important;
	padding: 5px 5px 5px 10px !important;
	opacity: 0.75;
}

.mapboxgl-ctrl-attrib a {
	margin-right: 5px;
}

.mapboxgl-ctrl-attrib a:hover {
	text-decoration: none !important;
	color: var(--evc-blue-dark) !important;
}


/* LIST/LIKED */

#charge-location-list {
	width: 100%;
	height: 100%;
	overflow: auto;
}

#charge-location-list table {
	width: 100%;
	padding: 0;
	margin: 0 0 80px 0;
	border-collapse: collapse;
}

#charge-location-list.liked table {
	margin-bottom: 0;
}

#charge-location-list thead {
	display: none;
}

#charge-location-list tr {
	cursor: pointer;
	transition: background-color 0.125s linear;
}

#charge-location-list tr:hover {
	background-color: var(--evc-gray-background);
}

#charge-location-list td {
	border-bottom: 1px solid var(--evc-gray-lines);
	padding: 31px 36px 31px 36px;
}

#charge-location-list .name-address {
	width: 30%;
}

#charge-location-list .name-address strong {
	font-weight: 500;
	display: flex;
	align-items: center;
	min-height: 18px;
}

#charge-location-list .name-address img {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: -2px 0 0 5px;
}

#charge-location-list .name-address address {
	margin-top: 5px;
	color: var(--evc-blue-gray);
	font-size: 0.75rem;
	font-style: normal;
}

#charge-location-list .power {
	width: 30%;
	text-align: center;
}

#charge-location-list .power div {
	display: inline-block;
	border-radius: 50rem;
	background: var(--evc-gradient-45);
	padding: 5px 12px 4px 12px;
	color: white;
	font-weight: bold;
	font-size: 0.75rem;
}

#charge-location-list .power small {
	font-size: 0.625rem;
}

#charge-location-list .features {
	width: 30%;
}

#charge-location-list .features div {
	display: flex;
}

#charge-location-list .filter-icon {
	margin-right: 7px;
}

#charge-location-list .filter-accessibility label span {
	background-color: var(--evc-blue-dark);
}

#charge-location-list .filter-connector label span::before {
	background: var(--evc-gradient-45);
}

#charge-location-list .filter-connector.unavailable label span::before {
	background: var(--evc-red);
}

#charge-location-list .distance {
	width: 10%;
	font-size: 1.375rem;
	white-space: nowrap;
	text-align: end;
}

#charge-location-list .distance small {
	font-size: 1rem;
	color: var(--evc-blue-gray);
}

/* EMPTY STATES */

#empty-state {
	position: absolute;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #ffffff66;
}

#empty-state div:first-child {
	width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#empty-state.panel  div:first-child {
	box-shadow: var(--evc-large-shadow);
	background-color: white;
	border-radius: 20px;
	padding-top: 30px;
}

#empty-state img {
	width: 50px;
	height: 50px;
	box-shadow: var(--evc-large-shadow);
	padding: 8px;
	border-radius: 50rem;
	margin-bottom: 30px;
}

#empty-state p {
	color: var(--evc-blue-gray);
	margin-top: 20px;
}

#list-empty-stater-holder #empty-state.panel div:first-child {
	margin-top: calc(0px - (var(--filter-bar-height) * 2));

}

#empty-state.panel div:first-child div {
	width: 100%;
	display: flex;
	margin-top: 30px;
}

#empty-state.panel button {
	width: 50%;
	height: 60px;
	border: 0;
	background-color: transparent;
	font-size: 1rem;
	font-family: Univia, sans-serif;
	font-weight: 500;
	cursor: pointer;
	border-top: 1px solid var(--evc-gray-lines);
}

#empty-state.panel button:first-child {
	border-right: 1px solid var(--evc-gray-lines);
}

/* INFO */

#info-holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

#info-holder h1 {
	box-sizing: content-box;
	width: 100%;
	height: 74px;
	text-indent: -9999px;
	text-align: center;
	border-bottom: 1px solid var(--evc-gray-lines);
	background-image: url("../images/evc-logo.svg");
	background-repeat: no-repeat;
	background-position: center;
	padding: 73px 50px 65px 50px;
}

#info-holder section {
	width: 520px;
	padding: 0 30px
}

#info-holder h2 {
	margin-top: 35px;
	display: table;
	border-radius: 50rem;
	background: var(--evc-gradient-45);
	padding: 5px 12px 4px 12px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: bold;
}

#info-holder header {
	font-size: 1.875rem;
	margin: 2rem 0;
}

/* FILTER BAR & PANEL */

h2.filter {
	background-image: url(../images/filter-icon.svg);
	background-repeat: no-repeat;
	background-size: 24px 24px;
	padding: 2px 0 0 34px;
	font-size: 0.875rem;
	font-weight: 500;
	height: 24px;
	display: flex;
	align-items: center;
}

.filter-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.filter-icon label {
	display: block;
	width: 24px;
	height: 24px;
	overflow: hidden;
	box-sizing: content-box;
}


.filter-icon label span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50rem;
}

.filter-icon label span::before {
	background-color: white;
	display: inline-block;
	width: 100%;
	height: 100%;
	content: "";
	mask-size: 100% 100%;
}

.filter-power label span::before {
	mask-image: url("../images/filter-type-icon-power.svg");
}

.filter-connectors label span::before {
	mask-image: url("../images/filter-type-icon-connectors.svg");
}

.filter-operators label span::before {
	mask-image: url("../images/filter-type-icon-operators.svg");
}

.filter-availability label span::before {
	mask-image: url("../images/filter-type-icon-availability.svg");
}

.filter-accessibility label span::before {
	mask-image: url("../images/filter-type-icon-accessibility.svg");
}

.filter-connector-type1 label span::before {
	mask-image: url("../images/connector-type1.svg");
}

.filter-connector-type2 label span::before {
	mask-image: url("../images/connector-type2.svg");
}

.filter-connector-ccs1 label span::before {
	mask-image: url("../images/connector-ccs1.svg");
}

.filter-connector-ccs2 label span::before {
	mask-image: url("../images/connector-ccs2.svg");
}

.filter-connector-chademo label span::before {
	mask-image: url("../images/connector-chademo.svg");
}

.filter-connector-tesla label span::before {
	mask-image: url("../images/connector-tesla.svg");
}

#filter-bar {
	border-bottom: 1px solid var(--evc-gray-lines);
	margin-bottom: -1px;
	padding: 29px 0 30px 9px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.75rem;
	cursor: pointer;
	opacity: 0;
	max-height: var(--filter-bar-height);
}

#filter-bar img {
	display: block;
	width: 24px;
	height: 24px;
	background-color: red;
}

#filter-bar > div {
	display: flex;
	align-items: center;
}

#filter-bar label {
	margin-left: 10px;
	border-left: 1px solid var(--evc-gray-lines);
	padding-left: 10px;
	cursor: pointer;
}

#filter-bar label span {
	background: var(--evc-gradient-45);
}

#filter-bar .filter-power label,
#filter-bar .filter-connectors label,
#filter-bar .filter-operators label {
	margin-right: 10px;
}

#filter-bar .filter-power div,
#filter-bar .filter-operators div {
	margin-top: 3px;
}

#filter-bar-power-range i {
	color: var(--evc-blue-gray);
	font-style: normal;
}

#filter-bar-connectors .filter-icon label {
	border: 0;
	padding-left: 0;
}

#filter-bar-connectors .filter-icon label:first-child {
	margin-left: 0;
}

#filter-bar-connectors .filter-icon:last-child label {
	margin-right: 0;
}

#filter-bar-connectors .filter-icon label span {
	background: white;
}

#filter-bar-connectors .filter-icon label span::before {
	background-color: black;
}

#filter-panel {
	padding: 24px;
}

#filter-panel header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#filter-panel section {
	padding: 0 12px;
	position: relative;
}

#filter-panel h3 {
	margin-top: 53px;
	font-size: 1rem;
	font-weight: bold;
	position: relative;
	justify-content: start;
}

#filter-panel h3 label {
	margin: -3px 10px 0 0;
}

#filter-panel h3 label span {
	background: var(--evc-blue-dark);
}

#filter-panel h3 input[type="checkbox"],
#filter-panel h3 > span {
	position: absolute;
	right: 0;
}

#filter-panel p {
	color: var(--evc-blue-gray);
	padding: 7px 34px 0 34px;
	font-size: 0.875rem;
	font-weight: 350;
}

#filter-panel ul {
	margin-top: 14px;
	border: 1px solid var(--evc-gray-lines);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

#filter-panel li {
	width: 50%;
	box-sizing: border-box;
	border-top: 1px solid var(--evc-gray-lines);
	padding: 16px 15px 13px 15px;
	cursor: pointer;
	color: var(--evc-blue-gray);
	background-color: var(--evc-gray-background);
}

#filter-panel li.active {
	background-color: white;
	color: var(--evc-blue-dark);
}

#filter-panel li.active label span::before {
	background: var(--evc-blue-gray);
	opacity: 100%;
}

#filter-panel li:nth-child(1),
#filter-panel li:nth-child(2) {
	border-top: 0;
}

#filter-panel li:nth-child(odd) {
	border-right: 1px solid var(--evc-gray-lines);
}

#filter-panel .connector {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
}

#filter-panel .connector label {
	display: block;
	width: 50px;
	height: 50px;
	overflow: hidden;
	box-sizing: content-box;
	margin-bottom: 8px;
}

#filter-panel .connector label span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50rem;
	cursor: pointer;
}

#filter-panel .connector label span::before {
	background: var(--evc-blue-gray);
	opacity: 50%;
	display: inline-block;
	width: 100%;
	height: 100%;
	content: "";
}

#filter-panel .connector.active label span::before {
	background: var(--evc-gradient-45);
	opacity: 100%;
}

#filter-panel-power-range {
	display: grid;
	background-color: var(--evc-gray-lines);
	margin-top: 5px;
	border-radius: 50rem;
	position: relative;
	height: 34px;
	padding: 2px;
	box-sizing: border-box;
}

#filter-panel-power-range-label {
	font-weight: normal;
}

#filter-panel-power-range-label i {
	font-size: 0.75rem;
	font-style: normal;
}

#filter-panel-power-range-scale {
	margin-top: 12px;
	display: flex;
	justify-content: space-between;
	font-size: 0.625rem;
}


#filter-panel-power-range-scale span {
	width: 34px;
	text-align: center;
	color: var(--evc-blue-gray);
	display: flex;
	flex-direction: column;
}

#filter-panel-power-range-scale span:after {
	content: "";
	margin: 5px 0 0 48%;
	width: 1px;
	height: 8px;
	border-left: 1px solid var(--evc-gray-lines);
}

#filter-panel-power-range > span {
	position: absolute;
	background: var(--evc-gradient-45);
	width: 100%;
	height: 100%;
	border-radius: 50rem;
	content: "";
}

#filter-panel-power-range input {
	position: relative;
	grid-column: 1;
	grid-row: 2;
	appearance: none;
	pointer-events: none;
	background: none;
	margin: 0;
}

#filter-panel-power-range ::-webkit-slider-runnable-track {
	appearance: none;
	height: 100%;
	width: 100%;
}

#filter-panel-power-range ::-moz-range-track {
	background: none;
}

#filter-panel-power-range ::-webkit-slider-thumb {
	appearance: none;
	pointer-events: auto;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50rem;
	border: 10px solid white;
	background-color: var(--evc-blue-dark);
	box-shadow: none;
}

#filter-panel-power-range ::-moz-range-thumb {
	pointer-events: auto;
	cursor: pointer;
	width: 10px;
	height: 10px;
	transform: translate(0, -3px);
	border-radius: 50rem;
	border: 10px solid white;
	background-color: var(--evc-blue-dark);
}

#charge-location-detail-holder {
	padding: 24px;
}

#charge-location-detail-buttons {
	display: flex;
	justify-content: space-between;
}

#charge-location-detail-buttons a:hover {
	background-color: var(--evc-green-lime);
}

#charge-location-detail-liked-button.liked {
	background-color: rebeccapurple;	
}

#charge-location-detail-header {
	margin-top: 34px;
	padding: 0 12px;
	display: flex;
	flex-direction: column;
	align-items: start;
}

#charge-location-detail-header .provider-details-holder
{
	display:flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	width:100%;
}

#charge-location-detail-header .provider-address-holder {
	display:flex;
	flex-direction: column;
	margin: 0 0 22px 0;
}

#charge-location-detail-header h2 {
	font-size: 1.75rem;
}

#charge-location-detail-header address {
	margin: 5px 0 0 0;
	font-size: 0.75rem;
	font-style: normal;
	color: var(--evc-blue-gray);
}

#charge-location-detail-header div {
	display: flex;
}

#charge-location-detail-header span {
	display: flex;
	box-sizing: border-box;
	height: 30px;
	margin-right: 6px;
	border-radius: 50rem;
	padding: 1px 15px 0 15px;
	background-color: var(--evc-blue-dark);
	font-weight: bold;
	font-size: 0.75rem;
	color: white;
	align-items: center;
}

#charge-location-detail-header span:first-child {
	background: var(--evc-gradient-45);
	font-size: 1.125rem;
	padding-top: 3px;
}

#charge-location-detail-header span:first-child small {
	font-size: 0.75rem;
}

.charge-location-ports {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-sizing: border-box;
}

.charge-location-ports > li {
	box-shadow: var(--evc-small-shadow);
	border-radius: 10px;
	padding: 12px;
	width: fit-content;
	background-color: white;
}

.charge-location-ports h3 {
	margin-bottom: 10px;
	font-size: 0.625rem;
	text-transform: uppercase;
	color: var(--evc-blue-gray);
}

.charge-location-ports ul {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.charge-location-ports ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 170px;
}

.charge-location-ports ul li > div {
	display: flex;
	flex-direction: column;
}

.charge-location-ports ul li > span {
	width: 60px;
	height: 60px;
	border-radius: 50rem;
	background-color: var(--evc-green-lime);
}

.charge-location-ports ul li.unavailable > span {
	background-color: var(--evc-red);
}

.charge-location-ports span.connector-type {
	font-size: 0.875rem;
	font-weight: bold;
}

.charge-location-ports span.status {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--evc-green-lime);
	margin: 1px 0 3px 0;
}

.charge-location-ports ul li.unavailable span.status {
	color: var(--evc-red);
}

.charge-location-ports span.power {
	font-size: 0.75rem;
	color: var(--evc-blue-gray);
}

.charge-location-ports .filter-icon label {
	width: 33px;
	height: 33px;
}

#alerts-list
{
	position: absolute;
	bottom: 50px;
	width: 100%;
}

#alerts-list .alert {
	border-radius: 12px;
	margin: 0 auto;
	width: 80%;
	padding: 16px;
	font-size: 0.9em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--evc-small-shadow);
}

#alerts-list .alert-title
{
	font-weight: bold;
}

#alerts-list .alert-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

#alerts-list a {
	color: inherit !important;
	text-decoration: none;
}

#alerts-list .alert-close-btn
{
	cursor: pointer;
}
#alerts-list .alert-no-url
{
	cursor: default;
}

