.Container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px 20px;
	font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.Container p {
	margin-bottom: 0;
}

@media screen and (max-width: 760px) {
	.Container {
		padding: 10px 7px;
	}
}

.Control-btns {
	display: grid;
	/*grid-template-columns: 1fr 1fr;*/
	gap: 10px;
	margin-bottom: 15px;
	/*max-width: 400px;*/
	justify-content: flex-end;
}

.Control--available-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 10px;

	/*background-color: #84f30e;*/
	background-color: #f3f7fa;
	color: #5a5a5a;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);

	font-family: inherit;
	font-size: 17px;
	font-weight: 500;

	text-align: center;
	border-radius: 4px;
	border: none;

	line-height: 1.87;
	letter-spacing: 0.06em;

	transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);

	cursor: pointer;
}

.Control--available-btn:hover {
	background-color: rgb(112, 217, 0);
}

.Control--available-btn__all {
	background-color: #ddd;
	/*background-color: #fcfb00;*/
}

.Control--available-btn__all:hover {
	background-color: rgb(252, 185, 0);
	/*background-color: #ddd;*/
}

.Control--ac-btn, .save_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 10px;

	/*background-color: #84f30e;*/
	background-color: #f3f7fa;
	color: #5a5a5a;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);

	font-family: inherit;
	font-size: 17px;
	font-weight: 500;

	text-align: center;
	border-radius: 4px;
	border: none;

	line-height: 1.87;
	letter-spacing: 0.06em;

	transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);

	cursor: pointer;
}

.Control--ac-btn:hover,
.save_btn:hover {
	background-color: rgb(112, 217, 0);
}

.Control--ac-btn__dc {
	background-color: #fcfb00;
}

.Control--ac-btn__dc:hover {
	background-color: #e9e80c;
}

.charge-header {
	display: grid;
	grid-template-columns: 1fr 4fr;
	gap: 20px;
}

.active-chargers {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
}

.active-chargers h3 {
	color: #707272;
}

.active-chargers span {
	color: #0097db;
	font-size: 36px;
	font-weight: bold;
}

.Points-wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1500px;
}


.Table {
	width: 100%;
	height: auto;
	margin: 15px auto 30px;
	table-layout: fixed;
	border-collapse: collapse;
	text-align: left;
	color: #333;
	border: 1px solid #eaebed;
	border-radius: 5px;
	overflow: hidden;
}

@media screen and (max-width: 760px) {
	.Table {
		border-bottom: none;
		/*table-layout: unset;*/
		border: 0;
	}
}

@media screen and (max-width: 460px) {
	.Table {
		font-size: 13px;
	}
}

@media screen and (max-width: 360px) {
	.Table {
		font-size: 11px;
	}
}

.Table-caption {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 500;
}

.Table-caption span {
	font-size: 18px;
	display: block;
}

.Table caption br {
	display: none;
}

.caption-second {
	margin-bottom: 15px;
	font-size: 14px;
}

@media screen and (max-width: 760px) {
	.Table-caption {
		font-size: 22px;
		color: #000;
		font-weight: bold;
	}
}

.Table-head--row {
	border-bottom: 1px solid #f8f8f8;
	background-color: #f3f7fa;
}

