.g-20 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.gx-44 {
  --bs-gutter-x: 44px;
}
.gy-25 {
  --bs-gutter-y: 25px;
}
.header-dash {
  position: fixed;
  border-color: var(--white);
  border-bottom: 1px solid #ececec;
  z-index: 10;
  width: 100%;
  background-color: var(--white);
}

.header-dash__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0;
}

.header-dash-left {
  display: flex;
  flex: auto;
  align-items: center;
  margin-right: 10px;
}

.header-dash-right {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-dash-left > *:not(:last-child) {
  margin-right: 10px;
}

.header-dash__item > *:not(:last-child) {
  margin-right: 20px;
}

.header-dash-right > .header-dash__item:not(:last-child) {
  border-right: 1px solid #ececec;
  padding-right: 20px;
  margin-right: 20px;
}

.header-dash__item {
  display: flex;
  align-items: center;
}

.header-dash__link {
  display: flex;
}
.header-dash__link--ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  /* background-color: var(--light-grey2); */
  border: 1px solid var(--light-grey2);
  border-radius: 8px;
  padding: 6px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.header-dash__link:hover .header-dash__link--ico {
  background-color: var(--light-grey2);
}
.header-dash__link.active .header-dash__link--ico {
  background-color: var(--light-grey2);
}

.header-dash__link--info {
  display: flex;
  flex-direction: column;
}

.header-dash__link--info-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #b7b7b7;
}

.header-dash__link--info-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.header-dash-avatar {
  display: flex;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dash-avatar img {
  width: 100%;
  height: 100%;
}

.header-dash-search {
  display: flex;
  flex: auto;
  max-width: 500px;
  width: 100%;
}

.header-dash-search .search-container {
  display: flex;
  flex: auto;
  width: 100%;
}

.header-dash-search .input-wrapper {
  background-color: var(--light-grey2);
  width: 100%;
  flex: auto;
}

.search-toggle {
  display: none;
  padding: 8px;
  background-color: var(--light-grey2);
  border-radius: 8px;
}

ul.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

ul.breadcrumb li {
  display: inline;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--defaultTextColor);
}

ul.breadcrumb li + li:before {
  padding: 8px;
  content: "/\00a0";
  opacity: 0.5;
  color: var(--defaultTextColor);
}

ul.breadcrumb li a {
  font-weight: 400;
  opacity: 0.5;
}

.notifications-drop-dialog {
  margin-top: 12px;
  background-color: var(--white);
  filter: drop-shadow(0px 0px 1px rgba(26, 32, 36, 0.32))
    drop-shadow(0px 8px 16px rgba(91, 104, 113, 0.24));
  border-radius: var(--defaultRaduis);
  z-index: 15;
}

.notifications-drop-dialog::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/cloud-arrow.svg");
  height: 8px;
  width: 14px;
  top: -7px;
  right: 68px;
}

.btn-notification {
  display: flex;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 8px;
}

.notifications-drop.dropdown-open .btn-notification {
  background-color: var(--light-grey2);
}

.notifications-drop__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
}

.notifications-drop__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.notifications-drop__body {
  padding-left: 16px;
  padding-right: 16px;
}

.notifications-drop-item {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.notifications-drop-dialog .notifications-drop-item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.notifications-drop-item__img {
  border: 1px solid #ececec;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  margin-right: 14px;
  overflow: hidden;
  padding: 8px;
  background-color: var(--white);
}

.notifications-drop-item__img img {
  width: 100%;
  height: 100%;
}

.notifications-drop__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #ececec;
}

.notification {
  position: relative;
  display: flex;
}

.notification:after {
  content: "";
  box-sizing: content-box;
  display: flex;
  position: absolute;
  top: -2px;
  right: -1px;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border: 2px solid var(--white);
  border-radius: 300px;
  background-color: var(--danger);
  color: var(--white);
}

.dropdown__body {
  background-color: var(--white);
  filter: drop-shadow(0px 0px 1px rgba(26, 32, 36, 0.32))
    drop-shadow(0px 8px 16px rgba(91, 104, 113, 0.24));
  z-index: 100;
}

.dropdown.dropdown-open .dropdown-btn .ico {
  transform: rotate(180deg);
}

.dropdown-list {
  border-radius: 8px;
  margin-top: 16px;
}

.dropdown-list li {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.dropdown-list li a {
  width: 100%;
  padding: 6px 8px;
}

.border-between > * {
  border-right: 1px solid var(--light-grey);
}

.account-menu {
  margin-top: 12px;
  background-color: var(--white);
  filter: drop-shadow(0px 0px 1px rgba(26, 32, 36, 0.32))
    drop-shadow(0px 8px 16px rgba(91, 104, 113, 0.24));
  border-radius: var(--defaultRaduis);
  z-index: 15;
}

.account-menu::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/cloud-arrow.svg");
  height: 8px;
  width: 14px;
  top: -7px;
  right: 12px;
}

