@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
:root {
  --main-color: #2fa04a;
  --light-gradient: linear-gradient(
    90deg,
    rgb(178, 245, 138),
    rgb(223, 252, 105) 100%
  );
  --light-gradient-reverse: linear-gradient(
    90deg,
    rgb(223, 252, 105),
    rgb(178, 245, 138) 100%
  );
  --dark-gradient: linear-gradient(
    40.66deg,
    rgb(47, 160, 74),
    rgb(167, 241, 66)
  );
  --text-dark: #333333;
  --text-medium: #666666;
  --error-color: #f93232;
  --main-bg: #f3f6f9;
  --border-gray: #d3d3d3;
}
/* Reset styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul,
ul li {
  list-style: none;
}
address {
  font-style: normal;
}
input::-ms-clear {
  display: none;
}
button {
  background: none;
  font-size: inherit;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
legend {
  display: block;
}
input,
textarea,
button,
a,
i,
li,
label,
div {
  -webkit-tap-highlight-color: transparent;
}
/* end Reset styles */
/* SCROLL */
/*IE*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  * {
    scrollbar-face-color: #d1d8da;
    scrollbar-track-color: #dcd5d5;
    scrollbar-3dlight-color: #dcd5d5;
    scrollbar-darkshadow-color: #dcd5d5;
    scrollbar-arrow-color: #dcd5d5;
    /* -ms-overflow-style: -ms-autohiding-scrollbar;
      scrollbar-width: thin; */
    -ms-overflow-style: none; /* IE 10+ */
  }
}

/* for chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 5px;
  }
  ::-webkit-scrollbar-track {
    /* background-color: #e8e8e8; */
    background: none;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--color-border-gray);
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #c7c7c7;
  }
}
/* for firefox */
@-moz-document url-prefix() {
  * {
    /* scrollbar-width: thin; */
    scrollbar-width: none;
    scroll-behavior: smooth;
    scrollbar-color: var(--color-border-gray) none;
  }
}
/* end SCROLL  */
body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: var(--main-bg);
  color: var(--text-dark);
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
main {
  flex-grow: 1;
}
.container {
  max-width: 1392px;
  padding: 0 16px;
  margin: 0 auto;
}
.section {
  margin-bottom: 96px;
}
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
/* HEADER */
header {
  border-bottom: 1px solid var(--border-gray);
}
.header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  background: var(--main-bg);
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
  white-space: nowrap;
  margin-right: 8px;
  color: var(--text-medium);
}

