@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Mukta&display=swap");

@font-face {
  font-family: "Caps";
  src: url("../webfonts/Caps.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Norm";
  src: url("../webfonts/Norm.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Norm";
}
table {
  border-collapse: separate;
  text-indent: initial;
  border-spacing: 0;
}
:root {
  --lotion: #fafafa;
  --richBlack: #060b20;
  --graniteGray: #605d61;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background: var(--richBlack);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--richBlack);
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-bottom-5 {
  margin-bottom: 5px;
}
h1 {
  font-size: 14px;
}
h2 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 13px;
}
body {
  background-color: var(--lotion);
}
.container {
  width: 1200px;
  margin: auto;
}
#registrationErrorMessage,
#loginErrorMessage {
  font-size: 13px;
  color: red;
}
header {
  width: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  background-color: white;
}
.header-flex {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.width-70-p {
  width: 70%;
}
.header-flex a.logo img {
  float: left;
}

.header-flex .nav {
  display: flex;
  gap: 20px;
}
.header-flex .nav a {
  color: #a4a6aa;
  font-size: 13px;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 40px;
  letter-spacing: 0.2px;
  transition: 0.2s;
}
.header-flex .nav a:hover {
  color: white;
}
.header-flex .nav a.active {
  background-color: #1c1f39;
  color: white;
}
.header-flex .nav a i {
  margin-right: 4px;
}
.header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}
.desctop_nav {
  display: flex;
  gap: 20px;
}
.desctop_nav a {
  font-size: 13px;
  font-family: "Caps" !important;
  font-weight: bold;
  color: var(--richBlack);
}
.desctop_nav a:hover {
  color: #415ff2;
}

.header-flex .header-right .driver-wrap {
  color: var(--richBlack);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: bold;
  align-items: center;
  padding-right: 0px;
}
.header-flex .header-right .driver-wrap span {
  cursor: pointer;
  padding-right: 16px;
}
.header-flex .header-right .driver-wrap i {
  margin-right: 2px;
}
.header-flex .header-right .driver-wrap a {
  color: var(--richBlack);
}

section {
  padding: 30px 0;
}
section.new-car {
  background-color: var(--lotion);
  padding-top: 5px;
}
.wrapper-flex {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
.car-box-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.car-box-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.car-box {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  background-color: white;
  position: relative;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.car-box .car-img {
  height: 220px;
  width: 100%;
  float: left;
  overflow: hidden;
}
.car-box .car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.car-box .car-img img:hover {
  transform: scale(1.1);
}
.car-box .car-detal {
  padding: 18px 20px;
  float: left;
  width: 100%;
}
.car-box .car-detal .car-name {
  font-size: 14px;
  color: var(--richBlack);
  font-weight: bold;
}
.car-box .car-detal .car-info {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.car-box .car-detal .car-info .box {
  font-size: 13px;
  color: var(--graniteGray);
  text-align: center;
}
.car-box .car-detal .car-info .box i {
  margin-right: 3px;
}
.car-box .taxipark {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--richBlack);
  background: white;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 10px;
}
.car-box .taxipark i {
  margin-right: 2px;
}
.car-box .more-desc {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--richBlack);
  background: white;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 10px;
}
a.see-all-car {
  font-size: 13px;
  color: white;
  font-weight: Bold;
  background: #415ff2;
  padding: 16px 30px;
  border-radius: 10px;
}
.search-section {
  background-color: white;
}
.search-wrap {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  background-color: #e0e2e8;
  border-left: 1px solid #e0e2e8;
  border-right: 1px solid #e0e2e8;
}
.search-option {
  flex: 1;
  position: relative;
  border-left: 1px solid #e0e2e8 !important;
  border-top: 1px solid #e0e2e8 !important;
  border-bottom: 1px solid #e0e2e8 !important;
}
.search-option:first-child {
  border-left: none !important;
}
.search-option .search-title {
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 13px;
  font-size: 12px;
  font-weight: bold;
}
button.searchBtn {
  background-color: #415ff2;
  height: 60px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid #415ff2;
  color: white;
  font-size: 13px;
  font-weight: bold;
  width: 150px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.search-conteiner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-conteiner form {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-cars {
  margin-top: 20px;
}
.top-cars-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.top-cars-wrap .car-box {
  width: calc(33.33333% - 20px) !important;
  box-sizing: border-box;
  flex: auto;
  max-width: 380px;
}
.top-cars-wrap .car-box .car-img {
  height: 180px !important;
}
/*  */
.read-more-section {
  background-color: var(--lotion);
}
.car-wrap-flex {
  display: flex;
  gap: 20px;
  position: relative;
}
.car-wrap-grid {
  display: grid;
  gap: 0;
  position: relative;
}
.car-img-carusel {
  width: 70%;
}
.car-img-carusel img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.preferredHeight {
  max-height: 360px;
}
.lSSlideWrapper {
  height: 360px;
}
.lSSlideOuter .lSPager.lSGallery img {
  border-radius: 10px;
  height: 70px;
}
.car-info-box {
  width: 340px;
  position: fixed;
  top: 100px;
  transition: top 0.5s;
}

.car-info-box .car-bg_flex {
  width: 340px;
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.car-info-box h1 {
  font-size: 16px;
}
.car-info-box .car-info {
  width: auto;
  overflow: overlay;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
}
.car-info-box .car-info .box {
  font-size: 13px;
  color: var(--graniteGray);
  text-align: center;
}
.car-info-box .car-info .box i {
  margin-right: 3px;
}
.car-condition {
  background-color: white;
  border-radius: 10px;
  padding: 24px 0;
  display: grid;
  text-align: center;
  gap: 10px;
  width: -webkit-fill-available;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.car-condition span.title {
  font-size: 13px;
  font-weight: bold;
}
.car-condition i {
  margin: auto;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 26px;
  line-height: 40px;
}
.car-condition i.fa-sun {
  background-color: #ff4700;
}
.car-condition i.fa-handshake {
  background-color: #0095ff;
}
.car-condition i.fa-percent {
  background-color: #04b96e;
}
.car-condition i.fa-clock {
  background-color: #00ffb7;
}
.car-condition i.fa-key {
  background-color: #8000ff;
}
.car-condition i.fa-business-time {
  background-color: #ffe100;
}
.car-condition i.fa-xmark {
  background-color: #ff0000;
}

.car-condition i.fa-moon {
  background-color: #4a4a4a;
}
.car-condition i.fa-taxi {
  background-color: #159db3;
}
.car-condition i.fa-m {
  background-color: #eb190e;
}
.car-condition i.fa-b {
  background-color: #2fd78c;
}
.car-condition i.fa-y {
  background-color: #ffcb00;
}
.car-condition span.desc {
  font-size: 14px;
  padding: 0 20px;
}
.car-condition-info {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}
.car-condition:hover .car-condition-info {
  background: #060b20;
  padding: 18px 20px;
  color: white;
  line-height: 20px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.car-description {
  font-size: 16px;
  margin-top: 20px;
  height: auto;
}
.car-description p {
  margin-top: 10px;
}
.car-more-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  font-size: 14px;
  display: grid;
  gap: 6px;
  width: 370px;
  flex: 1;
}
.car-more-info .card {
  display: flex;
}
.car-more-info i {
  margin: auto 0;
  color: var(--graniteGray);
  border-radius: 26px;
  width: 20px;
  text-align: center;
  margin-right: 8px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.car-more-info span.day-name {
  width: 70px;
  float: left;
  font-size: 13px;
  color: var(--graniteGray);
}
.car-more-info span.day-title {
  width: 90px;
  float: left;
  margin-left: 30px;
  font-size: 13px;
}
.date-name {
  display: flex;
  justify-content: end;
  font-weight: bold;
  color: var(--graniteGray);
}
.worck-time-box {
  flex: initial;
}
.worck-conditions {
  width: 100%;
  float: left;
  margin-top: 5px;
}
.worck-conditions h2 {
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}
.worck-conditions .desc {
  font-size: 13px;
  margin-bottom: 1px;
}
.worck-conditions .desc span {
  color: var(--graniteGray);
}
.pos-absolut-bottm-0 {
  bottom: 0px;
  position: absolute;
  width: 100%;
}
.contact-info {
  margin-bottom: 20px;
  border: 1px solid #415ff2;
  padding: 14px 20px;
  border-radius: 10px;
  letter-spacing: 0.4px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}
.contact-info i {
  color: #415ff2;
  margin-right: 5px;
}
.contact-info .phone-index {
  color: var(--graniteGray);
}
.contact-info .phone-text {
  font-size: 12px;
  color: #415ff2;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 17px;
  float: right;
}
.contact-info a {
  color: var(--richBlack);
}
.contact-info .phone-number {
  display: none;
  user-select: none;
}
.contact-info .active {
  display: contents;
}
.worck-conditions .fa-exclamation {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: #ffffff;
  text-align: center;
  line-height: 20px;
  margin-left: 5px;
  font-size: 11px;
  color: #db1f1f;
}
.reservation-btn-wrap {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}
.reservation-btn-wrap button {
  height: fit-content;
  background: #415ff2;
  border: none;
  padding: 16px 22px;
  font-size: 13px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: bold;
  user-select: none;
}
.reservation-btn-wrap .invite_btn {
  height: fit-content;
  background: #415ff2;
  border: none;
  padding: 16px 22px;
  font-size: 13px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  font-family: Caps;
  user-select: none;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: var(--richBlack);
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  line-height: normal;
  font-size: 12px;
  white-space: normal;
  overflow-y: auto;
  font-family: norm;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.1s;
  bottom: 100%;
  left: 50%;
  width: 200px;

  transform: translateX(-50%);
}
.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}
.car-worck-statistic {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--lotion);
  font-size: 12px;
  font-family: norm;
  display: grid;
  text-align: left;
  gap: 10px;
}
.car-worck-statistic .title {
  font-weight: bold;
}
.car-worck-statistic .cost {
  padding: 8px 14px;
  border-radius: 10px;
  color: #060b20;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 15px;
  border: 1px solid #fafafa;
  background-color: var(--lotion);
  flex: 1;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}
.car-worck-statistic .cost span {
  color: var(--graniteGray);
  font-size: 11px;
}
.car-worck-statistic .cost i {
  float: right;
}
.active-blur {
  filter: blur(1.2px);
}
.taxopark-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  font-size: 14px;
  display: grid;
  width: 100%;
}
.taxopark-header {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
.taxopark-header img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 4px solid #fafafa;
}
.justif-space-bitween {
  justify-content: space-between;
}
.read-more-taxopark a {
  color: #0095ff;
  font-size: 12px;
  font-weight: bold;
}
.taxopark-map {
  border-radius: 10px;
  overflow: hidden;
}
.taxopark-map-no {
  margin-top: 20px;
}

.car-statisitc-box {
  background-color: #eef1fa;
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  gap: 6px;
  width: 300px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.car-statisitc-box .cost {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--richBlack);
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.4px;
  font-size: 15px;
  background-color: #e6e9f3;
  flex: 1;
  justify-content: space-between;
  display: flex;
  transition: 0.1s;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}
.car-statisitc-box .cost span {
  font-size: 12px;
  font-family: Caps;
}
.car-statisitc-box .cost:hover {
  background-color: #415ff2;
  color: white;
}
.cost.active {
  background-color: #415ff2;
  color: white;
}
.statistic-text {
  padding: 8px 0 2px 0;
  font-size: 13px;
}
.statistic-wrap {
  width: 100%;
  height: 242px;
  margin-top: 14px;
  overflow-y: auto;
}
.statistic-day-box {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 8px 0;
  border-top: 1px solid #e6e9f3;
}
.statistic-disable {
  display: none;
}
.statistic-welcome-mesage {
  display: block;
  text-align: center;
  margin-top: 10px;
}
.statistic-welcome-mesage .fa-exclamation {
  margin-top: 40px;
  font-size: 20px;
  color: #db1f1f;
  background: #e6e9f3;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
}
.display-none {
  display: none;
}
.reed-all-car {
  float: right;
  font-size: 13px;
  color: #415ff2;
  letter-spacing: 0.1px;
  text-align: right;
}
.car-box-width {
  max-width: 267px;
}
.car-img-height {
  height: 160px !important;
}
.registration-link a {
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.4px;
  cursor: pointer;
}
.car-header-mobile {
  display: none;
}
.registration-btn-mobile {
  text-align: center;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 5px;
  color: #415ff2;
  cursor: pointer;
}
/* პოპუფ */
/* Popup */
.adcard-popup {
  position: fixed;
  padding: 0 20px !important;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(27, 27, 27, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.adcard-popup.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1003;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.adcard-popup-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 5em auto;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px 30px 10px 30px;
  box-shadow: 0px 2px 31px 8px rgb(0 0 0 / 4%);
  backface-visibility: hidden;
  -webkit-transform: translateY(140px);
  -moz-transform: translateY(140px);
  -ms-transform: translateY(140px);
  -o-transform: translateY(140px);
  transform: translateY(140px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.is-visible .adcard-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.adcard-popup-container h2 {
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0 0 0;
}
.adcard-popup-container input {
  padding: 14px 15px 14px 40px;
  margin: 10px 0 5px 0;
  border-radius: 10px;
  outline: none;
  width: 100%;
  font-family: Norm;
  font-size: 14px;
  background-color: #fafafa;
  overflow: hidden;
  font-weight: normal;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  border: 1px solid var(--lotion);
  color: #222222;
}
.adcard-popup-container input:focus {
  border: 1px solid #415ff2;
  font-weight: bold;
}
.adcard-popup-container button {
  width: 100%;
  height: 50px;
  background: #415ff2;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 15px 0;
  letter-spacing: 0.6px;
}
.adcard-popup-container button:hover {
  color: #fff;
  -webkit-box-shadow: 0 2px 4px rgb(15 34 58 / 30%);
  box-shadow: 0 2px 4px rgb(15 34 58 / 30%);
}
select option {
  font-family: Norm;
}
.image-container {
  display: none;
}
.adcard-popup-container form {
  display: grid;
}
.input-wrap {
  position: relative;
  margin-top: 10px;
}
.input-wrap span {
  position: absolute;
  margin-top: 25px;
  margin-left: 20px;
  color: var(--graniteGray);
  font-weight: bold;
  font-size: 14px;
}
.btn-flex-end {
  display: contents;
  justify-content: end;
}
.checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.checkbox input {
  width: auto;
  box-shadow: none;
  margin-right: 3px;
}
.checkbox a {
  color: #415ff2;
  cursor: pointer;
}
.open-info-mobile-btn {
  display: flex;
  position: fixed;
  bottom: 20px;
  justify-content: center;
  width: 100%;
  z-index: 100;
}
.open-info-mobile-btn span {
  width: auto;
  text-align: center;
  padding: 16px 20px;
  font-family: Caps;
  background-color: #415ff2;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.open-info-mobile-btn {
  display: none;
}
.close-btn-mobile {
  display: none;
}
.worck-detal-icon {
  position: absolute;
  right: 20px;
  top: 145px;
}
.worck-detal-icon i {
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 26px;
  line-height: 25px;
  font-size: 9px;
  text-align: center;
  margin-left: 2px;
}
.worck-detal-icon .fa-m {
  background-color: #eb190eb3;
}
.worck-detal-icon .fa-y {
  background-color: #ffcb00b3;
}
.worck-detal-icon .fa-b {
  background-color: #2fd78cb3;
}
.worck-detal-icon .fa-taxi {
  background-color: #159db3b3;
}

.profile-btn {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e0e2e8;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.4px;
}
.profile-btn:hover {
  background-color: var(--lotion);
}
.profile-btn .fa-angle-down {
  font-size: 10px;
  margin-right: 0px;
  margin-left: 3px;
  color: var(--graniteGray);
  transition: transform 0.2s ease-in-out;
}
.profile-drop {
  position: absolute;
  overflow: hidden;
  top: 65px;
  right: 0;
  background: white;
  width: 250px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 10px;
  z-index: 111;
}

.profile-drop img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.profile-drop .user-fullname {
  font-size: 13px;
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #e0e2e8;
  align-items: center;
  gap: 10px;
}
.profile-drop .user-fullname a {
  padding: 0;
}
.profile-drop .user-fullname a:hover {
  background: none !important;
}
.logOutMobile {
  margin-top: 0px !important;
}
.logOutMobile a {
  margin-top: 0 !important;
  border-top: none !important;
}
.profile-drop .user-nav {
  display: grid;
  margin-top: 8px;
}
.mobile-nav {
  display: none !important;
}
.profile-drop a {
  float: left;
  text-align: left;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: normal;
  font-family: Norm !important;
  color: var(--richBlack);
}
.profile-drop a:hover {
  background-color: var(--lotion);
}
.profile-drop .logout {
  border-top: 1px solid #e0e2e8;
  margin-top: 8px;
  padding-top: 10px;
  padding-left: 15px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sms-send-btn {
  position: absolute;
  right: 17px;
  top: 24px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  color: #415ff2;
}

/* მომხმარებლის გვერდი */
.mypage-cotainer {
  margin: auto;
  width: 800px;
  padding-top: 30px;
}
.mypage-cotainer h1 {
  text-align: center;
}
section.mypage-section {
  background-color: var(--lotion);
  padding-top: 5px;
}
.step-flex {
  margin-top: 25px;
  display: flex;
  gap: 30px;
}
.step-flex .choseWrap {
  background-color: white;
  cursor: pointer;
  flex: 1;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.step-flex .choseWrap:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.taxiparkWrap {
  background-color: white;
  flex: 1;
  border-radius: 10px;
  padding: 30px;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.formGroupFlex {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.formGroup {
  flex: 1;
}
.formGroup input {
  width: 100%;
  float: left;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 13px;
  color: var(--richBlack);
  outline: none;
}
.formGroup input:focus {
  border: 1px solid #415ff2;
  font-weight: bold;
}
.formGroup label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 7px;
  float: left;
}
.formGroup input[type="file"] {
  display: none;
}
.formGroup .custom-file-upload {
  width: 100%;
  float: left;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px 14px;
  font-family: Norm;
  cursor: pointer;
  font-weight: normal !important;
  font-size: 13px;
  color: var(--richBlack);
}
.uploaded-image {
  margin-top: 10px;
  border-radius: 10px;
}
button.save {
  background-color: #415ff2;
  height: 50px;
  border-radius: 10px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #415ff2;
  color: white;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.alert-success {
  position: fixed;
  z-index: 1000;
  background: #0080009c;
  color: white;
  bottom: 50px;
  right: 50px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
}
.alert {
  position: absolute;
  top: 42px; /* Adjust as needed */
  left: calc(50% - 175px);
  transform: translate(-50%, -50%);
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-family: Norm;
  font-size: 14px;
  transition: opacity 0.3s ease;
  height: fit-content;
  max-width: 350px;
  text-align: center;
}
@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.alert-success {
  background: #07a941c4;
  animation: slideIn 0.3s forwards;
}

.alert-success.hide {
  animation: slideOut 0.3s forwards;
}

.align-item-center {
  align-items: center;
}
.taxipark-grid {
  display: grid;
  gap: 15px;
}
.taxipark-wrap a {
  display: flex;
  justify-content: space-between;
}
.taxipark-flex-2 {
  flex: 2 !important;
}
.taxipark-wrap a.go-taxipark {
  border-radius: 10px;
  padding: 20px;
  background-color: white;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  width: 100%;
  border-radius: 10px;
  color: var(--richBlack);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.6px;
  font-family: Caps;
}
#login {
  padding-right: 16px !important;
}
#bookingCar {
  display: contents;
}
.alreadyBooked {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 1px;
}
.booking-btn {
  height: fit-content;
  background: #415ff2;
  border: none;
  padding: 16px 22px;
  font-size: 13px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: bold;
  user-select: none;
  text-align: center;
}
.pagination-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
.pagination-links strong {
  width: 10px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  color: var(--richBlack);
  margin: 0 10px;
}
.pagination-links a {
  display: none;
}

a[rel="next"],
a[rel="prev"] {
  display: block;
  font-size: 13px;
  color: var(--richBlack);
  font-weight: Bold;
  border: 2px solid #e0e2e8;
  width: 44px;
  height: 40px;
  line-height: 36px;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: 0.2s;
}

a[rel="next"]:hover,
a[rel="prev"]:hover {
  border: 2px solid #415ff2;
}
.pagination-links a .pagination-links a:hover {
  color: #415ff2;
}

.my-profile-btn-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.my-profile-btn-wrap .myProfileBtn {
  background-color: white;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}
.myProfileBtn i {
  color: #636363;
  margin-right: 2px;
}
.myProfileBtn.active {
  background-color: #415ff2;
  color: white;
}
.myProfileBtn.active i {
  color: var(--lotion);
}
.my-profile-cars-wrap .my-profile-cont {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.my-profile-cars-wrap .my-profile-cont .title {
  font-size: 13px;
  color: var(--richBlack);
  font-weight: bold;
  margin-bottom: 2px;
}
.my-profile-cars-wrap .my-profile-cont .title-norm {
  font-size: 15px;
  color: var(--richBlack);
}
.my-profile-cars-wrap .my-profile-cont span {
  font-size: 11px;
}
.my-profile-cars-wrap {
  flex: 1;
}
.my-car-info-cont {
  background: #e9edff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: grid;
  justify-content: space-between;
  flex: 1;
}
.my-car-img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 3px solid white;
}
.my-car-info-flex {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
}
.my-car-info-cont .my-car-info-flex .title {
  font-size: 15px;
}
.my-car-gap {
  display: grid;
  gap: 2px;
}
.my-car-gap a.title {
  font-weight: bold;
  color: var(--richBlack);
}
.job-info {
  margin-top: 10px;
}
.worck-status {
  font-size: 13px;
  font-weight: bold;
}
.job-info .worck-status span {
  float: right;
  font-weight: normal;
  font-size: 13px;
}
.job-info .worck-date {
  margin-top: 5px;
  width: 100%;
  font-size: 13px;
}
.driver-profile-wrap {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  display: flex;
  background: white;
  padding: 30px;
  border-radius: 10px;
  justify-content: space-between;
}
.driver-profile-wrap .profile-flex {
  display: flex;
  gap: 20px;
}
.my-profile-cont .card {
  display: grid;
  gap: 5px;
  flex: 1;
}
.profile-wrap-flex {
  display: flex;
  gap: 20px;
}
.table-box {
  padding: 0;
  background-clip: border-box;
  width: 100%;
  float: left;
}
.table-box table tr td a {
  color: var(--graniteGray);
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
}

.table-box table {
  width: 100%;
  float: left;
  border-bottom: 1px solid var(--lotion);
  border-right: 1px solid var(--lotion);
}
.table-box table th i {
  float: right;
  margin: 3px 0 0 0;
}
.table-box table th {
  color: var(--graniteGray);
  font-weight: normal;
  font-size: 13px;
  height: 30px;
  padding: 15px 15px 13px 15px;
  text-align: left;
  cursor: pointer;
  font-family: "Norm";
  background-color: white;
  border-left: 1px solid var(--lotion);
  border-top: 1px solid var(--lotion);
  border-bottom: 1px solid var(--lotion);
}
.table-box table td {
  color: var(--graniteGray);
  font-weight: normal !important;
  font-size: 13px;
  height: 30px;
  padding: 15px 15px 14px 15px;
  text-align: left;
  border-left: 1px solid var(--lotion);
  font-family: Norm;
  background-color: #e1e1e182;
}
.trhover {
  background: none;
  transition: 0.15s all ease;
}
.trhover:hover {
  background: #e1e1e14a;
  transition: 0.15s all ease;
}
.table-box table td a {
  transition: 0.3s;
  padding: 12px 2px;
}
.table-box table td a:hover {
  color: var(--richBlack);
}
.table-box .icon-box {
  border-right: none;
  width: 30px;
}
.table-box table td span {
  font-size: 12px;
}
#myProfileForm {
  margin: auto;
}
#myProfileForm .btnWrap {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}
#myProfileForm .btn {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  background: white;
  padding: 24px;
  font-size: 13px;
  font-weight: bold;
}
#myProfileForm .start-work-text {
  font-size: 14px;
  max-width: 400px;
  margin: auto;
  margin-top: 20px;
}
#myProfileForm .start-work-text a {
  color: #415ff2;
  text-decoration: underline;
}
#myProfileForm .start-work-text b {
  font-size: 13px;
  margin-bottom: 3px;
  display: inline-flex;
}
.profile-img-border {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 2px solid #e0e2e8;
  overflow: hidden;
}
.profile-img-border img {
  width: 60px;
  height: 100%;
  object-fit: cover;
}
.work-status-signal {
  position: absolute;
  color: var(--richBlack);
  background: white;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 1;
  margin: 20px;
}
.searchBtnMob {
  background-color: #415ff2;
  height: 60px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid #415ff2;
  color: white;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  line-height: 60px;
  display: none;
}

/* Add */
.container-add {
  /* width: 700px; */
  width: 800px;
  margin: auto;
}
.add-section {
  background-color: white;
}
.add-conteiner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.add-section h2 {
  font-size: 14px;
  /* margin-top: 3px; */
  text-align: left;
  margin-bottom: 5px;
  display: block;
  font-family: Norm;
}
.add-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add-header .title span {
  font-size: 12px;
  display: block;
}
.add-btn {
  padding: 14px 20px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #415ff2;
  color: white;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.add-btn i {
  margin-left: 10px;
}
.add-btn:hover {
  color: white !important;
}

.add-conteiner {
  float: left;
}
.add-wrapper-border {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.add-wrapper-border .title h2 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-align: left;
  color: var(--richBlack);
  border-bottom: 1px solid #e0e2e8;
}
.add-wrapper-border .title h2 span {
  font-size: 12px;
  font-weight: normal;
  float: right;
}
.add-wrapper-border .title h2 span .fa-exclamation {
  color: red;
}
.addimages {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: 13px;
  font-weight: bold;
  color: #415ff2;
  background-color: #ebeefd;
  border-radius: 10px;
  cursor: pointer;
}
.addimages i {
  margin-right: 2px;
}
.image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.image-list .image {
  display: none;
}

.image-list div {
  width: calc(20% - 8px);
  margin-bottom: 10px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.image-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

.image-list .image .delete-btn {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.delete-btn .fa-trash-can {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: white;
  border-radius: 50px;
  font-size: 13px;
  color: var(--richBlack);
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.delete-btn .fa-trash-can:hover {
  background: #415ff2;
  color: white;
}
.car-option-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.car-input-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.input-for {
  display: grid;
  gap: 5px;
}
.input-for label,
.option-for label {
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  font-family: Norm;
  color: var(--graniteGray);
}
.input-for input {
  font-size: 13px;
  font-family: Norm;
  border-radius: 10px;
  border: 1px solid #e0e2e8;
  padding: 12px 14px;
  outline: none;
  font-weight: bold;
}
.option-for {
  display: grid;
  gap: 5px;
}
.option-for select {
  font-size: 13px;
  font-family: Norm;
  border-radius: 10px;
  border: 1px solid #e0e2e8;
  padding: 12px 14px;
  font-weight: bold;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.option-for select option {
  font-size: 14px;
  font-weight: bold;
}
.input-for input::placeholder {
  color: var(--richBlack);
  opacity: 1;
}
.input-for input::-ms-input-placeholder {
  color: var(--richBlack);
}

.car-radiobtn-wrap {
  margin-top: 3px;
}
.radiobtn-for {
  width: auto;
  display: flex;
  margin-right: 20px;
  gap: 5px;
}
.radiobtn-for label {
  color: var(--charlestonGreen);
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 5px;
}
.radiobtn-for input[type="checkbox"],
.radiobtn-for input[type="radio"] {
  float: left;
  width: auto;
  margin-right: 5px;
}
.requery {
  color: red;
}
.car-radiobtn-wrap .checkbox-label {
  font-size: 14px;
  font-family: Norm;
  border-radius: 10px;
  display: inline-grid;
  border: 1px solid #e0e2e8;
  padding: 10px 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.car-radiobtn-wrap .radio-label {
  font-size: 14px;
  font-family: Norm;
  border-radius: 10px;
  display: inline-grid;
  border: 1px solid #e0e2e8;
  padding: 10px 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.checkbox-label.checked,
.radio-label.checked {
  border-color: #415ff2;
  font-weight: bold;
}
.input-for-dan {
  font-size: 13px;
}
.car-input-wrap-public {
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-wrapper-border textarea {
  border: 1px solid #e0e2e8;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  outline: none;
  height: 120px;
}
.margin-bottom-15 {
  margin-bottom: -15px;
}
.my-car-list {
  display: flex;
  gap: 15px;
  max-height: 60px;
  position: relative;
}
.my-car-list img {
  width: 100px;
  border-radius: 10px;
}
.list-wrapper-border {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.my-car-list .desc h1 {
  margin-bottom: 2px;
}
.my-car-list .desc {
  display: grid;
  gap: 8px;
  padding: 8px 0;
}
.my-car-list .desc .option {
  display: flex;
  gap: 15px;
}
.my-car-list .desc .option a {
  color: var(--richBlack);
  font-size: 13px;
  font-weight: bold;
}
.my-car-list .desc .option a:hover {
  color: #415ff2;
  font-size: 13px;
  font-weight: bold;
}
.autopark_logo-upload label {
  font-size: 13px;
  font-family: Norm;
  border-radius: 10px;
  border: 1px solid #e0e2e8;
  padding: 12px 14px;
  outline: none;
  font-weight: bold;
  display: block;
  cursor: pointer;
  flex: 1;
}
.autopark_logo-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  gap: 10px;
}
.autopark_logo-upload .images {
  width: 50px;
  height: 50px;
  border: 1px solid #e0e2e8;
  border-radius: 50px;
  overflow: hidden;
}
.autopark_logo-upload .images img {
  width: 50px;
  height: 50px;
}
.car_publish-btn {
  position: absolute;
  right: 0;
  top: 12px;
  background: #e0e2e83d;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid #e0e2e8;
  color: var(--graniteGray);
  font-family: Caps;
}
.car_publish-btn:hover {
  border: 2px solid #415ff2;
}

.footer {
  width: 100%;
  background-color: white;
  box-shadow: rgba(27, 31, 35, 0.04) 1px 0px 0px,
    rgba(255, 255, 255, 0.25) 1px 0px 0px inset;
}
.footer-flex {
  display: flex;
  padding: 18px 10px 15px;
  justify-content: space-between;
  align-items: center;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  color: var(--richBlack);
  font-size: 20px !important;
}
.footer-social a .fa-square-phone {
  color: var(--richBlack);
}
.footer-social a .fa-square-whatsapp {
  color: var(--richBlack);
}
.footer-social a .fa-square-facebook {
  color: var(--richBlack);
}
.footer-copyright {
  font-size: 12px;
}
.footer-by {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-by a {
  font-family: Bungee;
  font-size: 22px;
  color: #111111;
  line-height: 0;
}
.owl-nav {
  display: none;
}

.driver-edit-form {
  display: flex;
  gap: 30px;
  align-items: center;
}

.driver-edit-form .profile-flex {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.marginN {
  margin-top: 0;
}
.registration-step_2 {
  display: none;
}
.registration-step {
  margin-top: 15px;
}
.accordion_title {
  cursor: pointer;
}
.accordion_text {
  display: none;
}
/*  */
.partniorship_btn {
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--richBlack);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

.rules_and_contact_card {
  display: none;
}

div:where(.swal2-container) div:where(.swal2-actions) {
  margin: 0 !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #e5e5e5 !important;
  color: var(--richBlack) !important;
  font-family: Caps;
  font-weight: bold;
  outline: none !important;
  font-size: 13px !important;
  letter-spacing: 0.8px !important;
  border-radius: 10px !important;
  padding: 10px 30px !important;
  margin-top: 15px !important;
  box-shadow: none !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
  background-color: none !important;
}
div:where(.swal2-container) h2:where(.swal2-title) {
  font-family: Norm;
  font-size: 18px !important;
}
div:where(.swal2-container) .swal2-html-container {
  font-family: Norm;
  font-size: 16px !important;
  margin-top: 8px !important;
}
div:where(.swal2-container) div:where(.swal2-popup) {
  width: 330px !important;
  border-radius: 10px !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px !important;
}

.location-box {
  position: fixed;
  background-color: #00000057;
  width: 100%;
  height: 100vh;
  top: 0;
  display: none;
  z-index: 2002;
  overflow-y: scroll;
}
.location-box #step-one,
.location-box #step-two,
.location-box #step-trii,
#gldani,
#didube,
#vake,
#isani,
#krwanisi,
#mtawminda,
#nadzaladevi,
#saburtalo,
#samgori,
#chugureti,
#shemogareni,
#sxva {
  padding: 20px;
  max-width: 400px;
  margin: auto;
  background: white;
  margin-top: 20px;
  border-radius: 10px;
}
.chose-btn {
  background-color: #e7e7e7;
  padding: 12px 20px;
  margin-top: 10px;
  font-family: Norm;
  font-size: 14px;
  cursor: pointer;
  color: black;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 10px;
}
.checked_btn {
  display: block;
}
.checked_btn_mobile {
  display: none;
}
.checked_btn_mobile .reg_driver_btn {
  line-height: 60px;
  padding: 0 20px;
  background: #415ff2;
  color: white;
  width: 100%;
  margin-top: 20px;
  height: 60px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  font-family: Caps;
  letter-spacing: 1px;
  border-radius: 10px;
  cursor: pointer;
}
.acardeon_title {
  cursor: pointer;
}
.acardeon_text {
  display: none;
}
/* Responcive */
@media (max-width: 1200px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container {
    width: 100%;
  }
  .search-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.new-car {
    padding-left: 20px;
    padding-right: 20px;
  }
  .car-info-box {
    width: 295px;
  }
}

/*Mobile*/
@media (max-width: 967px) {
  header {
    position: fixed;
    z-index: 111;
  }
  .search-section {
    padding-top: 100px;
  }
  .my-profile-btn-wrap .myProfileBtn {
    text-align: center;
  }
  .my-profile-btn-wrap .myProfileBtn i {
    margin-bottom: 3px;
  }
  .mypage-cotainer {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .top-cars-wrap .car-box {
    width: calc(100% - 20px) !important;
    max-width: 100%;
  }
  .formGroupFlex {
    display: grid;
  }
  .add-section {
    margin-top: 50px;
  }
  .search-wrap {
    display: grid;
    border-bottom: 1px solid #e0e2e8;
    border-top: none;
  }
  .search-conteiner {
    display: grid;
    gap: 0;
  }
  .checked_btn {
    display: none;
  }
  .checked_btn_mobile {
    display: block;
  }
  button.searchBtn {
    width: 100%;
    margin-top: 0;
  }
  .search-option {
    border-bottom: none !important;
    border-left: none !important;
  }
  .registration-link {
    display: none;
  }
  .car-img-carusel {
    width: 100%;
  }
  .read-more-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 90px;
  }
  .lSSlideWrapper {
    height: 220px;
  }
  .car-header-mobile {
    width: 100%;
    display: block;
    position: unset;
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .width-70-p {
    width: 100%;
    display: grid !important;
  }
  .taxopark-box {
    width: 100%;
  }
  .wrapper-flex {
    display: grid;
  }
  .car-box-width {
    max-width: 100%;
  }
  .car-statisitc-box {
    width: 100%;
  }
  .read-more-taxopark {
    display: none;
  }
  .worck-time-box {
    margin-top: 0px;
  }
  .mobile-hide-element {
    display: none;
  }
  .statistic-wrap {
    height: auto;
    max-height: 250px;
  }
  .mobile-flex {
    display: flex;
  }
  .date-name {
    margin-left: 70px;
    justify-content: unset;
  }
  .car-header-mobile .car-info {
    width: 100%;
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .car-header-mobile .car-info .box {
    font-size: 13px;
    color: var(--graniteGray);
    text-align: center;
  }
  .car-header-mobile .car-info .box i {
    margin-right: 3px;
  }
  .car-more-info {
    padding: 20px;
    width: 100%;
  }
  .taxopark-box {
    padding: 20px;
  }
  .adcard-popup-container {
    padding: 10px 20px;
  }
  .input-wrap {
    margin-top: 5px;
  }
  .btn-flex-end {
    display: contents;
  }
  .car-mobile-contact-box {
    display: none;
    position: absolute;
    z-index: 20000;
  }
  .car-info-box {
    width: 100%;
    position: fixed;
    top: auto !important;
    left: 0;
    z-index: 30000;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    bottom: -5px;
    box-shadow: rgba(50, 50, 93, 0.2) 0 14px 6px 20px,
      rgba(0, 0, 0, 0.3) 0px 30px 43px -37px;
  }
  .reservation-btn-wrap {
    margin-top: 0px;
  }
  .car-more-info span.day-title {
    width: auto;
  }
  .open-info-mobile-btn {
    display: flex;
  }
  .close-btn-mobile {
    display: block;
    position: absolute;
    margin-top: -85px;
    width: 100%;
    text-align: center;
  }
  .close-btn-mobile span {
    background-color: #060b20a3;
    display: inline-block;
    line-height: 50px;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 16px;
    border-radius: 50px;
    margin-right: 40px;
  }
  .car-condition-info {
    font-size: 14px !important;
  }
  .search-conteiner form {
    display: grid;
  }

  .mypage-cotainer {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  #myProfileForm .btnWrap {
    display: grid;
  }
  .profile-wrap-flex {
    display: grid;
  }
  .searchBtnMob {
    display: block;
  }
  .containSearchMob {
    display: none;
  }
  .container-add {
    width: 100%;
    padding: 0 20px;
  }
  .mobile_profile-wrap {
    margin-top: 70px;
    float: left;
    width: 100%;
  }
  .desctop_nav {
    display: none;
  }
  .mobile-nav {
    display: grid !important;
  }
  .logOutMobile a {
    border-top: 1px solid #e0e2e8 !important;
    margin-top: 8px !important;
  }
  .rules_and_contact_card {
    display: grid;
    gap: 10px;
  }
  .rules_and_contact_card .partniorship_btn {
    margin: 0 !important;
  }
  .marginN {
    margin: 0px !important;
  }
  .reservation-btn-wrap {
    margin-top: 10px;
  }
  .hiden-mobile {
    display: none !important;
  }
  .lSSlideWrapper {
    height: auto;
  }
}
