@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap);
:root {
  --white: #ffffff;
  --gray-lighter: #ededed;
  --gray: #525252;
  --gray-dark: #343a40;
  --primary: #027efb;
  --primaryHover: #0369c9;
  --secondary: #6c757d;
  --success: #18ba4e;
  --successHover: #169941;
  --info: #17a2b8;
  --warning: #ffb907;
  --danger: #e5356a;
  --pink: #ed80a1;
  --purple: #4d0099;
  --purple2: #7c27ff;
  --light1: #f5f5f5;
  --lighter1: #f9f9f9;
  --light: #f8f9fa;
  --light2: #aeaeae;
  --border-light: #d6d6d6;
  --border-lighter: #e0e0e0;
  --border-lighter2: #e9e9e9;
  --dark: #343a40;
  --dark2: #4a4a4a;
  --black: #000000;
  --gray-text: #707070;
  --gray-disable: #adadad;
  --form-border: #bcbcbc;
  --font-family-body: "Titillium Web", Roboto, Arial, sans-serif;
  --font-family-title: "Poppins", Roboto, Arial, sans-serif;
  --primary-light-bg: #eff5fc;
  --success-light-bg: #f5fff9;
  --info-light-bg: #f1fdff;
  --warning-light-bg: #fffdf8;
  --danger-light-bg: #fff7f9;
  --default-light-bg: #f8f9fa;
  --primary-calselect-bg: #dbeeff;
  --discPrice: #9f9f9f;
}

.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-info {
  color: var(--info) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-gray {
  color: #575757;
}

a {
  text-decoration: none;
}

.customScroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb {
  background: #159ce0;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-button {
  width: 6px;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb:hover {
  background: #159ce0;
  border-radius: 10px;
}

.navbar-nav {
  background: 0 0;
}

.fw-semibold {
  font-weight: 600;
}

.w-95 {
  width: 95% !important;
}

.w-92 {
  width: 92% !important;
}

.w-93 {
  width: 93% !important;
}

.w-90 {
  width: 90% !important;
}

.w-40 {
  width: 40% !important;
}

.w-30 {
  width: 30% !important;
}

.align-items-center {
  align-items: center;
}

.alert {
  padding: 8px;
  border-bottom-width: 3px;
  font-family: var(--font-family-title);
}

.alert .icon-left {
  font-size: 22px;
}

.alert-dismissible .btn-close {
  font-size: 12px;
  padding: 12px;
}

.alert-primary {
  color: var(--primary);
  background-color: var(--primary-light-bg);
  border-color: var(--primary);
}

.alert-success {
  color: var(--success);
  background-color: var(--success-light-bg);
  border-color: var(--success);
}

.alert-info {
  color: var(--info);
  background-color: var(--info-light-bg);
  border-color: var(--info);
}

.alert-danger {
  color: var(--danger);
  background-color: var(--danger-light-bg);
  border-color: var(--danger);
}

.alert-warning {
  color: var(--warning);
  background-color: var(--warning-light-bg);
  border-color: var(--warning);
}

.modal-header {
  font-family: var(--font-family-title);
}

.modal-content {
  border-radius: 10px;
}

.modal-header.bg-primary .btn-close {
  filter: invert(1);
}

.modal.fade .modal-dialog {
  /* -webkit-transform: translate(0, 0);
    transform: translate(0, 0); 
    
    height: calc(100% - 3.5rem);
    transform: translate(0, 70px);*/
  height: auto;
  transform: translate(0, 20px);
  /* max-height: 90%; */
  max-height: calc(90% - 3.5rem);
}
/* .modal-dialog-scrollable .modal-content {
  overflow-y: auto;
} */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 205px);
}
/* 
.modal_animation {
  transform: scale(0.5) !important;
  opacity: 0;
  transform: translateX(4000px) !important;
  background-color: transparent;
}

.modal_animation.show {
  opacity: 1;
  transform: scale(1) !important;
  transform: translateX(0) !important;
  -webkit-transition: 0.8s ease-out 0s;
  -moz-transition: 0.8s ease-out 0s;
  -ms-transition: 0.8s ease-out 0s;
  -o-transition: 0.8s ease-out 0s;
  transition: 0.8s ease-out 0s;
}

.modal_animation.hide {
  opacity: 0;
  transform: scale(0.5) translateX(4000px);
  -webkit-transition: 0s ease-out 0s;
  -moz-transition: 0s ease-out 0s;
  -ms-transition: 0s ease-out 0s;
  -o-transition: 0s ease-out 0s;
  transition: 0s ease-out 0s;
} */

.overlayLoading {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgb(28 28 28 / 70%);
  z-index: 999999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #333;
}