.Table-head--header {
	color: #707272;
	padding: 15px 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Table-head--header.show-more-header {
	width: 50px;
}

.Table-body--row {
	width: 100%;
}

.Table-body {
	background: #fff;
}

.Table-body--data {
	overflow: visible;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #eee;
	padding-top: 7px;
	padding-bottom: 7px;
}

.Table-body--data__right {
	/* text-align: center; */
}

@media screen and (min-width: 760px) {

	.Table-head--row th:first-child {
		width: 350px;
	}

	.Table-body--data {
		padding: 15px 5px;
	}
}

@media only screen and (max-width: 760px) {

	td,
	tr {
		display: block;
	}

	thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	tr {
		/*border: 1px solid #f8f8f8;*/
	}

	tr+tr {
		margin-top: 1.5em;
	}

	td {
		border: none;
		position: relative;
		/*padding-left: 50%;*/
		text-align: left;
	}
	td.Table-body--data.connector {
		position: absolute;
		bottom: 0;
		right: 5px;
	}

	td:before {
		content: attr(data-label);
		display: inline-block;
		line-height: 1.5;
		/*margin-left: -100%;
		width: 100%;*/
		white-space: nowrap;
		text-transform: capitalize;
		padding: 5px;
		font-weight: 700;
	}

	.charge-header {
		grid-template-columns: auto;
		gap: 10px;
	}

	.active-chargers {
		padding: 10px;
	}

	.Control-btns {
		grid-template-columns: 1fr 1fr;
	}

	.Control--available-btn,
	.Control--ac-btn {
		font-size: 14px;
	}

	.Table-head--header.show-more-header {
		width: 40px;
	}

	.Table-body {
		display: block;
		margin-bottom: 10px;
		box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
	}

	.show-more-td {
		position: absolute;
		right: 0;
		top: 6px;
		padding: 0;
		border-bottom: 0;
	}

	.show-notification-td {
		position: absolute;
		right: 4em;
		top: 6px;
		padding: 0;
		border-bottom: 0;
	}

	.Table-body--row {
		display: grid;
		grid-template-columns: 3fr 1fr;
		position: relative;
	}

	.Table-body--link {
		padding-left: 10px;
		display: grid;
		align-items: center;
	}
	.Table-body--link .mobile-only {
		color: #000;
		font-weight: normal;
	}

	.Table-body--link:before {
		display: none;
	}

	main .Table-caption {
		font-size: 18px;
	}
	main .Table-caption span {
		font-size: 14px;
	}

	/*main .Table-body .Table-body--row {border-bottom: 2px solid #cbcbcb;}*/
	main .Table {
		margin-top: 0;
	}
}

.Table-body--available {
	background-color: #84f30e;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

.Table-body--charging {
	background-color: #fcfb00;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

.Table-body--suspendedEV {
	background-color: #ff7777cc;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

.Table-body--faulted {
	background-color: #ff7777cc;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

/*.Table-body--lt-unavailable {*/
/*	background-color: red;*/
/*	border-radius: 15px;*/
/*	display: inline;*/
/*	padding: 7px 10px;*/
/*	color: #fff;*/
/*}*/

.Table-body--lt-unavailable {
	background-color: transparent;
	border-radius: 0;
	display: inline-flex;
	padding: 7px 10px;
	color: red;
}

.Table-body--data svg{
	width: 24px;
}

.Table-body--unavailable {
	background-color: #ff8928;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

.Table-body--finishing {
	background-color: #9fd9ffd1;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

.Table-body--preparing {
	background-color: #f1f1f1;
	border-radius: 15px;
	display: inline;
	padding: 7px 10px;
	color: #696d6d;
}

.Table-body--link {
	color: #70a2c3;
	font-weight: 700;
	transition: color 300ms ease-in-out;
	text-decoration: none;
}

.Table-body--link:hover {
	color: #548eb4;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

#root {
	height: 100%;
}

body {
	margin: 0;
	font-family: "Poppins", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif, -apple-system, BlinkMacSystemFont;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding: 0;
	margin: 0;
}

input {
	outline: none;
}

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

@keyframes pulse {
	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);
	}
}

.Table-body--open-modal-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	width: 60px;
	height: 40px;

	background-color: transparent;

	font-size: 18px;

	text-align: center;
	border: none;
	color: rgb(150, 150, 150);

	transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);

	cursor: pointer;
}


.Table-body--open-modal-btn:hover {
	color: rgb(130, 130, 130);
}

.Table-body--open-modal-btn>i {
	pointer-events: none;
}


.backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: scroll;
}

@media screen and (max-width: 767px) {
	.backdrop {
		padding: 93px 15px;
	}
}

.is-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.is-hidden .modal {
	transform: scale(0.9);
	visibility: visible;
}

@media screen and (min-width: 768px) {
	.is-hidden .modal {
		transform: translate(-50%, -50%) scale(0.9);
	}
}

body.modal-details-open,
body.modal-notification-open {
	overflow: hidden;
}

.modal {
	width: 100%;
	transform: scale(1);
	transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	background-color: #ffffff;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14),
		0px 2px 1px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	padding: 25px 20px;
	min-height: 163px;
}

@media screen and (max-width: 420px) {
	.modal-list {
		min-height: 286px;
	}
}

@media screen and (min-width: 768px) {
	.modal {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1);
		max-width: 560px;
	}


}

@media screen and (max-width: 1199px) {
	.modal {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}
}

.modal__button-close {
	position: absolute;
	top: 4px;
	right: 4px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	padding: 6px;
	/* border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%; */
	cursor: pointer;
	background-color: transparent;
	border: none;

	color: rgb(150, 150, 150);
	transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__button-close:hover {
	color: rgb(130, 130, 130);
}


.modal-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 1.5em 3em;
}

@media screen and (max-width: 420px) {
	.modal-list {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 678px) {
	.modal-list {
		margin: 1.5em 0 0;
		column-gap: 20px;
	}
}

.modal-item {
	display: grid;
	gap: 2px;

}

.modal-item-title {
	font-size: 13px;
	color: rgb(130, 130, 130);
}

.modal-item-text {
	color: rgb(78, 134, 185);
	font-weight: 700;
}

.capitalize {
	text-transform: capitalize;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	border: none;
	background-color: transparent;
}

@media screen and (min-width: 768px) {
	.spinner {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
}

.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #188ce8 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.modal-header {
	text-align: center;
	color: rgb(78, 134, 185);
	font-weight: 700;
}

input.phone_number {
	width: 100%;
	height: 3em;
	margin-bottom: 1em;
}

select.country_code {
	height: 3em;
	margin-right: 1em;
}

.flex {
	display: flex;
}

.notification-btn {
	color: #fcb900;
}