.account-menu {
  padding: 10px;
  width: 270px;
}

.account-menu__header {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-grey2);
  margin-bottom: 12px;
}

.account-menu__header .header-dash-avatar {
  margin-right: 8px;
}

.account-menu__list li:not(:last-child) {
  margin-bottom: 8px;
}

.account-menu__link {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding: 6px 8px;
}

.account-menu__link:hover {
  background-color: var(--light-grey2);
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  border-radius: 8px;
}

.account-menu__link .ico {
  margin-right: 8px;
}

.bg-after-gradient {
  position: relative;
  background-color: transparent;
}
.bg-after-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: linear-gradient(139.1deg, #131515 0%, rgba(19, 21, 21, 0) 100%),
    url(../img/love-car.jpg), #131515;
  z-index: -1;
  opacity: 0.5;
  background-size: cover;
}
.bg-after-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: linear-gradient(139.1deg, #131515 0%, rgba(19, 21, 21, 0) 100%),
    linear-gradient(0deg, #131515, #131515);
  z-index: -2;
}

.check-label.check-label--filled .check:after {
  background: url("../img/icon/icon-check-white.svg") no-repeat center center /
    16px;
}
.check-label.check-label--filled input:checked + .check {
  background-color: var(--primary);
}

.icon-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey2);
  width: 20px;
  height: 20px;
  border-radius: 300px;
}
.icon-count span {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--defaultTextColor);
  opacity: 0.5;
}
.active-tab .icon-count {
  background-color: var(--defaultTextColor);
}
.active-tab .icon-count span {
  color: var(--white);
  opacity: 1;
}
.card-trip__date {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.card-trip__indicator {
  width: 12px;
  height: 12px;
  background-color: var(--danger);
  border: 2px solid var(--white);
  border-radius: 300px;
}
.card-trip__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.card-trip__passengers {
    display: flex;
    align-items: center;
}
.card-trip__avatar {
    border: 2px solid var(--white);
    box-sizing: content-box;
}
.card-trip__passengers > *:not(:last-child){
    margin-right: -12px;
}
.trip-chat {
  display: flex;
  flex-direction: column;
  background-color: var(--light-grey2);
  border-radius: 12px;
  height: calc(100vh - 164px);
  width: 100%;
}
.trip-chat .card-trip__avatar {
  flex-shrink: 0;
  filter: drop-shadow(0px 0px 1px rgba(26, 32, 36, 0.32)) drop-shadow(0px 1px 2px rgba(91, 104, 113, 0.32));
}
.trip-chat__body {
  display: flex;
  flex-direction: column-reverse;
  flex: auto;
  overflow: auto;
  padding: 20px 24px 0;
  width: 100%;
}

.trip-chat__body::-webkit-scrollbar {
  width: 4px;
}

.trip-chat__body::-webkit-scrollbar-track {
  background: transparent;
}

.trip-chat__body::-webkit-scrollbar-thumb {
  background-color: rgba(26, 32, 36, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  width: 2px;
}

.trip-chat__body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(26, 32, 36, 0.6);
}
.trip-chat__message {
  display: flex;
  align-items: start;
  width: 100%;
}
.trip-chat__message:not(:last-child) {
  margin-bottom: 20px;
}
.trip-chat__username {
  margin-right: 10px;
  /* max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}
.trip-chat__message-time {
  white-space: nowrap;
}
.trip-chat__username,
.trip-chat__message-time {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  display: block;
  color: var(--defaultTextColor);
  opacity: 0.5;
}

.trip-chat__message-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--defaultTextColor);
  word-break: break-all;
}
.trip-chat__footer {
  padding: 20px 24px;
}
.trip-chat__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 1px 2px rgba(91, 104, 113, 0.32);
  border-radius: 300px;
  background-color: var(--white);
  padding: 0 14px 0 10px;
}
.trip-chat__footer-avatar {
  width: 30px;
  height: 30px;
  display: flex;
  flex-shrink: 0;
  border-radius: 300px;
}
.trip-chat__footer-avatar img {
  width: 100%;
  height: 100%;
}
.trip-chat__input {
  display: flex;
  flex: auto;
  align-items: center;
  resize: none;
  height: 46px;
  padding: 13px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--defaultTextColor);
}
.trip-chat__input::placeholder {
  color: #828282;
}