.logo__img {
  width: 58px;
}
.logo__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo__name span {
  font-weight: 800;
  font-size: 1.5rem;
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.header__nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  max-width: max-content;
}
.header__nav > ul li {
  display: flex;
  align-items: center;
}
.header__nav li a {
  color: var(--text-dark);
  padding: 8px 0;
  font-weight: 500;
  white-space: nowrap;
}
.header__nav li a:hover {
  color: var(--main-color);
}
.header__nav-auth {
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gradient);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}
.header__nav-auth:hover {
  color: var(--main-color);
  background: var(--light-gradient-reverse);
}
.header__nav-auth img {
  width: 24px;
}
.header__nav-burger {
  width: 24px;
  height: 24px;
  padding: 4px 0;
  cursor: pointer;
  display: none;
  flex-shrink: 0;
}
.header__nav-burger span {
  height: 2px;
  background: var(--main-color);
  transition: all 0.2s;
}
.header__nav-burger span:last-child {
  margin-left: 8px;
}
.header__nav-burger.active span:last-child {
  display: none;
}
.header__nav-burger.active span:first-child {
  transform: translateY(10px) rotate(45deg);
}
.header__nav-burger.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.header__nav .header__settings {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  padding: 8px 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header__nav .header__settings li a {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav .header__settings li a img {
  width: 16px;
}
.header__nav .header__settings li a:hover {
  color: var(--main-color);
}
.header__nav .header__settings.active {
  display: flex;
  flex-direction: column;
}
/* end HEADER */
/* BUNNER */
.bunner {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 40% 60%;
}
.bunner__text-top {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  min-width: 480px;
}
.bunner__text-top h1 {
  font-size: 7.5rem;
  font-weight: 800;
  background: var(--dark-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.bunner__text-top h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}
.bunner__text-bottom {
  margin-top: 48px;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  min-width: 480px;
}
.bunner__text-bottom p {
  color: var(--text-medium);
  margin-bottom: 24px;
}
.bunner__btns {
  display: flex;
  gap: 24px;
}
.bunner__btns-more {
  padding: 18px 32px;
  background: var(--light-gradient);
  border-radius: 50px;
  font-weight: 500;
  color: var(--main-color);
  display: flex;
  gap: 12px;
}
.bunner__btns-more:hover {
  background: var(--light-gradient-reverse);
}
.bunner__btns-location {
  padding: 14px 32px;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  color: var(--main-color);
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}
.bunner__img {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.bunner__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 550px;
}
/* end BUNNER */
/* ADVANTAGES */
.advantages {
  padding: 56px;
  border-radius: 56px;
  background: #f9fbf6;
}
.advantages .section__title {
  margin-bottom: 40px;
}
.advantages__items {
  display: flex;
  justify-content: center;
  gap: 56px;
}
.advantages__item {
  flex-basis: 23%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  position: relative;
  z-index: 1;
}
.advantages__item-icon {
  position: relative;
  width: 120px;
  height: 120px;
  padding: 18px;
  background: #f9fbf6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.advantages__item-icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -2px;
  background: var(--light-gradient);
  border-radius: 50%;
  z-index: -1;
}
.advantages__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.advantages__item-text h6 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  white-space: nowrap;
}
.advantages__item-text p {
  text-align: center;
  color: var(--text-medium);
}
/* end ADVANTAGES */
/* ABOUT */
.about {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
}
.about__img {
  margin-right: 40px;
}
.about__img img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
  object-position: left center;
}
.about__text {
  flex-basis: 50%;
  flex-shrink: 0;
}
.about__text h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.about__text p {
  margin-top: 16px;
  line-height: 1.5;
}
/* end ABOUT */
/* MAP */
.map {
  margin-top: 56px;
  border-radius: 56px;
  overflow: hidden;
  position: relative;
}
.map__btns {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 0 32px;
  display: flex;
  gap: 16px 32px;
  justify-content: start;
}
.map__btns button {
  padding: 8px 32px;
  border-radius: 50px;
  border: 1px solid var(--text-dark);
  background: var(--main-bg);
  display: flex;
  gap: 12px;
  min-height: 58px;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}
.map__btns button.active {
  background: var(--light-gradient);
}
.map__btns button img {
  height: 40px;
}
/* MAP */
/* NEWS */
.news__container {
  position: relative;
}
.news__btn {
  position: absolute;
  top: 240px;
  font-size: 16px;
  padding: 16px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.news__btn span {
  padding: 10px;
  border: 1px solid rgba(47, 160, 74, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__btn span img {
  width: 10px;
  height: 10px;
}
.left-btn {
  left: -14px;
  display: none;
}
.right-btn {
  right: -14px;
}
.news__items {
  /* margin: 0 -20px; */
  width: 100%;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  user-select: none;
  scrollbar-width: none;
  border-radius: 24px;
}
.news__items::-webkit-scrollbar {
  display: none;
}
.news__items::-webkit-scrollbar {
  display: none;
}
.news__item-wrapper {
  padding: 0 20px;
  width: 33.333%;
  min-width: 320px;
  flex-shrink: 0;
}
.news__item {
  height: 100%;
  padding: 24px 24px 120px 24px;
  border-radius: 40px;
  background: #fbfbfb;
  position: relative;
  white-space: wrap;
}
.news__item-img {
  height: 240px;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 32px;
}
.news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item-text > p {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item-btn {
  position: absolute;
  left: 24px;
  bottom: 32px;
  padding: 16px 32px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
/* end NEWS */
/* FOOTER */
footer {
  border-top: 1px solid var(--border-gray);
}
footer > hr {
  border-top: 1px solid var(--border-gray);
}
.footer__top {
  padding: 56px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer__column .logo {
  margin-bottom: 8px;
}
.footer__column-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__column p,
.footer__column a {
  color: var(--text-medium);
}
.footer__contacts li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contacts a > img {
  width: 16px;
}
.footer__nav li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__contacts li a:hover,
.footer__nav li a:hover {
  color: var(--main-color);
}
.footer__apps {
  display: flex;
  gap: 16px;
}
.footer__apps img {
  height: 48px;
}
.footer__bottom {
  padding: 24px 0 32px 0;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 24px;
}
.footer__bottom a {
  color: var(--main-color);
}
/* end FOOTER */
/* MODAL */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding: 60px 24px;
  backdrop-filter: blur(2px) saturate(99%);
  -webkit-backdrop-filter: blur(3px) saturate(99%);
  background-color: rgb(101 101 101 / 25%);
  z-index: 1000;
}
.modal__wrapper.active {
  display: flex;
  justify-content: center;
  align-items: start;
}
.modal__container {
  position: relative;
}
.modal {
  max-width: 1360px;
  padding: 56px 40px;
  background: #fff;
  border-radius: 40px;

  /* max-height: 80vh; */
  /* overflow-y: scroll; */
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px;
  cursor: pointer;
}
.modal__body {
  display: flex;
  gap: 40px;
  max-height: 100%;
  overflow-y: scroll;
}
.modal__body-img {
  width: 370px;
  height: 230px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.modal__body-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal__title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.modal__article p {
  margin-top: 16px;
}
/* end MODAL */
/* LOGIN */
.login {
  /* background: rgba(243, 246, 249, 0.4) url(../img/login.png); */
  background: url(../img/login-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}
/* end LOGIN */
/* FORM */
.form__wrapper {
  padding: 24px;
  flex-basis: 750px;
}
.form {
  max-width: 700px;
  background: #fbfbfb;
  border-radius: 40px;
  padding: 56px 130px;
}
.form__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.form__input {
  margin-bottom: 24px;
}
.form__input input {
  width: 100%;
  padding: 16px 32px;
  border-radius: 32px;
  min-width: 200px;
  font-size: 1rem;
  background: inherit;
  border: 1px solid var(--border-gray);
}
.form__input input:focus {
  border: 1px solid var(--main-color);
}
.form__input input::placeholder {
  color: var(--text-medium);
}
.form__input .error {
  display: block;
  margin-top: 8px;
  padding: 0 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--error-color);
}
.form__input > label {
  display: block;
  padding-left: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.form__input select {
  width: 100%;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  background: inherit;
  border: 1px solid var(--border-gray);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: inherit;
  background-image: url(../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto;
}
.form__input select > option {
  border: none;
  background: var(--main-bg);
  padding-right: 8px;
}
.form__group {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.form__group > .form__input {
  flex-basis: 50%;
}
.form__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.gradient__btn {
  padding: 8px 32px;
  border-radius: 50px;
  background: var(--light-gradient);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.gradient__btn:hover {
  background: var(--light-gradient-reverse);
}
.border__btn {
  padding: 8px 32px;
  border-radius: 50px;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background-clip: padding-box;
  border: solid 2px transparent;
  color: var(--main-color);
}
.border__btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -2px;
  background: var(--light-gradient);
  border-radius: 50px;
  z-index: -1;
}
.border__btn:hover:before {
  background: var(--light-gradient-reverse);
}
.form__info {
  margin-top: 16px;
  text-align: center;
}
.form__info a {
  color: var(--main-color);
  cursor: pointer;
  font-weight: 700;
}
/* end FORM */
/* USER DATA */
.userdata {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 56px;
}
.userdata__block {
  flex-basis: 50%;
  padding: 34px 40px;
  background: #fbfbfb;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.userdata__block-bg {
  height: 200px;
  display: flex;
  justify-content: end;
}
.userdata__block-bg img {
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
.userdata__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.userdata__carbrend {
  color: var(--text-medium);
  margin-bottom: 40px;
}
.userdata__block .form__btns {
  justify-content: start;
}
.userdata__balance-label {
  color: var(--text-medium);
  margin-bottom: 8px;
}
.userdata__balance {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.userdata__block-history {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.userdata__block-history a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.userdata__block-history a:hover {
  color: var(--main-color);
}
/* end USER DATA */
/* TABLE */
.table__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 40px;
  margin-bottom: 32px;
}
.table {
  min-height: 50vh;
}
.table > table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
.table > table tr {
  border-bottom: 1px solid #ececec;
}
.table > table tr th,
.table > table tr td {
  text-align: left;
}
.table > table tr th {
  font-weight: 600;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.table > table tr td {
  padding: 16px;
  color: var(--text-medium);
}
.table > table tr:nth-child(2n) td {
  background: #fff;
}
.table > table tr th:first-child,
.table > table tr td:first-child {
  padding-left: 70px;
}
.table > table td span {
  display: none;
}
/* end TABLE */
/* CHARGING */
.charging {
  padding: 0 32px 32px 32px;
  background-image: url(../img/home-bg.png);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: right 32px bottom;
}
.charging__title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.charging__title img {
  width: 40px;
}
.charging__info {
  display: flex;
  gap: 40px;
}
.charging__info-img {
  width: 350px;
}
.charging__info-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.charging__info-data li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.charging__info-data li:not(:last-child) {
  margin-bottom: 16px;
}
.charging__info-data li > span {
  font-weight: 600;
  color: var(--text-medium);
}
.charging__info-data li > p {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
}
.charging__btns {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  position: relative;
  margin-bottom: 24px;
  z-index: 1;
}
a.charging__link {
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.charging__link:hover {
  color: var(--main-color);
}
/* end CHARGING */
.wrapper {
  margin-top: 56px;
  padding: 56px 0;
  background: #fbfbfb;
  border-radius: 40px;
}
.wrapper .form {
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .map__btns {
    gap: 24px;
  }
  .map__btns button {
    flex-basis: max-content;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }
}
@media (max-width: 1150px) {
  .bunner {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 1100px) {
  .news__item-wrapper {
    padding: 0 16px;
    width: 50%;
  }
  .footer__top {
    flex-wrap: wrap;
  }
  .footer__column {
    flex-basis: 45%;
  }
}
@media (max-width: 1000px) {
  .bunner__text-top h1 {
    font-size: 4rem;
  }
  .bunner__text-top h2 {
    font-size: 1.5rem;
  }
  .bunner__text-bottom {
    margin-top: 80px;
  }
  .advantages__items {
    flex-wrap: wrap;
  }
  .advantages__item {
    flex-basis: 40%;
  }
  .map__btns {
    padding: 0 16px;
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .map__btns button {
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 950px) {
  .modal__body {
    flex-wrap: wrap;
  }
  .modal {
    padding: 24px 24px 40px 24px;
  }
  .bunner {
    grid-template-columns: 100%;
  }
  .bunner__text-top {
    grid-column-end: 1;
    margin-bottom: 16px;
  }
  .bunner__img {
    grid-column-start: 1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .bunner__img img {
    max-height: 350px;
  }
  .bunner__text-bottom {
    grid-row-start: 3;
    grid-row-end: 4;
    margin-top: 32px;
  }
}
@media (max-width: 850px) {
  .about {
    flex-wrap: wrap;
  }
  .about__text {
    flex-basis: 100%;
    margin-top: 40px;
  }
  .about__img {
    flex-basis: 100%;
    margin-right: 0;
  }
  .about__img img {
    object-position: center;
    max-height: 300px;
  }
}
@media (max-width: 800px) {
  .table__title {
    margin-left: 32px;
  }
  .table > table tr th:first-child,
  .table > table tr td:first-child {
    padding-left: 32px;
  }
}
@media (max-width: 750px) {
  .userdata {
    flex-wrap: wrap;
  }
  .userdata__block {
    flex-basis: 100%;
  }
  .userdata__block-bg {
    display: none;
  }
}
@media (max-width: 700px) {
  .page-wrapper:has(.header__nav-burger.active) {
    padding-top: 94px;
  }
  header:has(.header__nav-burger.active) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
  }
  .header__nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header__nav {
    position: fixed;
    top: 94px;
    right: -100%;
    width: 100vw;
    height: 100vh;
    padding: 32px 0;
    flex-direction: column-reverse;
    justify-content: start;
    background: var(--main-bg);
    transition: right 0.4s;
    z-index: 1000;
  }
  .header__nav > ul {
    flex-direction: column;
  }
  .header__nav-burger.active ~ .header__nav {
    right: 0;
  }
  .header__nav .header__settings {
    display: block;
    position: relative;
    top: 0;
    order: -1;
    box-shadow: none;
    background: none;
  }
  .map__btns button {
    white-space: wrap;
  }
  .map__btns button {
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 0.7rem;
    flex-direction: column;
  }
  .map__btns button:last-child {
    max-width: 64px;
  }
  .footer__top {
    padding: 40px 0;
  }
  .footer__column {
    flex-basis: 100%;
    margin-left: 20%;
  }
  .charging {
    background-image: none;
  }
}
@media (max-width: 650px) {
  .news__item-wrapper {
    width: 100%;
  }
  .form {
    padding: 56px 32px;
  }
}
@media (max-width: 600px) {
  .modal__body-img {
    margin: 0 auto;
  }
  .section__title {
    font-size: 2rem;
  }
  .advantages {
    padding-left: 32px;
    padding-right: 32px;
  }
  .about__text h2 {
    font-size: 1.25rem;
  }
  .form__group {
    flex-wrap: wrap;
    gap: 0;
  }
  .form__group .form__input {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .modal__close {
    top: 8px;
    right: 8px;
  }
  .bunner__text-top,
  .bunner__text-bottom {
    min-width: 100%;
  }
  .bunner__btns {
    flex-wrap: wrap;
    gap: 16px;
  }
  .bunner__btns-more {
    text-align: center;
  }
  .bunner__btns-more,
  .bunner__btns-location {
    flex-basis: 100%;
    justify-content: center;
  }
  .advantages__item {
    flex-basis: 60%;
  }
  .footer__bottom {
    flex-wrap: wrap;
    padding-left: 20%;
  }
}
@media (max-width: 500px) {
  .modal__body-img {
    width: 100%;
  }
  .footer__column {
    margin-left: 0;
  }
  .footer__bottom {
    padding-left: 0;
  }
  .login {
    background: url(../img/login-mob.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .table > table thead {
    display: none;
  }
  .table > table tr {
    display: flex;
    flex-direction: column;
  }
  .table > table tr td:first-child {
    padding-left: 16px;
  }
  .table > table td {
    display: flex;
    gap: 16px;
  }
  .table > table tr td:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
  }
  .table > table td span {
    display: inline-block;
    font-weight: 700;
    font-size: 0.875rem;
    /* min-width: 20%; */
  }
  .charging {
    padding: 0 16px 24px 16px;
  }
  .charging__info {
    flex-wrap: wrap;
  }
  .charging__btns {
    flex-wrap: wrap-reverse;
  }
}
@media (max-width: 450px) {
  .news__item {
    padding: 16px 16px 104px 16px;
  }
  .userdata__block {
    padding: 32px 16px;
  }
}
@media (max-width: 400px) {
  .map__btns {
    padding: 0 8px;
  }
  .map__btns button {
    padding: 4px 2px;
    font-size: 0.6rem;
  }
  .map__btns button img {
    height: 32px;
  }
  .form {
    padding: 32px 16px;
  }
}
.camera-button {
  text-decoration: underline;
  color: #007bff; /* Цвет ссылки (можно изменить по желанию) */
  border: none;
  background: none;
  cursor: pointer;
}

.camera-button:hover {
  color: #0056b3; /* Цвет при наведении */
}