.overlayLoading .containerLoder {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overlayLoading h4 {
  font-size: 15px;
  font-family: var(--font-family-title);
  color: #000;
  margin-top: 8px;
  font-weight: 300;
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 1px;
  line-height: 20px;
}

.overlayLoading h4 span {
  display: block;
  font-weight: 600;
}

.overlayLoading .overlayLoadingIn {
  position: absolute;
  top: 40%;
  display: block;
  text-align: center;
  background: var(--white);
  border-radius: 100%;
}

.overlayLoadingBlack {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.overlayLoadingBlack .overlayLoadingIn {
  position: absolute;
  top: 40%;
  display: block;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  background: var(--white);
  border-radius: 100%;
}

.overlayLoading img {
  width: 350px;
  border-radius: 10px;
}

.overlayLoadingBlack img {
  width: 350px;
  border-radius: 100%;
  padding: 6px;
}

@media screen and (min-width: 320px) and (max-width: 1600px) {
  .overlayLoading img,
  .overlayLoadingBlack img {
    width: 200px;
    border-radius: 10px;
  }
}

.mainLoader {
  position: fixed;
  width: auto;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999999999;
  background: 0 0;
  padding: 40px;
  border-radius: 5px;
  color: #000;
}

.mt-45 {
  margin-top: 2.2rem !important;
}

.fs-16 {
  font-size: 16px;
  line-height: 18px;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a.linkGrHover {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(
      to right,
      rgba(255, 0, 0, 1),
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
    );
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s;
  color: var(--black);
  text-decoration: none;
}

a.linkGrHover i {
  font-size: 120%;
}

a.linkGrHover:hover {
  background-size: 0 2px, 100% 2px;
}

a.link {
  color: var(--primary);
}

a.link:hover {
  color: var(--primaryHover);
}

.seemore {
  margin: 10px 10px 0 10px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  width: 94%;
  float: left;
}

.seemore .link .chevron {
  margin: 6px 0 0 4px;
  line-height: 14px;
  float: right;
}

.seemore .link.collapsed .chevron:before {
  content: "\ea5f";
  font-family: tabler-icons !important;
  font-style: normal;
  font-size: 18px;
  line-height: 8px;
}

.seemore .link .chevron:before {
  content: "\ea62";
  font-family: tabler-icons !important;
  font-style: normal;
  font-size: 18px;
  line-height: 8px;
}

.linkGray {
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.linkGray:hover {
  color: var(--dark);
}

.linkGraylight {
  color: var(--gray-text);
  text-decoration: none !important;
}

.linkGray:hover {
  color: var(--dark);
}

.linkBlack {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.linkBlack:hover {
  color: var(--dark);
}

.linkPrimary {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.linkPrimary:hover {
  color: var(--primaryHover);
}

.title-text {
  font-family: var(--font-family-title) !important;
}

.body-text {
  font-family: var(--font-family-body) !important;
}

body {
  font-family: var(--font-family-body);
  font-size: 16px;
  color: var(--black);
  padding-top: 58px;
}

.stickyNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.text-primary {
  color: var(--primary);
}

::selection {
  color: var(--white);
  background: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
}

h1 {
  font-size: 48px;
  line-height: 52px;
  font-size: calc(1.7rem + 1.3vw);
  line-height: calc(1.7rem + 1.8vw);
}

h2 {
  font-size: 38px;
  line-height: 42px;
  font-size: calc(1.2rem + 1.1vw);
  line-height: calc(1.3rem + 1.3vw);
}

h3 {
  font-size: 30px;
  line-height: 41px;
  font-size: calc(1.1rem + 0.8vw);
  line-height: calc(1.3rem + 0.8vw);
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

.page-header {
  padding-bottom: 2rem;
}

.page-header .page-header-content {
  padding-top: 35px;
  padding-bottom: 1rem;
}

.page-header-title {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding-top: 2rem;
}

.carousel-title {
  font-size: 64px;
  line-height: 70px;
  color: var(--black);
  font-weight: 600;
}

.header-banner {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
  margin: 0;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  position: relative;
}

.header-banner .overlay {
  background: linear-gradient(45deg, #631be1 20%, #0462d4 80%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.78;
  z-index: 0;
}

.section-title {
  font-size: 38px;
  font-size: calc(1.58rem + 0.8vw);
  line-height: 50px;
  line-height: calc(1.58rem + 1.4vw);
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  width: 100%;
  font-family: var(--font-family-title);
  position: relative;
  z-index: 2;
}

.section-title2 {
  font-size: 35px;
  font-size: calc(1.5rem + 0.8vw);
  line-height: 50px;
  line-height: calc(1.58rem + 1.1vw);
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  width: 100%;
  font-family: var(--font-family-title);
}

.section-title .exploreLink {
  font-size: 16px;
  float: right;
  margin-top: 15px;
  line-height: 18px;
  color: var(--black);
  font-weight: 400;
  font-family: var(--font-family-title);
}

.driversAgedBox .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 10px !important;
}

.section-description {
  font-size: 18px;
  line-height: 30px;
  color: var(--gray-text);
  margin-bottom: 20px;
  float: left;
  width: 100%;
  font-family: var(--font-family-title);
  text-align: justify;
  z-index: 2;
}

.customTitleOut {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.customTitle {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-title);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 4px 20px;
  line-height: 16px;
  position: relative;
  margin: 0 0 0 20px;
  z-index: 1;
}

.customTitle .icon {
  height: 37px;
  width: 37px;
  left: -21px;
}

.customTitle .icon img {
  width: 38px;
  position: relative;
  top: -1px;
  left: -4px;
}

.customTitle .iconY {
  filter: invert(48%) sepia(40%) saturate(20) hue-rotate(0) brightness(118%)
    contrast(119%);
}

.customTitleOut:after {
  background: var(--white);
  border-bottom: 2px dashed var(--border-light);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  content: "";
}

#myImg {
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(69 69 69 / 90%);
  background-color: rgb(69 69 69 / 90%);
}

#myModal {
  z-index: 3;
}

#myModal .modal-content {
  max-width: 470px;
  margin: auto;
  display: block;
  width: 80%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

#caption,
.modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: 700;
  transition: 0.3s;
}

.close_new {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:focus,
.close:hover {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.transactionRecipt p img {
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

.nav-transparent {
  background-color: transparent;
}

.navbar-toggler {
}

.main-menu.navbar-nav .nav-link {
  font-family: var(--font-family-title);
  font-weight: 500;
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  vertical-align: top;
  padding: 0;
  margin: 0 15px;
  color: #000;
  font-weight: 400;
}

.main-menu.navbar-nav .nav-link::after,
.main-menu.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}

.main-menu.navbar-nav .nav-link::before {
  background-color: var(--primary);
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.main-menu.navbar-nav .nav-link::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: var(--primary);
  border: 0;
}

.main-menu.navbar-nav .nav-link.active::before,
.main-menu.navbar-nav .nav-link:hover::before {
  transform-origin: 0 50%;
  transform: scaleX(1);
}

.main-menu.navbar-nav .nav-link:hover::after {
  transform: translate3d(0, 0, 0);
}

.main-menu.navbar-nav .nav-link span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.main-menu.navbar-nav .nav-link:hover span {
  transform: translate3d(-200%, 0, 0);
}

.main-menu.navbar-nav .nav-link:hover {
  color: var(--black);
}

.main-menu.navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.main-menu.navbar-nav .dropdown-item {
  color: var(--dark2);
  padding: 0.4rem 1rem;
  font-size: 14px;
  font-family: var(--font-family-title);
}
.main-menu.navbar-nav .dropdown-menu {
  min-width: 10rem;
  padding: 1rem 0;
  color: var(--dark2);
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(30px);
  margin-top: 14px;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 2px 15px #0000001b;
}
.main-menu.navbar-nav .dropdown-item:focus,
.main-menu.navbar-nav .dropdown-item:hover {
  color: var(--primary);
  background-color: var(--primary-light-bg);
}
.main-menu.navbar-nav .dropdown-item.active,
.main-menu.navbar-nav .dropdown-item:active {
  color: var(--primary);
  text-decoration: none;
  background-color: var(--primary-light-bg);
}

.main-menu {
  flex-direction: row;
  align-items: center;
}

.main-menu .profileBtn {
  padding: 5px 7px;
  font-family: var(--font-family-title);
  color: var(--black);
}

.main-menu .profileBtn .pic {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid var(--border-lighter);
  padding: 2px;
  margin: 0 5px 0 0;
  float: left;
}

.main-menu .profileBtn .pic img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  float: left;
  border-radius: 100%;
}

.main-menu .profileBtn .name {
  margin: 6px 5px 0 5px;
  float: left;
  font-weight: 400;
}

.main-menu .profileBtn:hover {
  color: var(--primary);
}

.main-menu .profileBtn.active {
  font-weight: 600;
}

.main-menu .dropdownProfile .dropdown-menu {
  font-family: var(--font-family-title);
  border: 1px solid var(--border-lighter);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  right: 0;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi {
  text-align: center;
  position: relative;
  margin-top: 0;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi:after {
  position: absolute;
  left: -8px;
  right: -8px;
  top: -24px;
  content: "";
  background: var(--primary-calselect-bg);
  height: 70px;
  z-index: -1;
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi .pic {
  width: 75px;
  height: 75px;
  display: inline-block;
  border: 2px solid var(--border-lighter);
  padding: 2px;
  border-radius: 100%;
  background: var(--white);
}

.main-menu .dropdownProfile .dropdown-menu .profilePicLi .pic img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  float: left;
  border-radius: 100%;
}

.main-menu .dropdownProfile .dropdown-menu li {
  font-size: 14px;
  text-align: left;
  margin: 5px 0;
}

.main-menu .dropdownProfile .dropdown-menu li .username {
  font-size: 18px;
  font-weight: 700;
}

.main-menu .dropdownProfile .dropdown-menu li a:hover {
  background: var(--danger-light-bg);
}

.main-menu .dropdownProfile .dropdown-menu li a.active,
.main-menu .dropdownProfile .dropdown-menu li a:focus {
  background: var(--primary);
  color: var(--white);
}

.errorMsg {
  color: var(--danger);
  font-size: 13px;
  margin: 3px 0 3px 0;
}

.errorMsgPink {
  color: var(--pink);
  font-size: 13px;
}

.input-group-text {
  background-color: var(--lighter1);
  padding: 10px 10px;
  text-align: center;
  justify-content: center;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem - 16px) !important;
  line-height: 1.25;
  font-size: 14px;
  color: var(--black);
  padding: 6px 10px;
  font-family: var(--font-family-body);
}

.form-floating > label,
.label-only {
  padding: 8px 10px;
  color: var(--gray-text);
  border: 0;
  font-size: 0.9rem;
  line-height: 1.7em;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-bottom: 8px;
  padding-top: 8px;
}

.label-only {
  top: -20px;
  right: 0;
  padding: 0 5px;
  opacity: 1;
  background: var(--white);
  height: auto;
  font-size: 13px;
  line-height: 16px;
  position: absolute;
  pointer-events: none;
  border: 1px solid transparent;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  top: -2px;
  left: 10px;
  padding: 0 5px;
  opacity: 1;
  background: var(--white);
  height: auto;
  line-height: 16px;
  font-family: var(--font-family-body);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(2, 134, 255, 0.35);
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.form-floating > .form-control::placeholder {
  color: transparent !important;
}

.input-group > .form-floating:first-child .form-control,
.input-group > .form-floating:first-child .form-select {
  border-radius: 4px 0 0 4px;
}

.input-group > .form-floating .form-control,
.input-group > .form-floating .form-select {
  border-radius: 0;
}

.input-group > .form-floating:last-child .form-control,
.input-group > .form-floating:last-child .form-select {
  border-radius: 0 4px 4px 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.backBtnround {
  font-size: 36px !important;
  padding: 0 !important;
  margin: 0;
  color: #cbcbcb;
}

.backBtnround i {
  font-weight: 200;
}

.backBtn {
  align-self: flex-start;
  border: 0;
  background: 0 0;
}

.nextBtn {
  align-self: flex-end;
  margin-left: auto;
  border: 0;
  background: 0 0;
}

.rounded-4 {
  border-radius: 0.8rem !important;
}

.rounded-5 {
  border-radius: 1.6rem !important;
}

.bg-light {
  background: var(--light1);
}

.btn {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 10px 30px;
  font-weight: 500;
  transition: 0.5s;
  text-align: center;
  font-family: var(--font-family-title);
}

.btn-pill {
  border-radius: 100px;
}

.btn-lg {
  font-size: 20px;
  line-height: 24px;
}

.btn-sm {
  padding: 4px 20px 4px 20px;
  font-size: 14px;
  font-weight: 600;
}

.btn-blue,
.btn-primary {
  background: linear-gradient(90deg, #0c78ed 0, #0065d3 59.48%);
  box-shadow: 0 4px 14px 0 #0098b961;
  color: var(--white);
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  border: 0;
}

.btn-blue:hover,
.btn-primary:hover {
  background: linear-gradient(130deg, #0c78ed 0, #0065d3 59.48%);
  color: var(--white);
  box-shadow: 3px 4px 16px 0 #0097b975;
}

.btn-primary2 {
  background-image: linear-gradient(135deg, #631be1 0, #0462d4 100%);
  box-shadow: 0 4px 14px 0 #0098b961;
  color: var(--white);
  text-transform: none;
  transition: all ease-in-out 0.3s;
  border: 0;
}

.btn-primary2:hover {
  background-image: linear-gradient(210deg, #631be1 0, #0462d4 100%);
  color: var(--white);
  box-shadow: 3px 4px 16px 0 #0097b975;
}

.btn-blue-border {
  border: 2px solid var(--primary);
  color: var(--primary);
  text-transform: uppercase;
}

.text-tnormal {
  text-transform: none;
}

.btn-blue-border:hover {
  color: var(--white);
  background: var(--primary);
}

.btn-green,
.btn-success {
  background: linear-gradient(90deg, #50de00 0, #02a000 100%);
  box-shadow: 0 4px 14px 0 #0ba0017a;
  color: var(--white);
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  border: 0;
}

.btn-green:hover,
.btn-success:hover {
  background: linear-gradient(130deg, #50de00 0, #02a000 100%);
  box-shadow: 3px 4px 16px 0 #0ca0018a;
  color: var(--white);
}

.btn-default,
.btn-gray {
  background-color: var(--light1);
  border-color: var(--border-light);
  color: var(--black);
  text-transform: uppercase;
}

.btn-default:hover,
.btn-gray:hover {
  background-color: var(--border-lighter);
  border-color: var(--light2);
  color: var(--black);
}

.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background-color: var(--light1);
  border-color: var(--white);
  color: var(--primaryHover);
}

.btn-white-title {
  color: var(--primary);
  font-family: var(--font-family-title);
  text-transform: none;
}

.btn-white-border {
  border-color: var(--border-lighter);
}

.btn-light-control {
  background-color: var(--white);
  border-color: var(--gray-lighter);
}

.btn-light-control.show,
.btn-light-control:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-rounded-border {
  border: 2px solid var(--primary);
  border-radius: 40px;
  font-size: 14px;
  margin: 10px 10px;
  color: var(--primary);
  font-weight: 600;
  padding: 5px 15px;
  background-color: var(--white);
}

.btn-rounded-border:hover {
  background-color: var(--primary);
  color: var(--white);
}

.step_title {
  font-size: 30px;
  font-weight: 300;
  color: var(--black);
  line-height: 34px;
  font-family: var(--font-family-title);
}

.step_subtitle {
  color: var(--light2);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  font-family: var(--font-family-title);
}

.step_description {
  color: var(--dark2);
  font-size: 16px;
  line-height: 18px;
}

.section_sm {
  margin-bottom: 30px;
}

.section_md {
  margin-bottom: 60px;
}

.section_title {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-family-title);
}

.section_title2 {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-family-title);
}

.section_titlewIcon {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-title);
  background: linear-gradient(
    180deg,
    var(--white) 0,
    var(--border-lighter) 100%
  );
  border: 1px solid var(--border-lighter);
  color: var(--black);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.section_titlewIcon .icon {
  width: 20px;
  float: left;
  margin: 2px 5px 0 0;
  color: var(--primary);
  font-size: 20px;
  line-height: 20px;
}

.section_titlewIcon.bg-gray {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-title);
  background: var(--lighter1);
  border: 1px solid var(--border-lighter);
  color: var(--black);
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.section_titlewIcon.bg-gray .icon {
  color: var(--black);
}

.section_cont {
  border: 1px solid var(--border-lighter);
  padding: 5px;
}

.customCol_left {
  width: 22%;
}

.customCol_right {
  width: 77%;
}

.vertical_steps {
  background: var(--light1);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family-title);
  border-radius: 0.3rem 0 0 0;
}

.vertical_steps ul.step_list {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
  counter-reset: css-counter 0;
  position: sticky;
  top: 20px;
  left: 0;
}

.vertical_steps ul.step_list li {
  margin: 0 0 0 10px;
  padding: 0 0 30px 35px;
  position: relative;
  counter-increment: css-counter 1;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  color: #767676;
}

.vertical_steps ul.step_list li::before {
  content: counter(css-counter);
  background: var(--light1);
  border: 2px solid var(--dark2);
  position: absolute;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--dark2);
  left: 0;
  top: 0;
  padding: 2px;
  border-radius: 100%;
  z-index: 2;
  z-index: 2;
  width: 25px;
  height: 25px;
  text-align: center;
}

.vertical_steps ul.step_list li::after {
  background: #cecece;
  width: 2px;
  left: 12px;
  top: 0;
  bottom: 0;
  position: absolute;
  content: "";
  z-index: 1;
}

.vertical_steps ul.step_list li.active {
  color: var(--primary);
  font-weight: 800;
}

.vertical_steps ul.step_list li.active::before {
  background: var(--light1);
  border: 2px solid var(--primary);
  color: var(--primary);
}

.vertical_steps ul.step_list li.completed {
  color: #8fc1ef;
  font-weight: 300;
}

.vertical_steps ul.step_list li.completed::before {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
}

.modal {
  padding-top: 0 !important;
  z-index: 1055 !important;
}

.modal-fullscreen {
  padding: 10px !important;
  width: 99vw;
  height: 100vh;
  overflow: unset;
}

.modal-fullscreen .modal-dialog {
  width: 100% !important;
  max-width: none !important;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--white);
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
  padding: 0;
  border-radius: 6px;
}

.modal-footer {
  justify-content: space-between;
}

.modalMain-content {
  padding: 0px 0px 0px 20px;
  float: left;
  width: 100%;
}

.btn-close {
  /* width: 5px;
    height: 5px */
}

.btn-lightbox-close {
  width: 15px;
  height: 15px;
  background: #000;
  padding: 2px;
  border-radius: 50%;
}

.btn-modal-close {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all ease-in-out 0.5s;
  z-index: 3;
}

.btn-modal-close:hover {
  transform: rotate(90deg);
  opacity: 1;
}

.btn-modal-dismiss {
  position: absolute;
  top: -17px;
  right: -17px;
  transition: all ease-in-out 0.5s;
  font-size: 22px;
  background: var(--dark);
  color: var(--white);
  border-radius: 100%;
  border-radius: 100%;
  padding: 25px 25px 15px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 1058;
  line-height: 17px;
}

.btn-modal-dismiss:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

.close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.modal-xl {
  max-width: 1240px !important;
}

.modal-xxl {
  max-width: 1560px !important;
  margin-top: 10px;
}

.paymentModal {
  max-width: 1000px !important;
  margin-top: 10px;
}

.paymentLeftPanel {
  width: 39%;
}

.paymenytRightPanel {
}

.modal-xxl .modal-body {
  padding: 0;
}

.modal-xxl.modal-dialog-scrollable .modal-content {
  /* max-height: calc(100vh - 40px);
    height: calc(100vh - 40px) */
  /* height: 100%;
    max-height: 1060px; */
  max-height: 1200px;
  /* Set maximum height */
  /* height: auto; */
  height: 100%;
  /* Allow height to adjust based on content */
  display: flex;
  /* Enable flexbox for better layout control */
  flex-direction: column;
  /* Ensure modal header, body, and footer stack vertically */
}

#fleetListPopup .modal-content,
#fleet_details_modal .modal-content,
#print_e_ticket .modal-content {
  height: 92vh;
  max-height: 1200px;
}

#personalInfo_modal .modal-content,
#kyc_modal .modal-content {
  height: 90vh;
  max-height: 1200px;
}

.paymentModal .modal-content {
  height: 100%;
  max-height: 1200px;
}

@media screen and (min-height: 850px) {
  #personalInfo_modal .modal-content,
  #kyc_modal .modal-content {
    height: 100%;
  }
}

/* .modal-lg.modal-dialog .modal-content,
.modal-md.modal-dialog .modal-content,
.modal-sm.modal-dialog .modal-content {
    max-height: 100%;
    overflow: hidden;
    height: auto
} */

/* .modal-xxl.modal-dialog-scrollable {
    height: 100vh;
    max-height: calc(100vh - 40px)
} */

.contentModal,
.headModal {
  width: 100%;
  display: block;
  float: left;
  /* margin: 0 !important */
}

.loginModal {
  /* height: 726px !important; */
  height: 100% !important;
}

.headModal {
}

.contentModal {
  margin-top: 30px !important;
}

.alert_new {
  padding: 8px;
  color: var(--black);
  font-size: 13px;
  background-color: #eafbff;
  border: 1px solid var(--primary);
  text-align: left;
}

.icn_out {
  border: 1px solid var(--primary);
  background: var(--white);
  padding: 3px 8px;
  color: var(--primary);
  margin-right: 5px;
  border-radius: 50px;
}

.cursor_disabled {
  pointer-events: none;
  cursor: normal;
}

.my_checkbox {
  margin: 5px 0 10px 0;
}

.customCheckbox,
.customRadio {
  position: relative;
}

.customRadio input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.customRadio input[type="radio"] + label {
  position: relative;
  padding: 3px 0 0 30px;
  cursor: pointer;
}

.customRadio input[type="radio"] + label:before {
  content: "";
  background: var(--white);
  border: 2px solid #ccc;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

.customRadio input[type="radio"] + label:after {
  content: "";
  background: var(--primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 6px;
  opacity: 0;
  transform: scale(2);
  transition: transform 0.3s linear, opacity 0.3s linear;
}

.customRadio input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.customRadio.disabled input[type="radio"] + label:after,
.customRadio.disabled input[type="radio"] + label:before {
  background: var(--gray-lighter);
}

.customCheckbox.small input[type="radio"] + label:before {
  border: 1px solid #ccc;
  height: 16px;
  width: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.customCheckbox.small input[type="radio"] + label:after {
  width: 8px;
  height: 8px;
  top: 4px;
  left: 4px;
}

.customCheckbox input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.customCheckbox input[type="checkbox"] + label {
  position: relative;
  padding: 0 0 3px 35px;
  cursor: pointer;
  color: var(--black);
}

.customCheckbox.small input[type="checkbox"] + label {
  padding: 0 0 3px 25px;
}

.customCheckbox input[type="checkbox"] + label:before {
  content: "";
  background: var(--white);
  border: 2px solid #ccc;
  border-radius: 3px;
  height: 22px;
  width: 22px;
  position: absolute;
  top: 0;
  left: 0;
}

.customCheckbox input[type="checkbox"] + label:after {
  content: "";
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: transparent transparent var(--primary) var(--primary);
  width: 14px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: 4px;
  opacity: 0;
  transform: scale(2) rotate(-45deg);
  transition: transform 0.3s linear, opacity 0.3s linear;
}

.customCheckbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(-45deg);
  color: var(--primary);
}

.customCheckbox.disabled input[type="checkbox"] + label:after,
.customCheckbox.disabled input[type="checkbox"] + label:before {
  background: var(--gray-lighter);
}

.customCheckbox.small input[type="checkbox"] + label:before {
  border: 1px solid #ccc;
  height: 16px;
  width: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.customCheckbox.small input[type="checkbox"] + label:after {
  width: 9px;
  height: 5px;
}

.customCheckbox.cbFill input[type="checkbox"]:checked + label:before {
  background: var(--primary);
  border: 2px solid var(--primary);
}

.customCheckbox.cbFill input[type="checkbox"]:checked + label:after {
  border-color: transparent transparent var(--white) var(--white);
}

.customCheckbox.cbFill input[type="checkbox"]:checked + label:after {
  color: var(--white);
}

.customCheckbox.cbCirclePrimary .checkLabelCustom {
  position: relative;
  right: 0;
  top: 0;
  width: auto;
  z-index: 2;
}

.customCheckbox.cbCirclePrimary .checkLabelCustomLeft {
  float: left;
  position: relative;
  z-index: 2;
}

.customCheckbox.cbCirclePrimary input[type="checkbox"] + label:before {
  background: var(--white);
  border: 2px solid #ccc;
  border-radius: 50px;
  width: 30px;
  height: 30px;
}

.customCheckbox.cbCirclePrimary input[type="checkbox"]:checked + label:before {
  background: var(--primary);
  border: 2px solid var(--primary);
}

.customCheckbox.cbCirclePrimary input[type="checkbox"]:checked + label:after {
  border-color: transparent transparent var(--white) var(--white);
}

.customCheckbox.cbCirclePrimary input[type="checkbox"]:checked + label:after {
  color: var(--white);
}

.customCheckbox.cbCirclePrimary input[type="checkbox"] + label:after {
  border-color: transparent transparent var(--primary) var(--primary);
  width: 18px;
  height: 9px;
  top: 8px;
  left: 6px;
  border-width: 0 0 3px 3px;
}

.customRadio.crFill input[type="radio"]:checked + label:before {
  background: var(--primary);
  border-color: var(--primary);
}

.customRadio.crFill input[type="radio"]:checked + label:after {
  border-color: var(--white);
  background: var(--white);
}

.customRadio.crFill input[type="radio"] + label:after {
  border-color: var(--primary);
  border-width: 0 0 3px 3px;
}

.card-custom {
  box-shadow: none;
  margin-bottom: 10px;
}

.card-custom .card-header {
  border: 1px solid var(--border-light);
  background: 0 0;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 10px;
}

.card-custom .card-header .btn {
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  float: left;
  line-height: 24px;
}

.card-custom .card-header .btn label {
  font-size: 16px;
  font-weight: 700;
  float: left;
  line-height: 24px;
}

.card-header.custom-header {
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #00c6e6 0, #06f 100%);
  font-size: 18px !important;
  line-height: 28px;
  color: var(--white) !important;
  font-weight: 700 !important;
}

.card-custom .card-body.custom-body {
  border: 1px solid var(--border-light);
  background: var(--lighter1);
}

.card-body.custom-body.no-bg {
  background: 0 0;
}

.border-btn-0 {
  border-bottom: 0;
}

.customCaption {
  left: 0;
  text-align: left;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  border-radius: 0 15px 0 0;
  backdrop-filter: blur(5px);
}

.compareTable {
  border: 1px solid var(--border-light);
  border-radius: 5px;
  padding: 0;
  margin: 20px 0;
}

.compareTable table {
  border-color: var(--border-light);
  margin: 0;
}

.compareTable thead th {
  background: var(--primary);
  font-size: 18px !important;
  line-height: 28px;
  color: var(--white) !important;
  font-weight: 700 !important;
  text-align: center;
  border-right: 2px solid var(--white);
}

.compareTable thead th:first-child {
  border-top-left-radius: 4px;
}

.compareTable thead th:last-child {
  border-top-right-radius: 4px;
  border-right: 0;
}

.compareTable thead th:last-child::before {
  content: "VS";
  position: absolute;
  left: -18px;
  top: 2px;
  background: var(--white);
  border: 1px solid var(--primaryHover);
  border-radius: 100px;
  padding: 7px;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray-dark);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.compareTable table tbody,
.compareTable table > :not(:first-child) {
  border-top: 0;
}

.compareTable tbody td {
  border-bottom: 1px dashed var(--border-light);
  border-right: 2px solid var(--border-light);
  font-size: 16px;
}

.compareTable tbody tr:last-child td {
  border-bottom: 0;
}

.compareTable tbody tr td:last-child {
  border-right: 0;
}

.collapseMinimal .card {
  box-shadow: none;
  border: 0;
  background: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 5px 5px;
  overflow: hidden;
}

.collapseMinimal .card-header {
  background: var(--white);
  padding: 0;
  border-bottom: 0;
  /* background: none; */
  background: #fafafa;
}

.collapseMinimal .card-header h2 {
  line-height: 22px;
}

.collapseMinimal .card-header .btn-link {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
}

.collapseMinimal .card-header .btn-link:focus {
  /* background: var(--white); */
  box-shadow: none;
}

.collapseMinimal.small .card-header .btn-link {
  padding: 2px 10px 2px;
  text-transform: none;
  line-height: 18px;
  font-family: var(--font-family-title);
}

.collapseMinimal.small .card-header .btn-link img {
  width: 20px;
}

.collapseMinimal .card-body {
  border-bottom: 0;
  border-top: 1px solid var(--border-light);
  background: #fff;
}

.collapseMinimal .card-body .table td {
  padding: 7px 10px;
  border: 0;
}

.collapseMinimal .card-body .table tr.tdsm td {
  padding: 3px 10px;
  border: 0;
}

.collapseMinimal .card-body .table tr:last-child td {
  border-bottom: 0;
}

.tncContainer {
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  float: left;
}

.tncContainer .best_title_about_us {
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

.tncContainer .news_des {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

.tncContainer .news_titl,
.tncContainer .start_location,
.tncContainer .sub_conte {
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  font-family: var(--font-family-title);
  width: 100%;
  float: left;
}

.tncContainer .over_scroll {
  overflow-x: auto;
}

.tncContainer .start_location {
  text-align: left;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  width: 100% !important;
  font-family: var(--font-family-title) !important;
}

.btn-toggle-bg {
  background: #e7e7e7;
  border-radius: 60px;
  padding: 7px !important;
  font-weight: 600;
}

.btn-toggle-bg .btn {
  padding: 4px 15px;
  background: 0 0;
  border: none;
  color: var(--black);
  border-radius: 50px !important;
  font-weight: 600;
}

.btn-toggle-bg .btn[checked] {
  padding: 4px 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
}

.btn-toggle-bg2 {
  background: 0 0;
  border-radius: 0;
  padding: 0 !important;
  font-weight: 600;
}

.btn-toggle-bg2 label {
  font-weight: 500;
}

.btn-toggle-bg2 .btn {
  padding: 6px 15px 6px 40px !important;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--black);
  border-radius: 5px !important;
  font-weight: 600;
  margin: 0 4px 0 4px;
  position: relative;
  line-height: 28px;
}

.btn-toggle-bg2 .btn:focus,
.btn-toggle-bg2 .btn:hover {
  border: 1px solid var(--primary);
  box-shadow: 0 2px 10px rgba(2, 134, 255, 0.35);
}

.btn-toggle-bg2.customRadio input[type="radio"] + label:before {
  left: 10px;
  top: 9px;
}

.btn-toggle-bg2.customRadio input[type="radio"] + label:after {
  left: 16px;
  top: 15px;
}

.btn-toggle-bg2 .btn-check + .btn-outline-primary:focus,
.btn-toggle-bg2 .btn-check:checked + .btn-outline-primary:focus,
.btn-toggle-bg2 .btn-check:checked + .btn-outline-primary:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 0 2px 10px rgba(2, 134, 255, 0.35);
}

.btn-toggle-bg2 .btn-check:checked + .btn-outline-primary {
  border: 1px solid var(--primary);
  box-shadow: 0 2px 10px rgba(2, 134, 255, 0.35);
  color: var(--primary);
  background: var(--white);
}

.btn-toggle-bg2 .btn-uk:checked + .btn-outline-primary:after {
  display: block;
}

.form-control-dl {
  width: 220px;
  margin: 0 10px 0 -18px;
  border-radius: 5px;
  padding-left: 32px;
}

.orSimiralModal2 .modal-content {
  height: auto !important;
}

.orSimiralModal2 .modal-body {
  padding: 10px 15px;
}

.customleftColumn {
}

.customrightColumn {
}

@-moz-document url-prefix() {
  .customScroll {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e3e3e3;
  }
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e3e3e3;
  }
}

.customScroll::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-button,
::-webkit-scrollbar-button {
  width: 6px;
  border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryHover);
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .main-menu {
    flex-direction: column;
    align-items: end;
  }
}
