@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
  font-family: "Outfit", sans-serif !important;
}

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

a {
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

table th,
table td {
  vertical-align: middle;
  text-wrap: nowrap;
  padding: 15px !important;
}

table td {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.dashboard_menu {
  background: var(--primary-color);
  overflow: hidden;
  border-radius: 0;
  border-right: 1px solid var(--primary-color);
  min-height: 100%;
}

.dasboard_header {
  padding: 30px 0px 20px 0;
  text-align: center;
}

.dasboard_header .dasboard_header_img {
  background-color: #fff;
  border: 8px solid #fff;
  box-shadow: 0px 0px 10px #3c3c3c38;
  width: 140px;
  height: 140px;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.dasboard_header .dasboard_header_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dasboard_header .dasboard_header_img label {
  display: block;
  position: absolute;
  bottom: 0;
  right: 5px;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0px 0px 10px #3c3c3c38;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
}

.dasboard_header h2 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 5px;
  margin-top: 15px;
  text-align: center;
}

.dashboard_menu ul li a {
  text-align: left;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  display: block;
  transition: all 0.3s linear 0s;
  background: none !important;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 0px 0px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  text-transform: capitalize;
  position: relative;
}

.dashboard_menu ul li a span {
  display: inline-block;
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  line-height: 50px;
}

.dashboard_menu ul li a.active,
.dashboard_menu ul li a:hover,
.dashboard_menu ul li a.active span,
.dashboard_menu ul li a:hover span {
  background: #fff !important;
  color: var(--primary-color) !important;
}

.db_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.db_head .db_inr_hd h4 {
  color: #fff;
  margin-bottom: 0;
}

.edit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--primary-color);
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--primary-color);
}

.edit-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.inner-card-body {
  padding: 20px;
}

.custom-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.common-form .form-label {
  color: var(--black-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.common-form .form-control,
.common-form .form-select {
  min-height: 50px;
  border-radius: 4px;
  box-shadow: none !important;
}

.profile-box small {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.custom-card {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

.custom-card-header {
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
}

.custom-card-body {
  padding: 20px;
}

.user_dashboard .dash-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

.user_dashboard .dash-widget .value h6 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  color: var(--black-color);
  margin: 0;
}

.user_dashboard .dash-widget .value p {
  font-size: 16px;
  line-height: 28px;
  color: #444;
  font-weight: 400;
  margin: 0;
}

.user_dashboard .dash-widget .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.user_dashboard .dash-widget.bx1 .icon {
  background-color: #1ba100;
}

.user_dashboard .dash-widget.bx2 .icon {
  background-color: #0092dd;
}

.user_dashboard .dash-widget.bx3 .icon {
  background-color: #ff00ba;
}

.user_dashboard .dash-widget.bx4 .icon {
  background-color: #ff005a;
}

.theme-btn.btn-sm,
.theme-outline-btn.btn-sm {
  padding: 6px 12px !important;
}

.my-_rides .nav-tabs {
  margin-bottom: 20px;
  border: 0;
  gap: 15px;
}

.my-_rides .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}

.my-_rides .nav-tabs .nav-link {
  width: 100%;
  border: 1px solid #e3af5a !important;
  border-radius: 8px;
  color: #e3af5a;
}

.my-_rides .nav-tabs .nav-link.active,
.my-_rides .nav-tabs .nav-link:hover {
  background-color: #e3af5a;
  color: #000;
}

.discount_promo .discount-card,
.discount_promo .promo-card {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.discount_promo .discount-card h5,
.discount_promo .promo-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.discount_promo .btn-primary {
  background-color: #e3af5a;
  border-color: #e3af5a;
}

.discount_promo .btn-primary:hover {
  background-color: #d19a4e;
  border-color: #d19a4e;
}

.notifications .list-group-item {
  border: none;
  padding: 10px 0;
}

.notifications .list-group-item:hover {
  background-color: #f9f9f9;
}

.notifications .fa {
  font-size: 24px;
}

.notifications .list-group-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 8px;
}




/* new css start */
.notification-icon a {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: relative;
  color: #fff;
  transition: all .5s ease-in-out;
}

.notification-icon span {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border-radius: 100px;
  position: absolute;
  top: -14px;
  right: -5px;
  font-size: 14px;
}

.profile-drop .btn-secondary {
  background: none;
  border: none;
  padding: 0;
}

.hdr-pro-view {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hdr-pro-view span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  display: inline-block;
}

.hdr-pro-view span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}

.hdr-pro-view .username {
  color: #fff;
  margin-bottom: 0;
}

.profile-drop .dropdown-menu {
  min-width: 220px;
  padding: 0;
  border: none;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 999;
}

.profile-card-drop {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  padding: 14px 12px;
  position: relative;
}

.profile-card-drop span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  margin-right: 10px;
  min-width: 40px;
  min-height: 40px;
  border: 2px solid var(--primary-color);
}

.profile-card-drop span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}

.profile-card-rt p {
  font-size: 14px;
  margin-bottom: 2px;
  color: #fff;
}

.profile-card-rt h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}

.profile-drop .dropdown-menu.show li a {
  padding: 10px 12px;
  border-bottom: 1px solid #f4f4f4;
  font-size: 14px;
  color: #000;
}

.profile-drop .dropdown-menu.show li a span {
  margin-right: 4px;
}

.profile-drop .btn-secondary:hover,
.profile-drop .btn-secondary:active {
  background-color: transparent !important;
}

.profile-drop .dropdown-item:hover {
  background: var(--primary-color);
  color: #fff !important;
}

.mobiel-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  display: inline-block;
}

.mobiel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}

.mobile-canva-user {
  background-color: var(--primary-color) !important;
}

.mobile-canva-user .btn-close {
  background-color: #fff;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  opacity: 1;
  font-size: 12px;
}

/* new css end */