/* Fonts */
:root {
  --font-default: "Manrope", sans-serif;
  --font-primary: "Poppins", sans-serif;

  /* Colors */

  --color-default: #26aae1;
  --color-black: #000;
  --color-gary: #919597;

  /* Smooth scroll behavior */

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-black);

  padding-left: 0px !important;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

.input-error {
  color: red;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  clear: both;
}

*:focus {
  outline: none;
  box-shadow: none !important;
}

.login-section {
  width: 100%;
  position: relative;
  height: 100%;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  border-radius: 0px 442px 18px 0px;
  background: var(--color-default);
  width: calc(60% - 30px);
}

.wave:after {
  content: "";
  position: absolute;
  background-image: url(../images/wave.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 340px 0;
}

.login-section .container {
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 0 2rem;
  justify-content: space-between;
  align-items: center;
}

.description-content {
  position: relative;
  width: 55%;
}

.welcome-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 100px;
  position: absolute;
  left: -179px;
  top: -22px;
}

.description-content h1 {
  font-size: 60.51px;
  font-weight: 800;
  line-height: 101.04px;
  color: #fff;
  width: 100%;
  margin-bottom: 0px;
}

.description-content p {
  font-size: 38.01px;
  font-weight: 300;
  line-height: 35.47px;
  color: #fff;
  margin-bottom: 0px;
  display: block;
  width: 100%;
}

.login-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: 21px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  width: 483px;
  padding: 40px 25px;
  transform: translate(-183px, 10px);
  position: relative;
  left: 0;
}

.login-content form {
  width: 100%;
}

.logo-user {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.input-div {
  margin-bottom: 14px;
  position: relative;
}

.input-div .form-control {
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-black);
  background: #f7f9fa;
  padding: 6px 20px;
  border-radius: 9px;
  border: solid #d5dee2 1px;
}

.input-div .form-control::-ms-input-placeholder {
  /* Edge 12-18 */
  color: var(--color-gary);
}

.input-div .form-control::placeholder {
  color: var(--color-gary);
}

.input-div .form-control:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.input-div i {
  font-size: 20px;
  color: #919597;
}

.input-div .input-group-text {
  width: 26px;
  height: 45px;
  display: flex;
  background: #e9f0ff;
  padding: 6px 20px;
  border-radius: 0px 9px 9px 0px !important;
  justify-content: center;
  align-items: center;
  border-top: solid #d5dee2 1px;
  border-bottom: solid #d5dee2 1px;
  border-right: solid #d5dee2 1px;
}

.input-keep-me {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.input-keep-me label {
  font-size: 18px;
  font-weight: 400;
  line-height: 30.05px;
  color: #919597;
  display: flex;
  align-items: center;
}

.input-keep-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.input-keep-me .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  transition: 300ms;
  margin-right: 8px;
  border: solid #d5dee2 2px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.input-keep-me .checkmark:after,
.input-keep-me .checkmark:before {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-keep-me input:checked~.checkmark:after,
.input-keep-me input:checked~.checkmark:before {
  display: block;
}

/* Style the checkmark/indicator */
.input-keep-me .checkmark:after {
  left: 7px;
  top: 2px;
  width: 0.28em;
  height: 0.6em;
  border: solid #fff;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

.input-keep-me .checkmark:before {
  left: -2px;
  top: -2px;
  width: 21px;
  height: 21px;
  background: var(--color-default);
  border-radius: 3px;
}

.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.button-row .btn {
  width: 49%;
}

.login {
  background: var(--color-default);
  padding: 10px 40px;
  color: #fff;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  border: solid var(--color-default) 1px;
}

.login-outline {
  padding: 10px 40px;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  background: #fff;
  border: solid var(--color-default) 1px;
}

.login:hover {
  color: #fff;
  background: #26aae1;
}

.login:focus {
  outline: none;
  box-shadow: none;
}

.login:focus-visible {
  color: #fff;
  background: #26aae1;
}

.login-outline:hover {
  color: #fff;
  background: #26aae1;
}

.login-outline:focus-visible {
  color: #fff;
  background: #26aae1;
}

/*Dashboard  css*/
.app-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  position: relative;
}

.app-theme-white.app-container {
  background: #f1f4f6;
}

.app-header {
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  position: relative;
  z-index: 10;
  transition: all 0.2s;
}

.app-header.header-shadow {
  box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03),
    0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03),
    0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05),
    0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
}

.fixed-header .app-header {
  position: fixed;
  width: 100%;
  top: 0;
}

.app-theme-white .app-footer .app-footer__inner,
.app-theme-white .app-header {
  background: #1f272e;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
}

.app-header__logo {
  padding: 10px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: flex-start;
  transition: width 0.2s;
}

.fixed-header .app-header .app-header__logo {
  visibility: visible;
}

.app-theme-white.fixed-header .app-header__logo {
  background: #45abe3;
}

.app-header__logo .logo-src {
  height: auto;
  width: 31px;
}

.app-header__logo .logo-src img {
  max-width: 30px;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

/*!* Hamburgers css*/
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #3f6ad8;
}

.hamburger-box {
  width: 24px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #3f6ad8;
  border-radius: 10px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 6px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 12px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

.app-header .app-header__content {
  display: flex;
  align-items: center;
  align-content: center;
  flex: 1;
  padding: 0 1.5rem 0 0;
  height: 48px;
}

.app-header .app-header__content .app-header-left {
  display: flex;
  align-items: center;
}

.app-header .app-header__content .app-header-right {
  align-items: center;
  display: flex;
  margin-left: auto;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.widget-content .widget-content-wrapper {
  display: flex;
  flex: 1;
  position: relative;
  align-items: center;
}

.vertical-nav-2 {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
}

.vertical-nav-2 li {
  width: 37px;
  height: 37px;
  background: #f7f9fa;
  border: solid #27aae0 1px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.vertical-nav-2 .danger-link {
  width: 37px;
  height: 37px;
  background: #f9e5e5;
  border: solid #ff3636 1px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.col-app-header .caret-left p {
  margin: 0px;
}

.col-app-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-user-derop {
  margin-left: 20px;
}

.label-block {
  background: #f7f9fa;
  padding: 10px 18px;
  border: solid #d5dee2 1px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
}

.label-block .icon {
  margin-left: 7px;
}

.app-main {
  flex: 1;
  display: flex;
  z-index: 8;
  position: relative;
}

.fixed-header .app-main {
  padding-top: 50px;
}

.app-sidebar {
  display: flex;
  width: 100%;
}

.app-main__outer {
  flex: 1;
  flex-direction: column;
  display: flex;
  z-index: 9;
  padding-left: 100px;
}

.profile .img-box svg path {
  fill: #fff;
}

.user-profil .img-box {
  border: solid #fff 2px;
  background: #58ace5;
  width: 30px !important;
  height: 30px !important;
}

.user-profil .profile .img-box img {
  width: 27px;
  max-width: 27px;
}

.mt-14 {
  margin-top: 14px;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 60px;
  height: 100%;
  width: 102px;
  background: #1e272e;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.sidebar.open {
  width: 250px;
}

.sidebar.open .logo-details i:before {
  transform: rotate(180deg);
}

.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
  opacity: 1;
}

.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
  text-align: right;
}

.sidebar i {
  color: #fff;
  min-width: 50px;
  font-size: 26px;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 50px;
  align-items: center;
}

.sidebar li a:hover i svg path {
  fill: #000;
}

.sidebar .nav-list {
  margin-top: 2px;
  height: 100%;
  padding: 0px;
  overflow: auto;
  max-height: 680px;
  margin-bottom: 0px;
  overflow-x: hidden;
}

/* custom scrollbar */
.sidebar .nav-list::-webkit-scrollbar {
  width: 0;
}

.sidebar .nav-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.sidebar .nav-list::-webkit-scrollbar-thumb {
  background-color: #2cbbf7;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

.sidebar .nav-list::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.sidebar li a:hover .tooltip {
  color: #000;
}

.sidebar li {
  position: relative;
  list-style: none;
  margin-bottom: 25px;
}

.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar.open li .tooltip {
  display: none;
}

.sidebar input {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}

.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #fff;
}

.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #fff;
}

.sidebar .bx-search:hover {
  background: #fff;
  color: #11101d;
}

.sidebar li a {
  display: flex;
  height: 100%;
  width: 53px;
  border-radius: 9px;
  font-size: 18px;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s ease;
}

.sidebar.open a {
  width: 100%;
}

.sidebar li a:hover {
  background: #fff;
}

.sidebar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
  transition: all 0.5s ease;
  color: #11101d;
}

.sidebar li a:hover i img {
  filter: brightness(0%);
}

.sidebar .nav-list .active a i img {
  filter: brightness(0) invert(1);
}

.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar.open li.profile {
  width: 250px;
}

.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.sidebar li img {
  height: 30px;
  width: 30px;
  margin: 0px;
}

.sidebar .nav-list .active a {
  background: #26aae1;
}

.sidebar .nav-list .active a i {
  color: #fff;
}

.log_out {
  padding-top: 20px;
  color: #26aae1;
  font-size: 18px;
  font-weight: 500;
  line-height: 30.05px;
  margin: 0 auto !important;
  display: block;
  text-align: center;
}

.sidebar .setting-out {
  margin-top: 128px;
}

.home-section {
  position: relative;
  top: 0;
  left: 0px;
  transition: all 0.5s ease;
  z-index: 2;
  width: 100%;
}

.sidebar.open~.home-section {
  left: 250px;
  width: calc(100% - 250px);
}

.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}

.sidebar .nav-list .active svg path {
  fill: #fff;
}

.sidebar #log_out {
  color: #26aae1;
  text-align: center;
}

.sidebar li a:hover #log_out {
  color: #000000;
}

/* menu (the right one) */

.menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 15px;
  width: 200px;
  min-height: 100px;
  background: #fff;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  border-radius: 15px;
  padding: 10px 10px;
  background: #fff;
  box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.menu::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 14px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}

.menu.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.profile .img-box {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.profile .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-user-profile {
  margin-left: 15px;
}

.search-wrapper {
  margin-left: 15px;
}

.search-wrapper .form-select {
  background-color: #f7f9fa;
  border: solid #d5dee2 1px;
  padding: 0.675rem 1.25rem 0.675rem 0.85rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
  text-transform: uppercase;
  border-radius: 9px;
}

.search-wrapper .form-select:focus {
  box-shadow: none;
  outline: none;
}

/* menu links */
.menu ul {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background: #fff;
  margin: 0px;
  padding: 10px 0;
}

.menu ul li {
  list-style: none;
  border-bottom: solid #eee 1px;
}

.menu ul li:hover {
  background: #f7f9fa;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 6px;
}

.header-user-profile .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu ul li:last-child {
  border-bottom: transparent;
}

.menu ul li a i {
  font-size: 1.2em;
}

.header-user-profile.active .menu {
  opacity: 1;
  visibility: inherit;
}

.header-user-profile.active .down-arrow {
  transform: rotate(180deg);
}

/* dashboard form css */
.map-section {
  position: relative;
  width: 100%;
  float: left;
}

.hamburger-map {
  position: absolute;
  right: 20px;
  top: 81px;
  position: absolute;
  background: rgba(255, 255, 255, 1);
  border-radius: 21px;
  padding: 27px 0;
  width: 290px;
}

.hamburger-menu-button {
  width: 40px;
  height: 40px;
  padding: 6px;
  display: none;
  position: relative;
  margin-top: 0px;
  z-index: 100;
  background: #232b32;
  box-sizing: content-box;
  border-radius: 50%;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  outline: 0;
}

.hamburger-menu-button-open {
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -12px;
}

.hamburger-menu-button-open,
.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  left: 0;
  content: "";
}

.hamburger-menu-button-open::before {
  top: 6px;
}

.hamburger-menu-button-open::after {
  bottom: 6px;
}

.hamburger-menu-button-close {
  background: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hamburger-menu-button-close::before {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.hamburger-menu-button-close::after {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.ham-navigation {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  width: 250px;
  border-radius: 9px;
  top: 60px;
  padding: 12px;
  z-index: 9;
}

.ham-navigation .menu-hamburger {
  margin: 0px;
  padding: 12px;
  list-style: none;
  position: relative;
}

.ham-navigation.on {
  display: block;
}

.layer-toogle {
  padding: 12px 0px;
  padding-right: 8px;
  position: relative;
  border-bottom: 1px solid #ededed;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.layer-toogle img {
  width: 30px;
  height: 30px;
  padding: 2px;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 100px;
}

.ham-navigation .menu-hamburger li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.56px;
}

.ham-navigation .menu-hamburger .dropdown-submenu a:after {
  float: left;
  content: "";
  border-left: none;
  margin-left: -10px;
  margin-right: 0;
  border-right: 4px dashed;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-top: 6px;
}

.ham-navigation .menu-hamburger li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: -190px;
  top: 0;
  padding: 11px;
}

.ham-navigation .menu-hamburger .dropdown-menu li a:after {
  display: none;
}

.leaflet-control-vehicle {
  position: absolute;
  top: 77px;
  left: 8px;
  background: rgba(255, 255, 255, 1);
  border-radius: 5px;
  padding: 27px 0;
  width: 300px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.user-div {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 3px 16px;
  border-bottom: solid #26aae1 2px;
}

.user-div h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  color: #000;
  font-family: var(--font-default);
  text-align: left;
  margin-bottom: 0;
}

.user-div p {
  text-align: left;
  font-size: 14px;
  color: #a19f9f;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: var(--font-default);
  font-weight: 400;
}

.leaflet-control-vehicle .tabs .tab-nav {
  text-align: left;
  margin: 0 0 0px 0;
}

.leaflet-control-vehicle .tabs .tab {
  display: none;
}

.leaflet-control-vehicle .tabs .tab.active {
  display: block;
}

.tabs-vehicle {
  padding: 0;
  list-style: none;
  position: relative;
  border-bottom: 1px solid rgba(206, 212, 215, 1);
}

.tabs-vehicle .active {
  position: relative;
  color: #26aae1;
  background: rgba(245, 249, 251, 1);
  border-bottom: 1px solid #26aae1;

}

/*.tabs-vehicle .active:after {*/
/*width: 100%;*/
/*height: 2px;*/
/*position: absolute;*/
/*content: "";*/
/*bottom: -0.1em;*/
/*left: 0;*/
/*background: white;*/
/*}*/

.tabs-vehicle li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 5px 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 25px;
  color: #919597;
  font-family: var(--font-default);
}

/*.tabs-vehicle li:first-child {*/
/*margin-left: 20px;*/
/*}*/

.tabs-vehicle-suv {
  padding: 0;
  list-style: none;
  position: relative;
  margin-bottom: 0;
}

.tabs-vehicle-suv li.active {
  color: #000;
  font-weight: 700;
}

.tabs-vehicle-suv li.active:after {
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  bottom: -0.1em;
  left: 0;
  background: white;
}

/*.tabs-vehicle li:before {*/
/*content: "";*/
/*position: absolute;*/
/*background: #26aae1;*/
/*width: 100%;*/
/*height: 2px;*/
/*bottom: 0px;*/
/*left: 0;*/
/*opacity: 0;*/
/*}*/

/*.tabs-vehicle li.active:before {*/
/*opacity: 1;*/
/*}*/

.tabs-vehicle-suv li {
  display: inline-block;
  cursor: pointer;
  padding: 0px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
  color: #919597;
  font-family: var(--font-default);
}

.tabs-vehicle-suv li:first-child {
  margin-left: 40px;
}

.search-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.search-bar {
  position: relative;
}

.search-bar input {
  text-indent: 25px;
  border: 1px solid rgba(213, 222, 226, 1);
  background: rgba(247, 249, 250, 1);
  /*border-radius: 9px !important;*/
  padding: 10px 15px;
}

.search-bar input:focus {
  box-shadow: none;
  border: 1px solid rgba(38, 170, 225, 1);
  box-shadow: none;
}

.search-bar i {
  position: absolute;
  top: 10px;
  left: 14px;
  color: rgba(145, 149, 151, 1);
}

.btn-fleet {
  background: var(--color-default);
  border-radius: 9px;
  margin-left: 10px;
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
}

.btn-fleet:hover {
  background: #1e272e;
  color: #fff;
}

.dropdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.fleet-mode {
  background: rgba(35, 43, 50, 1);
  color: #fff;
  border-radius: 5px !important;
}

.fleet-mode:hover {
  border: solid var(--color-default) 1px;
  background: var(--color-default);
  color: #fff;
}

.path-mode {
  background: rgba(247, 249, 250, 1);
  margin-left: 7px !important;
  border: solid rgba(213, 222, 226, 1) 1px;
  border-radius: 5px !important;
}

.path-mode:hover {
  border: solid var(--color-default) 1px;
  background: var(--color-default);
  color: #fff;
}

.path-mode:hover svg path {
  fill: #ffff;
}

.btn-fleet:focus-visible {
  background: #1e272e;
  color: #fff;
}

.datepicker-range {
  display: flex;
  justify-content: space-between;
  background: #f7f9fa;
  border: solid #d5dee2 1px;
  border-radius: 9px;
  padding: 4px 0px;
}

.now-block {
  width: 100%;
  display: flex;
  padding: 0 20px;
  position: relative;
  margin-bottom: 20px;
  justify-content: space-between;
}

.datepicke-col {
  margin-right: 5px;
}

.datepicke-col .datepicker-block {
  position: relative;
  width: calc(100% - 67px);
}

.datepicke-col .datepicker-range {
  padding: 0px;
}

.datepicke-col .datepicker-block .icon-date {
  position: absolute;
  left: 8px;
  top: 4px;
  z-index: 9;
}

.datepicke-col .datepicker-block input {
  font-size: 12px;
  line-height: 27px;
  padding: 0.275rem 0.45rem;
  padding-left: 26px;
  color: #000;
  font-weight: 700;
}

.datepicke-col .datepicker-block .input-group-text i {
  position: absolute;
  right: 9px;
  top: 10px;
  z-index: 9;
  font-size: 11px;
}

.datepicke-col .vehicles-increase-decrease .btn-decrease,
.datepicke-col .vehicles-increase-decrease .btn-increase {
  font-size: 12px;
  padding: 8px 10px;
}

.datepicke-co .datepicker-block .icon-date {
  position: absolute;
  left: 7px;
  top: 4px;
  z-index: 9;
}

.datepicker-block .icon-date img {
  width: 9.89px;
}

.map-section iframe {
  height: 100vh;
}

.vehicles-increase-decrease .btn-decrease {
  background: transparent;
  border-radius: 0px !important;
  color: var(--color-default) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.04px;
  font-family: var(--font-default) !important;
  border-left: solid rgba(198, 202, 204, 1) 1px !important;
  border-right: solid rgba(198, 202, 204, 1) 1px !important;
  border-top: transparent;
  border-bottom: transparent;
}

.vehicles-increase-decrease .btn-increase {
  background: transparent;
  border: transparent;
  color: #000 !important;
  border-radius: 0px !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.04px;
  font-family: var(--font-default) !important;
}

.search-list-container {
  margin-top: 40px;
  width: 100%;
  position: relative;
  padding-top: 20px;
  padding: 20px 15px 0;
}

.search-list-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background: #ced4d7;
}

.search-list-container h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  padding-left: 10px;
}

.search-item {
  font-size: 15px;
  font-weight: 400;
  line-height: 25.05px;
  font-family: var(--font-default) !important;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 4px 10px;
  border-radius: 9px;
}

.search-list .search-item:hover,
.search-list .active {
  background: rgba(241, 241, 241, 1);
}

.icon-radio {
  width: 11px;
  display: block;
  margin-right: 10px;
  height: 27px;
}

.search-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  max-height: 370px;
}

.search-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.search-list::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

.search-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--color-default);
}

.tabs-content-2 li:first-child {
  display: list-item !important;
}

.datepicker-block input {
  width: 100% !important;
  background: transparent;
  border: transparent;
  border-radius: 0px;
  padding-left: 39px;
  height: auto;
}

.datepicker-block {
  position: relative;
}

.datepicker-block .icon-date {
  position: absolute;
  left: 8px;
  top: 6px;
  z-index: 9;
}

.input-group-text {
  background: transparent;
  border: transparent;
  border-radius: 0px;
  padding: 0px;
}

.datepicker-block input:focus {
  outline: none;
  box-shadow: none;
}

.datepicker-block .input-group-text i {
  position: absolute;
  right: 15px;
  top: 7px;
  z-index: 9;
}

.col-datepicker-3 {
  flex: 0 0 auto;
  width: calc(30% - 0px);
}

/* signup form css */

.signup-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: 21px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  width: calc(100% - 100px);
  padding: 40px 25px;
  position: relative;
  flex-wrap: wrap;
  margin-top: 50px;
}

.signup-content form {
  width: 100%;
}

.signup-content h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 58.44px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.signup-content .logo-user img {
  max-width: 147px;
}

.line-border {
  border: solid 1.6px #d5dee2;
  margin-top: 20px;
  margin-bottom: 34px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.upload-btn-wrapper .btn {
  background-color: #f7f9fa;
  padding: 3px 20px;
  border-radius: 9px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-left: 0;
  width: 58%;
  cursor: pointer;
}

.upload-btn-wrapper .btn:after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #a7adb0 33%, #fff 0%) top / 10px 1px repeat-x,
    /* top */
    linear-gradient(#a7adb0 33%, #fff 0%) right / 1px 10px repeat-y,
    /* right */
    linear-gradient(to right, #a7adb0 33%, #fff 0%) bottom / 10px 1px repeat-x,
    /* bottom */
    linear-gradient(#a7adb0 33%, #fff 0%) left / 1px 10px repeat-y;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 9px;
}

.upload-btn-wrapper .btn img {
  max-width: 18px;
}

.upload-btn-wrapper label {
  font-size: 18px;
  font-weight: 500;
  line-height: 30.05px;
  display: block;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.signup-content .form-control {
  background: #f7f9fa;
  padding: 6px 20px;
  border-radius: 9px;
  border: solid #d5dee2 1px;
}

.signup-content .form-control:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.signup-content .form-select {
  background-color: #f7f9fa;
  border-radius: 9px;
  border: solid #d5dee2 1px;
  padding: 10px 2.25rem 10px 0.75rem;
}

.signup-content .form-select:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.btn-submit {
  background: #26aae1;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  padding: 8px 50px;
  color: #fff;
  margin-top: 10px;
}

.btn-submit:hover,
.btn-submit:focus {
  color: #fff !important;
  outline: none;
  box-shadow: none;
  background: #26aae1 !important;
}

/* subscriptions css */
.subscriptions-blox {
  position: fixed;
  margin-top: 80px;
  width: 100%;
  float: left;
  z-index: 99;
}

.subscriptions-blox:before {
  content: "";
  position: fixed;
  background-color: hsl(0deg 0% 0% / 50%);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.promos {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.promo {
  margin: 1em 0.5em 1.625em;
  padding: 50px;
  background: #37434d;
  color: #f9f9f9;
  border-radius: 18px;
}

.baid-btn {
  border: solid #23efa6 0.86px;
  border-radius: 100px;
  color: #23efa6;
  padding: 8px 22px;
  background: #23efa61a;
  font-size: 15.46px;
  font-weight: 600;
  line-height: 25.82px;
  display: flex;
  justify-content: center;
  max-width: 110px;
  margin: 0 auto 20px;
}

.device-search-col {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  max-height: 430px;
  margin-top: 10px;
}

.device-search-col .device-item {
  margin: 0;
  background: #eee;
  margin-bottom: 15px;
  padding: 10px;
}

.device-search-col .device-item {
  font-size: 15px;
  font-weight: 400;
  line-height: 25.05px;
  font-family: var(--font-default) !important;
  margin-bottom: 5px;
}

.device-near-items {
  display: block !important;
}

.device-search-col-2 {
  max-height: inherit;
  width: 100%;
  max-width: 100%;
  background: transparent;
  padding: 0;
}

.device-search-col-2 .device-item {
  background: #eee;
}

.title-h3 {
  font-size: 14px;
  text-align: left;
}

.device-search-col .device-item .device-b {
  width: 55%;
  font-weight: 600;
}

.device-search-col .device-item .divice-d {
  width: 50%;
}

.cstm-height {
  height: 100%;
  max-height: 383px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.cstm-height::-webkit-scrollbar {
  width: 6px;
}

.cstm-height::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 0px;
  border-radius: 10px;
}

.cstm-height::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 0px;
  background: #26aae1;
}

/* Events page css */

.inner-header {
  background: #fafafa;
  padding: 30px 20px;
  border-bottom: solid #c0c2c3 1px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-inner-tab {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.navbar-inner-tab li {
  display: inline;
  margin-right: 20px;
}

.navbar-inner-tab li a {
  display: inline;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.05px;
  text-align: left;
  color: #919597;
}

.navbar-inner-tab li a.active {
  color: #000;
}

.left-block {
  /* width: 50%;
    flex: 0 0 auto; */
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin-top: 15px;*/
}

.right-block {
  width: 50%;
  flex: 0 0 auto;
}

.inner-header .hamburger-map {
  top: 13px;
}

.page-header-row {
  width: 100%;
  margin-bottom: 30px;
}

.tab-content-events {
  display: none;
}

.tab-content-events.active {
  display: block;
}

.container-event {
  padding: 20px;
  background: #fafafa;
  width: 100%;
}

.page-table-row table thead th {
  background: #1e272e !important;
  color: #fff;
  padding: 11px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  font-family: var(--font-default);
  text-align: center;
  vertical-align: middle;
}

.page-table-row table thead th:first-child {
  /*border-radius: 9px 0px 0px 0px !important;*/
}

.page-table-row table thead th:last-child {
  /*border-radius: 0px 9px 0px 0px !important;*/
}

.page-table-row table {
  border: solid #000 1px;
  -moz-border-radius: 9px;
  /*border-radius: 9px;*/
  border-style: hidden;
  box-shadow: 0 0 0 1px #cdcdcd;
}

.page-table-row table tbody td:last-child:after {
  display: none;
}

.page-table-row table tbody td:first-child {
  border-radius: 0px 0px 0px 9px;
}

.page-table-row table tbody td:last-child {
  border-radius: 0px 0px 9px 0px;
}

.page-table-row table thead th:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 28px;
  background: #5b656c;
  margin: 0 auto;
  right: 0;
  top: 10px;
}

.page-table-row table tbody td {
  padding: 8px 5px 8px 5px;
  text-align: center;
  position: relative;
}

.page-table-row table thead th:last-child:after {
  display: none;
}

.page-table-row table tbody td {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 5px 8px 5px;
  vertical-align: middle;
}

.leaflet-control-var .page-table-row table tbody td {
  font-size: 12px;
  font-weight: 500;
  vertical-align: middle;
  padding: 8px 7px 7px 30px;
  box-shadow: none;
}

.leaflet-control-var .tripdetails-table-2 tbody,
td {
  /* border: solid #ffffff 1px !important; */
  border: solid #ffffff 1px;
}

.leaflet-control-var .page-table-row table tbody tr:nth-child(odd) {
  background: #fff !important;
}

.leaflet-control-var .page-table-row table tbody tr:nth-child(even) {
  background: #fafafa !important;
}

.leaflet-control-var .page-table-row table tbody tr:nth-child(odd) {
  background: #fafafa;
}

.selected-block p {
  margin-bottom: 5px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.card-primary-profile .img-thumbnail {
  background-color: #fff;
  border-radius: 0;
  height: auto;
  border: 1px solid #ddd;
  margin-right: 10px;
  padding: 4px;
  max-width: 300px !important;
}

.form-control.input-upload {
  max-width: 457px;
}

.left-block-2 .col-form-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.company-logo {
  background: #f8f8f8ee;
  padding: 4px 15px 20px;
  border-radius: 5px;
}

.selected-block {
  display: flex;
  align-items: center;
  width: 100%;
}

.left-block-2 .col-form-label [type="checkbox"] {
  margin-right: 5px;
}

.form-select {
  border: 1px solid rgba(213, 222, 226, 1);
  background-color: rgba(247, 249, 250, 1);
  /*border-radius: 9px;*/
  font-size: 14px;
  font-weight: 400;
  line-height: 13.04px;
  padding: 12px 2.25rem 12px 0.75rem;
  height: 44px;
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid rgba(38, 170, 225, 1);
}

.select2-container--bootstrap-5 .select2-selection {
  border: 1px solid rgba(213, 222, 226, 1);
  background-color: rgba(247, 249, 250, 1);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.04px;
  height: auto;
  padding: 12px 2.25rem 12px 0.75rem;
  color: #000000;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border: 1px solid rgba(38, 170, 225, 1);
  box-shadow: none;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
  border: 1px solid rgba(38, 170, 225, 1);
}

.add-btn {
  background-color: #26aae1;
  padding: 7px 15px;
  /*border-radius: 9px;*/
  font-size: 13.54px;
  font-weight: 500;
  line-height: 22.6px;
  color: #fff;
  border-color: #26aae1;
}

.add-btn-circle {
  /*border-radius: 5px;*/
}

.plus-icons {
  margin-left: 10px;
}

.btn {
  padding: 0.175rem 0.55rem;
}

.add-btn:hover {
  color: #fff !important;
  background-color: #2cbbf7 !important;
  border-color: #26aae1;
}

.btn-info {
  color: #fff;
}

.btn-info:hover {
  color: #fff;
}

.calendar {
  margin-bottom: 200px;
}

.class-link {
  color: #333333;
  text-decoration: none;
}

.class-link:hover {
  color: #ffbb00;
}

/* From here you can start to copy */

.calendar {
  padding: 8px;
  background: #ffffff;
  border-radius: 4px;
  font-size: 18px;
  border: 1px solid #333333;
  box-shadow: 0px 20px 40px rgba(59, 60, 56, 0.05);
}

.ui-datepicker {
  background: #ffffff;
  border-radius: 15px;
}

.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: #31639c;
  margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}

.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}

.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}

.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}

.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #333333;
}

.ui-datepicker-title {
  text-align: center;
  font-size: 25px;
}

.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: #31639c;
  margin-bottom: 5px;
  font-size: 18px;
}

.ui-state-default {
  display: block;
  text-decoration: none;
  color: #333333;
  line-height: 40px;
  font-size: 16px;
}

.ui-state-default:hover {
  color: #ffffff;
  background: #31639c;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
}

.ui-state-highlight {
  color: #ffffff;
  background-color: #31639c;
  border-radius: 50px;
}

.ui-state-active {
  color: #ffffff;
  background-color: #31639c;
  border-radius: 50px;
}

.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.icon {
  margin-left: -30px;
  margin-top: -26px;
  position: relative;
  color: #31639c;
  font-size: 20px;
}

.custom-button-block .btn {
  margin: 0 2px;
}

.custom-button-block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tripdetails-table th {
  background: #eafaff;
  border-color: #dee2e6 !important;
}

.rmdp-container {
  width: 100%;
}

.rmdp-container .rmdp-input {
  background: #f7f9fa !important;
  padding: 0px 0px 0px 9px !important;
  border-radius: 9px !important;
  border: solid #d5dee2 1px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
}

.btn-warning {
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
}

.form-control {
  background: #f7f9fa;
}

.inner-header-back {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-left: 13px;
  padding-right: 13px;
  padding-bottom: 10px;
}

.device-item {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-default) !important;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  line-height: 3px;
  border-radius: 9px;
  margin: 18px;
  margin-top: 25px;
}

@media (min-width: 40em) {
  .promo {
    display: inline;
    float: left;
    width: 33.333%;
    margin: 1em 0 0;
  }

  .promo.first {
    border-right: none;
  }

  .promo.second {
    float: right;
    border-left: none;
  }
}

.promo h4 {
  margin: 0.25em 0 0;
  font-size: 170%;
  font-weight: normal;
  text-align: center;
}

.promo .features {
  margin: 80px 0 80px 0;
  padding: 0;
  list-style: none;
}

.promo li {
  position: relative;
  font-size: 13.79px;
  font-weight: 400;
  line-height: 23.03px;
  color: #fff;
  text-align: left;
  padding-left: 33px;
  margin-bottom: 16px;
}

.promo li:before {
  content: "\f26e";
  position: absolute;
  font-family: bootstrap-icons !important;
  width: 20px;
  height: 20px;
  background: #26aae1;
  display: flex;
  justify-content: center;
  border-radius: 2px;
  left: 0;
}

.promo .price {
  font-size: 48.27px;
  font-weight: 700;
  line-height: 80.6px;
  text-align: center;
}

.promo p {
  font-size: 17.24px;
  font-weight: 400;
  line-height: 28.78px;
  text-align: center;
}

.promo .buy {
  background: #26aae1;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26.72px;
  padding: 16px 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.promo .buy:hover {
  color: #fff;
}

@media (min-width: 40em) {
  .scale {
    transform: scale(1.2);
    box-shadow: 0 0 4px 1px rgba(20, 20, 20, 0.8);
    background: #1e272e;
  }

  .scale .price {
    color: #26aae1;
  }
}

.caret-left-col {
  position: absolute;
  left: 20px;
  top: 40px;
  background: #fff;
  width: 302px;
  border-radius: 21px;
  padding: 20px;
}

/*card page  css*/
.card-details {
  display: flex;
  justify-content: center;
  background: #fff;
  width: 100%;
  margin-top: 100px;
  padding: 40px;
  flex-wrap: wrap;
  flex-direction: column;
  box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
  border-radius: 10px;
  margin-bottom: 100px;
}

.card-details ul {
  margin: 0px 0 40px;
  padding: 0px;
  list-style: none;
  display: flex;

  justify-content: center;
}

.card-details ul li {
  display: flex;
  border: solid #eee 1px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  margin-right: 10px;
  border-radius: 10px;
}

.card-details ul li a img {
  max-width: 90px;
}

.card-details-form .form-control {
  background: #f7f9fa;
  padding: 10px 20px;
  border-radius: 9px;
  border: solid #d5dee2 1px;
}

.card-details-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.card-form-button {
  background: #26aae1;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  padding: 8px 50px;
  color: #fff;
  margin-top: 10px;
  box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
}

.card-form-button:hover,
.card-form-button:focus {
  color: #fff !important;
  background-color: #2cbbf7 !important;
}

.card-details-form .form-label {
  font-size: 16px;
  font-weight: 600;
}

.input-date {
  display: flex;
  position: relative;
  width: 33%;
  align-items: center;
  transition: 0.15s ease-in-out;
}

.input-date:after {
  content: "";
  position: absolute;
  background: var(--color-black);
  width: 1px;
  height: 37px;
  left: 58px;
  transform: rotate(16deg);
}

.input-date .form-control-month {
  padding: 10px;
  width: 30%;
  display: block;
  background: #f7f9fa;
  border-radius: 9px;
  border: solid #d5dee2 1px;
  margin-right: 5px;
  outline: 0;
}

.input-date .form-control-year {
  padding: 10px;
  width: 50%;
  display: block;
  background: #f7f9fa;
  border-radius: 9px;
  border: solid #d5dee2 1px;
  margin-left: 21px;
  outline: 0;
}

.input-date input:last-child {
  margin-right: 0px;
}

.ui-datepicker-calendar {
  display: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
}

#header .fixed-top-home-pag {
  padding: 30px 0 !important;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  margin-left: 30px;
  color: #ffff;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 30px;
  border-radius: 100px;
  background: #47b2e4;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .sign-up,
.navbar .sign-up:focus {
  color: #000;
  border: 2px solid #47b2e4;
  margin-left: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  font-size: 15px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.navbar .sign-up:hover,
.navbar .sign-up:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* map card top */
.top-card {
  position: absolute;
  background: #fff;
  width: 100%;
  height: fit-content;
  top: 0;
  bottom: 0px;
  color: #4d4949;
  left: 0;
}

.top-card .Title {
  font-size: 14px;
}

.bcktA {
  color: #337ab7;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #312f2f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #fff;
}

.navbar-mobile .sign-up,
.navbar-mobile .sign-up:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

.navbar-home-page ul li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 30.05px;
  font-family: "Manrope", sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url(../images/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-weight: 300;
  line-height: 42.23px;
  max-width: 470px;
}

.about p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
  max-width: 520px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/*alarm*/
.dateConfi {
  border-radius: 9px;
  padding: 8px;
  border-top-right-radius: 9px !important;
  border-bottom-right-radius: 9px !important;
}

.calendarIcon {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 9;
}

.css-1jqq78o-placeholder {
  margin-right: 38px !important;
}

.header-user-profile {
  margin-left: 13px;
}

.allDrivers {
  display: flex;
  justify-content: end;
  margin-top: -32px;
  padding: 1px;
  margin-bottom: 10px;
}

.css-b62m3t-container {
  margin-bottom: 5px;
}

@media (max-width: 1080px) {
  .tabs-management {
    overflow-y: scroll !important;
  }
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  .signup-content {
    width: 100%;
  }

  .wave {
    display: none;
  }

  .login-section .container {
    display: block;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  .leaflet-control-var .tabs {
    display: block !important;
  }

  .leaflet-control-var .tab-nav {
    width: auto !important;
  }

  .leaflet-control-var .dashboard-block {
    padding-left: 6px !important;
  }

  .rdrDateRangePickerWrapper {
    display: block !important;
  }

  .rdrDefinedRangesWrapper {
    width: 100% !important;
  }

  .btn-info {
    margin-top: 10px;
  }

  #hero h2 {
    max-width: 100%;
  }

  .getstarted {
    width: 118px;
  }

  .sign-up {
    width: 118px;
  }

  .signup-content {
    margin: 10px auto;
  }

  .login-section .container {
    display: block;
  }

  .wave {
    display: none;
  }

  .upload-btn-wrapper .btn {
    width: 100%;
  }

  .login-content {
    flex-direction: column;
    width: 100%;
  }

  .tabs-management {
    overflow-y: scroll !important;
  }

  .allDrivers {
    display: block;
    margin-top: 0px;
  }

  .general-ac table {
    border-radius: 0 !important;
  }

  .form-control-show {
    padding: 18px 1.25rem 12px 0.75rem;
  }

  .tachnoCard {
    margin-top: 48px !important;
    margin: auto;
  }

  .leaflet-control-var .tab-nav {
    margin-bottom: 0px !important;
  }

  .tachnographBtn {
    bottom: 107px !important;
    /* right: 85px !important; */
    justify-content: center !important;
    top: 93px !important;
  }

  .tabContent {
    display: block !important;
  }

  .tachnoAlert {
    display: block !important;
  }

  .tachnoBtn {
    width: 116px;
  }

  .tachnoCard .alert {
    width: 275px;
  }

  .tachnoCard h4 {
    font-size: 10px !important;
  }

  .svgSize {
    width: 200px;
    display: block;
    overflow-x: scroll;
    height: 200px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 26px;
  font-family: "Manrope", sans-serif;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

.about .content {
  align-items: center;
}

/*--------------------------------------------------------------
# fleet-tracking css
--------------------------------------------------------------*/
.fleet-tracking h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 70.13px;
  max-width: 447px;
  font-family: "Manrope", sans-serif !important;
}

.fleet-tracking p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  text-align: left;
  max-width: 538px;
  color: #1e272e;
}

/*--------------------------------------------------------------
# platforms-section css
--------------------------------------------------------------*/

.platforms-section {
  background: #32aade;
}

.platforms-section .section-title h2 {
  color: #fff;
  text-transform: capitalize;
  font-size: 31.68px;
  font-weight: 600;
  line-height: 44.36px;
  font-family: "Manrope", sans-serif;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.android-block {
  max-width: 440px;
  margin: 0 auto;
}

.android-block .android-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.android-block .android-nav li {
  margin-right: 11px;
}

.android-block .android-nav li:last-child {
  margin-right: 0;
}

.container-section {
  background: #1e272e;
  padding: 80px 0;
  position: relative;
}

.container-section:before {
  content: "";
  position: absolute;
  background-image: url(../images/ellipse-left.png);
  width: 120px;
  height: 107px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-section:after {
  content: "";
  position: absolute;
  background-image: url(../images/ellipse-right.png);
  width: 105px;
  height: 101px;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter-box .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.28px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.counter-box i {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.counter {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 64.62px;
  font-family: "Manrope", sans-serif;
}

.footer-top {
  background: #1e272e;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-links ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  list-style: none;
}

.footer-links ul li {
  margin-right: 34px;
}

.footer-links ul li:last-child {
  margin-right: 0;
}

.footer-links ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  font-family: "Manrope", sans-serif;
}

.footer-bottom .copyright {
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  background: #1e272e;
  padding-top: 20px;
  padding-bottom: 60px;
  text-align: center;
}

/*about us css*/
.page-title-mini {
  background: #f8f9fa;
  border-top: solid #dbdbdb 1px;
  border-bottom: solid #dbdbdb 1px;
  position: relative;
  margin-top: 111px;
  padding: 20px 0;
}

.page-title-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .page-title-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

.page-title-content h1 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.breadcrumb {
  position: relative;
  justify-content: center;
  font-size: 90%;
  margin: 0px 0 5px;
}

.breadcrumb a {
  font-size: 16px;
  font-weight: 300;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
}

.heading-block {
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.title-bottom-border {
  border-bottom: solid #47b2e4 2px;
}

.heading-block h4 span {
  color: #47b2e4;
}

.heading-block h4 {
  font-size: 24px;
  line-height: 28px;
  font-family: "Manrope", sans-serif;
}

.why-choose-section p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-image {
  position: relative;
  padding-bottom: 100px;
}

.about-image img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 10px 0 0;
}

.about-section .section-header h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 26px;
  font-family: "Manrope", sans-serif;
}

.about-section .section-header p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
  max-width: 760px;
  margin: 0 auto 20px;
}

.about-section ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-bottom: 20px;
}

.about-section ul li {
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
}

.about-section .fst-italic {
  font-size: 18px;
  font-weight: 600;
  color: #b3b4b5;
  font-family: "Manrope", sans-serif;
}

.about-section ul i {
  margin-right: 5px;
  color: #47b2e4;
}

.about-section p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
}

.services-area-bg {
  background: #f2f6f9;
}

.services-area-bg .section-title {
  text-align: center;
  max-width: 670px;
  margin: -6px auto 60px;
}

.services-area-bg .section-title h2 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

.services-area-bg .section-title p {
  max-width: 520px;
  margin: 10px auto 0;
}

.single-services-box {
  background-color: #fff;
  margin-bottom: 30px;
  padding: 30px 25px;
  transition: 0.5s;
  position: relative;
}

.single-services-box:before {
  content: "";
  height: 3px;
  width: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #47b2e4;
  transition: 0.5s;
}

.single-services-box .icon {
  background-color: #47b2e4;
  border-radius: 5px;
  width: 75px;
  height: 75px;
  transition: 0.5s;
  text-align: center;
  color: #fff;
  margin: 0px 0 20px;
}

.single-services-box .icon i {
  font-size: 35px;
  line-height: 75px;
}

.single-services-box h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 700;
}

.single-services-box h3 a {
  color: #000;
}

.single-services-box p {
  margin-top: 12px;
  margin-bottom: 0;
}

.single-services-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.single-services-box:hover:before {
  width: 100%;
  height: 4px;
}

.single-services-box:hover .icon {
  background-color: #000;
  color: #fff;
}

.team-area .section-title {
  text-align: center;
  max-width: 670px;
  margin: -6px auto 60px;
}

.team-area .section-title h2 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  font-family: "Manrope", sans-serif;
}

.team-area .section-title p {
  max-width: 520px;
  margin: 10px auto 0;
  font-family: "Manrope", sans-serif;
}

.single-team-box {
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #fff;
  transition: 0.5s;
  text-align: center;
}

.single-team-box .image {
  position: relative;
  overflow: hidden;
}

.single-team-box .image .social {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-decoration: none;
  opacity: 0;
  margin-top: -100px;
  padding: 8px 15px;
  background: #fff;
  border-radius: 35px;
  visibility: hidden;
  transition: 0.5s;
}

.single-team-box .image .social a {
  display: inline-block;
  color: #47b2e4;
  font-size: 17px;
  margin: 0 7px;
}

.single-team-box .content {
  padding: 25px;
  position: relative;
  transition: 0.5s;
}

.single-team-box .content h3 {
  margin-bottom: 0;
  transition: 0.5s;
  font-size: 23px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.single-team-box .content span {
  display: block;
  margin-top: 8px;
  color: #47b2e4;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

.single-team-box:hover .image .social {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.single-team-box:hover .content {
  background-color: #47b2e4;
}

.single-team-box:hover .content h3,
.single-team-box:hover .content span {
  color: #fff;
}

.single-team-box .image img {
  transition: 0.5s;
  width: 100%;
}

.single-team-box:hover .image img {
  transform: scale(1.2);
}

.contact-area .section-title {
  text-align: center;
  max-width: 670px;
  margin: -6px auto 60px;
}

.contact-area .section-title h2 {
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  font-family: "Manrope", sans-serif;
  max-width: 390px;
  margin: 0 auto 0;
  padding-bottom: 0;
}

.contact-area .section-title p {
  max-width: 520px;
  margin: 10px auto 0;
  font-family: "Manrope", sans-serif;
}

.contact-area .section-title span {
  display: block;
  color: #47b2e4;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
}

.contact-form .form-control {
  background: #f7f9fa;
  padding: 10px 20px;
  border-radius: 9px;
  border: solid #d5dee2 1px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.contact-form .btn {
  color: #fff !important;
  outline: none;
  box-shadow: none;
  background: #26aae1 !important;
}

.contact-form .btn:hover,
.contact-form .btn:focus {
  color: #fff !important;
  outline: none;
  box-shadow: none;
  background: #26aae1 !important;
}

.contact-info {
  text-align: center;
  margin-top: 60px;
}

.contact-info .contact-info-content h3 {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
}

.contact-info .contact-info-content h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
}

.contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 5px;
}

.contact-info .contact-info-content .social li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #aba5a5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .contact-info-content .social li a:hover {
  color: #fff;
  border-color: #26aae1;
  background-color: #26aae1;
}

/*USER PROFILE css*/
.profle-header {
  background: #fafafa;
  padding: 30px 20px;
  border-bottom: solid #c0c2c3 1px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.employee-header {
  background: #fafafa;
  padding: 30px 20px;
  border-bottom: solid #c0c2c3 1px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profle-header h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  text-align: center;
  margin: 0px;
}

.container-event-profle {
  padding: 20px;
  background: #fafafa;
  width: 100%;
}

.container-event-profle li {
  padding-right: 18px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 20px;
}

.container-event-profle .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: transparent;
}

.container-event-profle .nav-link a {
  font-size: 15px;
  font-weight: 400;
  line-height: 25.05px;
  color: #919597;
}

.container-event-profle li.active a {
  color: #000000;
  font-weight: 500;
}

.container-event-profle li:hover a {
  color: #000000;
}

.container-event-profle li:last-child {
  padding-right: 0px;
}

.profle-block {
  margin-top: 30px;
  background: #fff;
  border-radius: 21px;
  padding: 40px;
}

.dashboard-block {
  margin-top: 0px;
  background: #fff;
}

.profile-user {
  width: 130px;
  height: 130px;
  background: #f1f1f1;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.employee-user {
  width: 130px;
  height: 130px;
  background: #f1f1f1;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 10px; */
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: -5px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #26aae1;
  border: 2px solid #1e272e;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #26aae1;
  border-color: #26aae1;
}

.avatar-upload .avatar-edit input+label:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #fff;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 13px;
}

.avatar-upload .avatar-preview {
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.profle-block .card {
  border: solid #eee 1px;
  padding: 25px;
  border-radius: 9px;
}

.change-photo {
  background: #f7f9fa;
  border: solid #d5dee2 1px;
  padding: 8px 30px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
  border-radius: 9px;
  color: #000;
}

.change-photo:hover {
  background: #26aae1;
  color: #fff;
  border: solid #26aae1 1px;
}

.change-password {
  background: #26aae1;
  color: #fff;
  border: solid #26aae1 1px;
  padding: 8px 30px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25.05px;
  border-radius: 9px;
  margin-left: 10px;
}

.change-password:hover {
  background: #f7f9fa;
  border: solid #d5dee2 1px;
  color: #000;
}

.container-event-profle .nav-tabs {
  border: transparent;
  border-bottom: transparent;
  border-radius: 0px;
}

.container-event-profle .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: transparent;
  border: transparent;
}

.profle-block .card-body {
  padding: 30px;
}

.profle-block .form-control {
  background: #f7f9fa;
  padding: 6px 20px;
  border-radius: 9px;
  border: solid #d5dee2 1px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
  height: 44px;
}

.profle-block .form-control:focus {
  outline: none;
  box-shadow: none;
  border: solid #26aae1 1px;
}

.change-password-profile {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
}

.profle-block .section-title {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.profle-block .inputDiv label {
  font-size: 15px;
  font-weight: 600;
  line-height: 24.05px;
  text-align: left;
  margin-bottom: 10px;
}

.text-primary {
  color: #26aae1 !important;
}

.cardStyle {
  max-width: 650px;
  border: solid #eee 1px;
  padding: 25px;
  border-radius: 9px;
}

.cardStyle .formTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 30.05px;
  text-align: center;
  margin-bottom: 20px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.image-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.preview-image {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.css-13cymwt-control {
  background: #f7f9fa !important;
  padding: 0px 0px 0px 11px;
  border-radius: 9px !important;
  border: solid #d5dee2 1px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
}

.checkbox-row {
  background: #f7f9fa;
  padding: 10px;
  border-radius: 9px;
  border: solid #ccc 1px;
}

.checkbox-row label {
  display: block;
}

.checkbox-row .form-check-input {
  height: 21px;
  width: 21px;
  background-color: #fff;
  margin-right: 8px;
  border: solid #d5dee2 2px;
  border-radius: 0px;
}

.checkbox-row .form-check-input:focus {
  outline: none;
  box-shadow: none;
}

.checkbox-row .form-check-input:checked {
  background-color: #26aae1;
  border-color: #26aae1;
}

.btn-back {
  background: #26aae1;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  padding: 8px 20px;
  color: #fff;
  border: solid #26aae1 1px;
}

.btn-back:hover {
  color: #fff;
  background: #1591c4;
  border: solid #26aae1 1px;
}

.btn-back-out-line {
  border: solid #26aae1 1px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  padding: 8px 20px;
  color: #000;
  background: #fff;
}

.btn-back-out-line:hover {
  color: #fff;
  background: #26aae1;
  border: solid #26aae1 1px;
}

.input-des {
  position: relative;
}

.input-des i {
  position: absolute;
  right: -7px;
  top: -8px;
  background: #fff;
  border-radius: 100px;
}

.stop-class {
  margin-top: 16px;
}

.addDestinationBtn {
  background: #47b2e4;
  padding: 5px 15px;
  color: #fff;
  border-radius: 10px;
}

.addDestinationBtn:hover {
  color: #fff;
}

/* CSS to style excluded dates */
.rmdp-picker-container .rmdp-calendar .rmdp-calendar-grid .rmdp-day.disabled {
  color: #ccc;
  /* Change text color to gray */
  pointer-events: none;
  /* Disable pointer events */
  cursor: not-allowed;
  /* Change cursor to indicate not selectable */
}

.upload-inner-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.avatar-preview-user {
  position: relative;
  margin-top: -49px;
}

.license-wrapper {
  display: flex;
  justify-content: space-between;
}

.btn-outline-primary {
  color: #26aae1;
  border-color: #26aae1;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #26aae1;
  border-color: #26aae1;
}

.input-keep-me a {
  color: #26aae1 !important;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.form-control-date {
  padding: 10px 15px;
}

.form-control-show {
  padding: 16px 1.25rem 12px 0.75rem;
}

.addSchedule {
  display: flex;
  justify-content: flex-end;
}

.device-search-col::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 6px;
}

.device-search-col::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  border-radius: 6px;
}

.device-search-col::-webkit-scrollbar-thumb {
  background-color: var(--color-default);
  border-radius: 6px;
}

.imgg-tume {
  width: 140px;
  height: 140px;
  margin: 20px auto;
}

.imgg-tume-license {
  width: 210px;
  height: 200px;
  margin-top: 10px;
}

.imgg-tume .card-img-top {
  border-radius: 100px;
}

.employeeDetails {
  padding: 0 30px 30px;
}

/*12-072024*/
.section-healthdashboard {
  padding: 20px 0;
  background: #282727;
  height: 71vh;
}

.Vehicles-block i {
  margin-right: 8px;
}

.search-item-container .search-item .icon-radio {
  margin-left: 12px;
}

.search-item-container .search-item .icon-radio img {
  width: 15px;
}

.nav-flag {
  width: 100%;
  padding-bottom: 0px;
  border-bottom: 1px solid #eee;
}

.nav-flag .nav-li {
  display: flex;
  width: 100%;
  padding: 10px 10px 0;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.nav-flag .nav-li img {
  width: 20px;
  margin-right: 5px;
  height: 20px;
}

.nav-flag .nav-li h4 {
  margin-bottom: 0;
}

.datepicke-col .rmdp-input {
  width: 100% !important;
  height: 38px !important;
  font-size: 11px;
}

.rmdp-container {
  position: relative;
}

.date-icon {
  position: absolute;
  top: 6px;
  right: 8px;
}

.date-icon i {
  font-size: 12px;
}

.vehicles-increase-decrease {
  position: absolute;
  right: 0;
  top: 0;
}

.dropdown-block {
  cursor: pointer;
  padding: 4px 22px;
  border: solid #26aae1 1px;
  width: 88%;
  display: block;
  margin-left: 14px;
  position: relative;
  padding-left: 45px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.search-col .search-item {
  border-radius: 0;
  border-bottom: solid #eee 1px;
}

.dropdown-block i {
  background: #26aae1;
  position: absolute;
  left: 0;
  width: 35px;
  height: 32px;
  top: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-col .search-item:last-child {
  border-bottom: transparent;
}

/*
 *  STYLE 3
 */

.sidebar .nav-list::-webkit-scrollbar-track {
  border-radius: 30px;
  background-color: #425361;
}

.sidebar .nav-list::-webkit-scrollbar {
  width: 2px;
  background-color: #425361;
  border-radius: 30px;
}

.sidebar .nav-list::-webkit-scrollbar-thumb {
  background-color: #5d7283;
}

.card-dec-2 {
  padding-top: 180px;
  padding-bottom: 180px;
  background: #e8f7ff;
  height: 80vh;
}

.card-body .card-header {
  padding: 10px;
  border: transparent;
  margin-bottom: 20px;
  background: #f2faff;
}

.card-body .card-header .card-logo {
  margin-bottom: 0;
}

.card-header-block {
  background: #45abe3;
  padding: 10px;
  width: 38%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border-radius: 5px;
}

.card-body .card-header-block h5 {
  margin-bottom: 0;
  color: #fff;
}

.card-text-block {
  display: flex;
  width: 85%;
  justify-content: center;
  margin: 10px auto;
}

.card-text-block .number {
  border: solid #999 1px;
  width: 15%;
  padding: 10px;
  margin-right: 0px;
  border-radius: 0;
  border-right: transparent;
}

.card-text-block .number-dec {
  border: solid #999 1px;
  width: 29%;
  padding: 10px;
}

.customer-information {
  padding: 27px 30px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 2px 0px;
}

.customer-information .form-label {
  font-weight: 400 !important;
}

.customer-information .form-control {
  background: #fff;
  padding: 10px 20px;
  border-radius: 0;
}

.customer-information .btn {
  background: #0dcaf0;
  border-color: #0dcaf0;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 20px;
}

.row-edite {
  border: solid #eee 1px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.tripdetails-table-2 tbody,
td {
  border: solid #eee 1px;
}

.form-hader-trip {
  border-radius: 10px 10px 0 0;
  margin: 0px;
  padding: 10px;
  background: #60ccf4;
  position: relative;
}

.form-hader-trip h4 {
  color: #fff;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.form-hader-trip:after {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(10deg, #72cdf6, #72cdf6);
  transform-origin: 0px 0px;
  transform: skewY(-3deg);
  z-index: 0;
  content: "";
  border-radius: 10px 10px 0 0;
}

.row-trip-box {
  border: solid #eee 1px;
  padding: 15px;
  border-radius: 10px;
}

.tooltips {
  background: #46abe4;
  top: 100%;
  color: #fff;
  display: block;
  left: -20px;
  margin-top: 8px;
  opacity: 0;
  padding: 2px 10px;
  pointer-events: none;
  position: absolute;
  max-width: max-content;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  font-size: 13px;
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.icon-copy .tooltips:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

/* CSS Triangles - see Trevor's post */
.icon-copy .tooltips:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid #46abe4 10px;
  top: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 0;
  transform: rotate(180deg);
}

.icon-copy:hover .tooltips {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

/* IE can just show/hide with no transition */
.icon-copy .tooltips {
  display: none;
}

.icon-copy .tooltips {
  display: block;
}

.icon-copy {
  position: relative;
}

.dropdown-block2 {
  width: 94%;
  display: flex;
  height: 46px;
  background: #c4eaff;
  padding: 20px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: flex-start;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-left: 14px;
  position: relative;
}

.dropdown-block2 i {
  position: absolute;
  right: 14px;
  top: 11px;
  margin-right: 0;
}

.options-item {
  /*position: absolute;*/
  overflow-y: auto;
  padding: 10px;
  margin-top: 10px;
  background: #fff;
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  width: 100%;
}

.options-item .icon-x {
  background: #c8eaff;
  width: 20px;
  height: 25px;
  display: flex;
  justify-content: center !important;
  align-items: center;
  border-radius: 100px;
  font-size: 20px !important;
  position: absolute;
  right: 13px;
}

.react-time-picker__wrapper {
  border: 0 !important;
}

.add-zone {
  margin-bottom: 15px;
}

.sidebar.open li {
  margin-bottom: 10px;
}

.sidebar.open .nav-list .icon-down {
  position: absolute;
  right: 0;
  font-size: 14px;
  display: block;
  top: 13px;
}

.sidebar li a:hover .icon-down {
  color: #11101d;
}

.sidebar .nav-list .icon-down {
  position: absolute;
  right: -16px;
  font-size: 14px;
  display: none;
}

.sidebar .nav-list .sub-menu {
  padding-left: 18px;
}

.sidebar .nav-list .sub-menu li {
  margin-bottom: 10px;
}

.sidebar .nav-list .sub-menu li i {
  min-width: 38px;
  font-size: 17px;
  height: 40px;
  padding-left: 15px;
}

.sidebar.open .nav-list .sub-menu li i {
  min-width: 50px;
  padding-left: 0;
}

/*canva css*/
.off-canvas-right {
  top: 267px;
  width: 455px;
  border-radius: 10px;
}

.off-canvas-right .offcanvas-header {
  background: #4e4d4d;
  border-radius: 5px 5px 0 0;
}

.off-canvas-right .offcanvas-header .devices-title {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.off-canvas-right .offcanvas-header .btn-close {
  background-color: #ffffff;
  opacity: 1;
  border-radius: 100px;
  background-size: 21px 13px;
}

.canvas-inner-body pre {
  margin-bottom: 0;
  overflow-x: hidden;
}

.canvas-footer {
  border-top: solid #eee 1px;
  padding: 20px;
}

.btn-cancel {
  background: #45abe3;
  border: solid 1px #45abe3;
  padding: 6px 20px;
  float: right;
}

.device-health-dashboard-section .table th {
  background-color: #4e4d4d;
  box-shadow: none;
}

.device-health-dashboard-section {
  padding-top: 30px;
}

.device-health-dashboard-section .table-responsive {
  height: 467px;
}

/* custom scrollbar */

.device-health-dashboard-section .table-responsive::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #0e0d0d;
  border-radius: 30px;
}

.device-health-dashboard-section .table-responsive::-webkit-scrollbar {
  width: 3px;
  background-color: #0e0d0d;
  border-radius: 30px;
}

.device-health-dashboard-section .table-responsive::-webkit-scrollbar-thumb {
  background-color: #26aae1;
}

.clander-datepicker {
  position: relative;
}

.clander-datepicker .Date-Range {
  position: absolute;
  top: 37px;
}

/*12-08-2024*/
.app-header-navabar {
  position: relative;
}

.app-header-navabar .navbar-top .dropdown ul li span {
  color: #000;
  /* padding: 10px; */
}

.navbar-top {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;
}

.navbar-top #togglericon {
  visibility: hidden;
}

.navbar-top #togglericon:after {
  content: "☰";
  position: absolute;
  visibility: visible;
  color: #fff;
  font-size: 1.5rem;
  width: 1.8rem;
  height: 1.8rem;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.8rem;
  border-radius: 4px;
  border: 2px solid #ffffff00;
  top: 12px;
}

.navbar-top #togglericon:checked:after {
  color: #fff;
  border: transparent;
}

.app-header-navabar .navbar-top .nav {
  position: fixed;
  height: 46px;
  top: 40px;
  left: 0px;
  right: 0px;
  visibility: hidden;
  opacity: 0;
  padding: 8px;
  transition: all 0.5s ease;
  margin: 0px;
  display: flex;
  visibility: inherit;
  flex-direction: column;
}

.app-header-navabar .navbar-top #togglericon:checked~div.nav {
  visibility: visible;
  transition: all 0.3s ease;
  opacity: 1;
}

.app-header-navabar .navbar-top a {
  padding: 8px;
  text-decoration: none;
  color: #fff;
}

.app-header-navabar .navbar-top .nav a:hover {
  color: #000;
}

.app-header-navabar .navbar-top p {
  margin: 0;
  padding: 8px;
  color: #fff;
}

.app-header-navabar .navbar-top .dropdown {
  position: relative;
  display: block;
  color: #fff;
}

.app-header-navabar .navbar-top .dropdown label {
  display: block;
  padding: 12px 8px;
}

.app-header-navabar .navbar-top .dropdown label:after {
  position: absolute;
  content: " +";
  color: #fff;
  font-size: 0.75rem;
  top: 12px;
  margin-left: 6px;
}

.app-header-navabar .navbar-top .dropdown label:hover {
  color: #0dcaf0;
}

.app-header-navabar .navbar-top .dropdown label:hover:after {
  color: #0dcaf0;
}

.app-header-navabar .navbar-top .dropdown input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

/*.app-header-navabar .navbar-top .dropdown input:checked ~ ul {*/
/*max-height: 500px;*/
/*transition: max-height 0.5s ease;*/
/*margin: 16px 0;*/
/*}*/
.app-header-navabar .navbar-top .nav ul {
  background: #fff;
  visibility: hidden;
  opacity: 0;
  min-width: 150px;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 0px;
  left: 0;
  display: none;
  padding-left: 0;
  list-style: none;

  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
}

.app-header-navabar .navbar-top .nav .dropdown:hover ul {
  display: block;
  opacity: 1;
  visibility: inherit;
}

.app-header-navabar .navbar-top .dropdown a {
  color: black;
  text-decoration: none;
  font-weight: normal;
}

.app-header-navabar .navbar-top .dropdown ul li:last-child {
  border-bottom: transparent;
}

.navbar #togglericon:checked~div.nav {
  visibility: visible;
  transition: all 0.3s ease;
  opacity: 1;
}

.app-header-navabar .navbar-top .dropdown ul:hover {
  opacity: 1;
  display: block;
  visibility: inherit;
}

/* helpers */

.selected-mobile .form-control-date {
  padding: 10px 15px;
  border: 1px solid rgba(213, 222, 226, 1);
  background-color: rgba(247, 249, 250, 1);
  border-radius: 9px;
}

.notranslate .btn {
  font-size: 0px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0px;
  background: #fff !important;
  border: transparent;
}

/*16-08-2024*/

.managementui-tab .nav-link.active {
  background: transparent;
  border: transparent;
  font-weight: bold;
  color: #333;
  position: relative;
}

.managementui-tab .nav-link.active span {
  color: #26aae1;
}

.managementui-tab .nav-link:hover {
  color: #26aae1;
}

.managementui-tab .tab-nav .sub-tabs li.sub-tab.active {
  background: transparent;
}

.managementui-tab .dashboard-block {
  margin-top: 0px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #e0e0e0;
}

.add-btn {
  display: flex;
  align-items: center;
}

.add-btn .plus-circle {
  margin-top: -5px;
}

.managementui-tab .tabs-management {
  justify-content: flex-start;
}

.managementui-tab {
  top: 0 !important;
  padding: 1px 0 27px !important;
}

.managementui-tab .dashboard-block .page-header-row {
  margin-bottom: 12px;
}

.managementui-tab .pagination {
  padding-bottom: 20px;
  padding-left: 20px;
}

.fixed-header .app-main {
  overflow-x: hidden;
}

.leaflet-control-var .tabs {
  display: flex;
  max-width: 100%;
  justify-content: flex-start;
  height: 100%;
}

.selected-mobile .css-t3ipsp-control:hover {
  border: 1px solid rgba(38, 170, 225, 1) !important;
}

.company-section .form-control {
  background: #f7f9fa;
  /*border-radius: 9px;*/
}

.setting-profle .profle-block {
  max-width: 550px;
  margin: 0 0 30px;
  padding: 30px 25px;
}

.title-setting {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.selected-mobile .form-control.form-control-date {
  padding-right: 13px;
}

.leaflet-control-var {
  position: relative !important;
}

.leaflet-control-var .tabs {
  display: flex;
  max-width: 100%;
  justify-content: flex-start;
}

.leaflet-control-var .tab-nav {
  width: 25%;
  margin-right: 15px;
}

.leaflet-control-var .tabs-management {
  display: block;
}

.leaflet-control-var .tabs-management li {
  width: 100%;
  border-bottom: solid #eee 1px;
}

.leaflet-control-var .tabs-management li:last-child {
  border-bottom: transparent;
}

.leaflet-control-var .tabs-management .nav-link:first-child {
  margin-left: 0px;
}

.leaflet-control-var .dashboard-block {
  width: 100%;
  padding-left: 20px;
  margin-top: 14px;
  padding-bottom: 20px;
  background: #e0e0e0;
  border: 1px solid #cacbce;
}

.leaflet-control-var .card {
  margin-top: 20px;
  padding: 20px;
  width: 99%;
  /* overflow-x: scroll; */
}


.leaflet-control-var .tabs-management {
  display: block;
  border: 1px solid #cacbce;
  margin: 15px 10px 0px;
  width: 99%;
}

.inner-header-back {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  padding-left: 13px;
  padding-right: 13px;
}

.back-btn {
  border: transparent;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  font-size: 0.88em;
  line-height: 1.42857143;
  padding-left: 0;
}

.css-t3ipsp-control:hover {
  border: transparent !important;
}

.css-1fdsijx-ValueContainer {
  padding: 0px !important;
}

.col-form-label {
  font-size: 15px;
}

.css-1jqq78o-placeholder {
  font-size: 14px;
}

.form-check-label {
  font-size: 14px;
}

.leaflet-control-var .card h4 {
  font-size: 14px;
  font-weight: 600;
}

.leaflet-control-var h5 {
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  margin-bottom: 5px;
}

.show-box {
  border: 1px solid rgb(238, 238, 238);
  border-radius: 5px;
  padding: 12px;
}

.app-header__content .header-user-profile .css-13cymwt-control {
  border: transparent !important;
  background: #fff;
  font-size: 14px !important;
  line-height: 19px !important;
  min-height: 34px !important;
}

.header-user-profile .css-1u9des2-indicatorSeparator {
  background: transparent;
}

.add-vehicle-rw {
  border: solid #eee 1px;
  padding: 20px 20px 30px;
  border-radius: 5px;
  margin: 10px;
}

.mt-44 {
  margin-top: 10px;
}

.mt-40 {
  margin-top: 44px;
}

/*11-9-24*/
.css-t3ipsp-control {
  padding-left: 20px;
}

.general-ac .css-13cymwt-control {
  line-height: 15.05px !important;
}

.general-ac .css-b62m3t-container .css-13cymwt-control {
  font-size: 14px;
}

.general-ac .btn-delete {
  border: 1px solid #bf2437;
  padding-left: 17px;
  padding-right: 17px;
  color: #bf2437;
  background-color: transparent;
}

.general-ac .btn-delete i {
  color: #bf2437;
}

.general-ac table thead th {
  background: rgba(188, 195, 197, 0.2) !important;
  color: #919597;
  text-align: center;
  width: 200px;
}

.general-ac table thead th:after {
  display: none;
}

.general-ac table tbody td {
  padding: 3px 7px 2px 0px;
  text-align: center;
  position: relative;
}

.general-ac table {
  box-shadow: 0 0 0 1px #919597;
  border-radius: 9px;
}

.general-ac table tbody td:last-child:after {
  display: none;
}

.general-ac table thead th:first-child {
  border-radius: 9px 0px 0px 0px;
}

.general-ac table thead th:last-child {
  border-radius: 0px 9px 0px 0px;
}

.general-ac .vehicle-td td {
  text-align: center;
  padding-left: 0;
}

.Segments {
  font-size: 15px;
}

.alertInput {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #f7f9fa;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.workingP table tbody td {
  padding: 10px 7px 9px 30px !important;
}

.image-preview-container img {
  width: 200px;
}

/*13-09-24*/
.selectionOption .css-b62m3t-container .css-13cymwt-control {
  color: #283645 !important;
  border-color: #a2a8af !important;
  border-radius: 0 !important;
  min-height: 40px !important;
}

.Content h3,
h5 {
  font-size: 15px;
  margin-bottom: 0;
  text-align: end;
}

.Content p {
  margin-bottom: 0;
  font-size: 13px;
  color: #888383;
}

.Content h5 {
  color: #29abe2;
}

.custom-table .table th {
  border: 1px solid #c6c7c8;
  font-size: 13px;
}

.custom-table .table td {
  border: 1px solid #c6c7c8;
  font-size: 13px;
}

.Content h3,
h5 {
  font-size: 15px;
  margin-bottom: 0;
  text-align: end;
}

.Content p {
  margin-bottom: 0;
  font-size: 13px;
  color: #888383;
}

.Content h5 {
  color: #29abe2;
}

.custom-table .table th {
  border: 1px solid #c6c7c8;
  font-size: 13px;
}

.custom-table .table td {
  border: 1px solid #c6c7c8;
  font-size: 13px;
  padding: 4px;
}

.tablePageMain {
  display: flex;
  justify-content: space-between;
}

.table-title h5 {
  text-align: left;
  padding-left: 10px;
  padding-top: 10px;
  color: #fff;
}

.table-title {
  background: #45abe3;
  padding-bottom: 10px;
}

.table-title span {
  padding-left: 10px;
}

.signatures-right {
  float: right;
  width: 430px;
}

.signatures-right span {
  font-size: 9pt;
  float: left;
}

.signatures-right .issue-by {
  margin-top: 14px;
  float: left;
}

.signatures-right .issue-by .line {
  width: 330px;
}

.signatures-right .line {
  margin: 12px 0 0 10px;
  border-top: 1px dashed #000;
  float: left;
}

.signatures-right .line em {
  margin-top: 5px;
  text-align: center;
  font-size: 8pt;
  display: block;
}

.authorization .line {
  width: 235px;
}

.authorities h5 {
  color: #888383;
  font-size: 13px;
}

.authorities {
  margin-bottom: 25px;
}

.authorities p {
  text-align: end;
}

.totalsB {
  border: 1px solid #c5c1c1;
  margin: 10px;
}

.table-titled {
  background: #5b5e60;
  margin-top: 25px;
}

.routes {
  display: flex;
}

.routes .route {
  padding-right: 72px;
}

.progressbar {
  background: #878383;
  width: 96%;
  height: 20px;
}

.example {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.example h3 {
  width: 80px;
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
}

.linear-progress {
  background-color: #706d6d;
  height: 17px;
  width: 89%;
}

.linear-progress-100 {
  width: 100%;
}

.linearProgress {
  background-color: #706d6d;
  height: 17px;
  width: 16%;
}

.VehicleDate {
  text-align: end;
}

@media (max-width: 480px) {
  .tablePageMain {
    display: block;
  }

  .Content h3,
  h5 {
    text-align: start;
  }

  .authorities p {
    text-align: start;
  }

  .signatures-right {
    float: none;
  }

  .routes {
    display: block;
  }

  .example {
    display: block;
  }

  .example h3 {
    text-align: left;
  }

  .VehicleDate {
    text-align: left;
  }
}

.tablePageMain {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .tablePageMain {
    display: block;
  }

  .Content h3,
  h5 {
    text-align: start;
  }
}

.add-btn-circle i {
  color: #fff;
}

.page-header-task-vehical .selected-mobile {
  display: block;
}

.page-header-task-vehical .selected-mobile p {
  margin-bottom: 5px;
}

.company-section-Area .input-group.date {
  display: block;
}

.company-section-Area .selected-block {
  display: block;
}

/*.company-section-Area .selected-mobile p {*/
/*margin-bottom: 5px;*/
/*}*/

.company-section-Area .form-control {
  width: 100%;
}

.page-tableactiviti .icon-radio {
  display: inline-block;
}

/*23-08-24*/
.vehicle-td td {
  text-align: center;
}

.vehicle-td input[type="checkbox"] {
  position: relative;
  border: 2px solid #169ae7;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 3px 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  opacity: 0.5;
}

.app-theme-white.app-container {
  background: #ffff;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgba(175, 172, 172, 0.05) !important;
  /* rgba(188, 195, 197, 0.2) */
  color: var(--bs-table-striped-color);
}

.css-b62m3t-container .css-13cymwt-control {
  border: 1px solid rgba(213, 222, 226, 1);
  background-color: rgba(247, 249, 250, 1) !important;
  border-radius: 9px !important;
  min-height: 44px !important;
  margin-top: 12px;
  -webkit-transition: inherit !important;
  transition: inherit !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 30.05px;
  color: var(--color-black);
}

.selected-mobile .form-control {
  border: 1px solid rgba(213, 222, 226, 1);
  background-color: rgba(247, 249, 250, 1);
  padding: 12px 2.25rem 12px -0.25rem;
  height: 44px;
  /*border-radius: 9px !important;*/
}

.css-b62m3t-container .css-13cymwt-control:hover {
  border: #26aae1 1px solid;
}

.css-b62m3t-container .css-13cymwt-control:focus {
  border-color: #26aae1;
}

.leaflet-control-var .input-div {
  margin-bottom: 0;
}

.css-b62m3t-container .css-13cymwt-control {
  margin-top: 0px !important;
  margin-bottom: 0 !important;
}

.card-primary-profile .css-b62m3t-container .css-13cymwt-control {
  margin-top: 0px !important;
  margin-bottom: 0 !important;
}

.placeType {
  margin-top: 37px;
}

.srchPlace {
  /*margin-left: 13px;*/
  border-radius: 9px;
  min-height: 44px;
}

.refrigerated {
  margin-top: 45px;
}

/*all page reponsive css*/

@media screen and (max-width: 1880px) {
  .sidebar .setting-out {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1792px) {
  .wave {
    width: calc(100% - 590px);
  }

  .login-content {
    transform: translate(0px, 10px);
  }

  .welcome-content {
    left: -66px;
  }

  .col-datepicker-3 {
    width: calc(40% - 0px);
  }
}

@media screen and (max-width: 1552px) {
  .wave {
    width: calc(100% - 430px);
  }

  .login-content {
    transform: translate(4px, 10px);
  }

  .welcome-content {
    left: -26px;
  }

  .css-13cymwt-control {
    padding: 0px 0px 0px 4px !important;
  }

  .css-1xc3v61-indicatorContainer {
    padding: 3px !important;
  }

  .driverActionBtn {
    display: flex !important;
  }
}

@media screen and (max-width: 1440px) {
  .wave {
    width: calc(100% - 380px);
  }

  .login-content {
    transform: translate(0px, 10px);
  }

  .welcome-content {
    left: -26px;
  }

  .driverActionBtn {
    display: flex !important;
  }

  .css-13cymwt-control {
    padding: 0px 0px 0px 4px !important;
  }

  .css-1xc3v61-indicatorContainer {
    padding: 3px !important;
  }
}

@media screen and (max-width: 1366px) {
  .wave {
    width: calc(100% - 407px);
  }

  .login-content {
    transform: translate(0px, 10px);
  }

  .welcome-content {
    left: -26px;
  }

  .col-datepicker-3 {
    width: calc(43% - 0px);
  }

  .btn {
    font-size: 12px;
    padding: 7px 13px;
  }

  .sidebar .setting-out {
    margin-top: 6px;
  }

  .log_out {
    padding-top: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-centered {
    justify-content: center;
  }

  .app-header-navabar .navbar-top .dropdown ul li:hover span {
    color: #fff;
  }

  .app-header__logo {
    margin-right: 20px;
  }

  .app-header-navabar .navbar-top .nav {
    justify-content: flex-start;
    padding: 0px;
  }

  .app-header-navabar .navbar-top .nav * {
    margin-right: 12px;
    /* color: #fff; */
    border: transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .app-header-navabar .navbar-top .nav *:last-child {
    margin-right: 0px;
  }

  .app-header-navabar .navbar-top .nav {
    opacity: 1;
    visibility: inherit;
    background: transparent;
    display: flex;
    top: 0;
    height: 46px;
    position: relative;
  }

  .toggler {
    display: none;
  }

  .navbar-top {
    top: 0;
    display: flex;
  }

  .app-header-navabar .navbar-top .nav a:hover {
    color: #58ace5;
  }

  .app-header-navabar {
    width: auto;
  }

  .app-header .app-header__content {
    height: 48px !important;
    padding: 0 1.5rem 0 0;
  }

  .app-header-navabar .navbar-top .dropdown label:after {
    color: #fff;
  }

  .app-header-navabar .logo-src a {
    padding: 0px;
  }

  .app-header-navabar .navbar-top .home-dropdown li {
    padding-top: 12px;
    margin-top: 0px;
  }

  .app-header-navabar .navbar-top .nav .dropdown ul li {
    padding: 5px 8px;
    border-bottom: 1px solid #ececec;
    margin-right: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .app-header-navabar .navbar-top .nav .dropdown ul li:last-child {
    border: transparent;
  }

  .app-header-navabar .navbar-top .nav .dropdown ul li:hover {
    background: #58ace5;
  }
}

@media screen and (max-width: 1024px) {

  .tachnographBtn {
    top: 30px !important;
    left: 12px;
  }

  .tachnoCard {
    width: 99% !important;
    overflow-x: scroll !important;
  }

  /* Scrollbar Styling */
  .tachnoCard::-webkit-scrollbar {
    width: 6px;
  }

  .tachnoCard::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .tachnoCard::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d;
  }

  .navbar #togglericon:checked~div.nav,
  .navbar #togglericon~div.nav {
    visibility: visible;
  }

  .app-header-navabar .navbar-top #togglericon:checked~ul.nav {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .app-header-navabar .navbar {
    background-color: #0dcaf0;
    flex-direction: row;
    display: flex;
    visibility: visible;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    box-shadow: 0px 1px 5px 0px #88888888;
  }

  .app-header-navabar .navbar-top .navbar form {
    border-top: 0px;
    border-bottom: 0px;
    padding: 8px;
  }

  .app-header-navabar .navbar-top .nav {
    position: fixed;
    display: block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    background-color: #fff;
    height: auto;
  }

  .at-center {
    position: absolute;
  }

  .at-right {
    position: absolute;
    justify-content: flex-end;
  }

  .app-header-navabar .navbar-top .dropdown {
    margin-right: 0;
    color: #000;
    border-bottom: solid #eee 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li {
    width: 100%;
    margin: 0;
    padding: 8px;
    display: flex;
    border-bottom: solid #d7d7d7 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li a {
    padding: 5px;
    margin: 0;
    display: block;
    width: 100%;
    white-space: normal;
  }

  .app-header-navabar {
    width: 100%;
  }

  .app-header-navabar .navbar-top .dropdown:hover ul {
    position: relative;
    display: block;
    background: #fff;
    visibility: inherit;
    opacity: 1;
  }

  .app-header__logo .logo-src {
    width: 31px !important;
  }

  .app-header .app-header__content {
    height: 46px !important;
  }

  .app-header-navabar .navbar-top a {
    color: #000;
  }

  .navbar-top #togglericon:after {
    top: 8px;
    left: 70px;
  }

  .navbar-top {
    top: 12px;
  }

  .app-header-navabar .navbar-top .dropdown label:after {
    color: #000;
  }

  .app-header__logo .logo-src a {
    padding: 0;
  }

  .app-header-navabar .navbar-top .dropdown:last-child {
    border-bottom: transparent;
  }

  .css-b62m3t-container .css-13cymwt-control {
    line-height: 21.05px;
  }
}

@media screen and (max-width: 820px) {

  .navbar #togglericon:checked~div.nav,
  .navbar #togglericon~div.nav {
    visibility: visible;
  }

  .app-header-navabar .navbar-top #togglericon:checked~ul.nav {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .app-header-navabar .navbar {
    background-color: #0dcaf0;
    flex-direction: row;
    display: flex;
    visibility: visible;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    box-shadow: 0px 1px 5px 0px #88888888;
  }

  .app-header-navabar .navbar-top .navbar form {
    border-top: 0px;
    border-bottom: 0px;
    padding: 8px;
  }

  .app-header-navabar .navbar-top .nav {
    position: fixed;
    display: block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    background-color: #fff;
    height: auto;
  }

  .at-center {
    position: absolute;
  }

  .at-right {
    position: absolute;
    justify-content: flex-end;
  }

  .app-header-navabar .navbar-top .dropdown {
    margin-right: 0;
    color: #000;
    border-bottom: solid #eee 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li {
    width: 100%;
    margin: 0;
    padding: 8px;
    display: flex;
    border-bottom: solid #d7d7d7 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li a {
    padding: 5px;
    margin: 0;
    display: block;
    width: 100%;
    white-space: normal;
  }

  .app-header-navabar {
    width: 100%;
  }

  .app-header-navabar .navbar-top .dropdown:hover ul {
    position: relative;
    display: block;
    background: #fff;
    visibility: inherit;
    opacity: 1;
  }

  .app-header__logo .logo-src {
    width: 31px !important;
  }

  .app-header .app-header__content {
    height: 46px !important;
  }

  .app-header-navabar .navbar-top a {
    color: #000;
  }

  .navbar-top #togglericon:after {
    top: 8px;
    left: 70px;
  }

  .navbar-top {
    top: 12px;
  }

  .app-header-navabar .navbar-top .dropdown label:after {
    color: #000;
  }

  .app-header__logo .logo-src a {
    padding: 0;
  }

  .app-header-navabar .navbar-top .dropdown:last-child {
    border-bottom: transparent;
  }
}

@media screen and (max-width: 768px) {

  .tachnoTab-nav {
    display: block !important;
  }

  .navbar #togglericon:checked~div.nav,
  .navbar #togglericon~div.nav {
    visibility: visible;
  }

  .app-header-navabar .navbar-top #togglericon:checked~ul.nav {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
  }

  .app-header-navabar .navbar {
    background-color: #0dcaf0;
    flex-direction: row;
    display: flex;
    visibility: visible;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    box-shadow: 0px 1px 5px 0px #88888888;
  }

  .app-header-navabar .navbar-top .navbar form {
    border-top: 0px;
    border-bottom: 0px;
    padding: 8px;
  }

  .app-header-navabar .navbar-top .nav {
    position: fixed;
    display: block;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    background-color: #fff;
    height: auto;
  }

  .at-center {
    position: absolute;
  }

  .at-right {
    position: absolute;
    justify-content: flex-end;
  }

  .app-header-navabar .navbar-top .dropdown {
    margin-right: 0;
    color: #000;
    border-bottom: solid #eee 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li {
    width: 100%;
    margin: 0;
    padding: 8px;
    display: flex;
    border-bottom: solid #d7d7d7 1px;
  }

  .app-header-navabar .navbar-top .dropdown ul li a {
    padding: 5px;
    margin: 0;
    display: block;
    width: 100%;
    white-space: normal;
  }

  .app-header-navabar {
    width: 100%;
  }

  .app-header-navabar .navbar-top .dropdown:hover ul {
    position: relative;
    display: block;
    background: #fff;
    visibility: inherit;
    opacity: 1;
  }

  .app-header__logo .logo-src {
    width: 31px !important;
  }

  .app-header .app-header__content {
    height: 46px !important;
  }

  .app-header-navabar .navbar-top a {
    color: #000;
  }

  .navbar-top #togglericon:after {
    top: 8px;
    left: 54px;
  }

  .navbar-top {
    top: 12px;
  }

  .app-header-navabar .navbar-top .dropdown label:after {
    color: #000;
  }

  .app-header__logo .logo-src a {
    padding: 0;
  }

  .app-header-navabar .navbar-top .dropdown:last-child {
    border-bottom: transparent;
  }

  .tabs-management li {
    padding: 9px 9px;
  }

  .btn-circle {
    margin-top: 10px;
  }

  .general-ac table {
    box-shadow: 0 0 0 1px #fff;
  }

  .managementui-tab .pagination {
    padding-left: 0;
    padding-top: 20px;
  }

  .placeType {
    margin-top: 0;
  }

  .srchPlace {
    margin-left: 0;
  }

  .navbar-mobile a {
    border-bottom: 1px solid #47b2e4;
  }

  .refrigerated {
    margin-top: 0;
  }

  .tabs-vehicle li {
    padding: 9px 7px;
  }

  .tabs-vehicle li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .hamburger-map {
    width: 95%;
    top: 341px;
    right: 20px;
  }

  .leaflet-control-vehicle {
    width: 94%;
    left: 32px;
    top: 81px;
    padding: 15px;
  }

  .company-section .col-xl-2 {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 480px) {
  .section-healthdashboard .col-xl-3 {
    padding-bottom: 20px;
  }

  .event-profle .col-md-4 {
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
  }

  .event-profle .col-md-8 {
    width: 100%;
  }

  .page-table-row {
    overflow-x: auto;
    border: 1px solid #a9acae;
    border-radius: 9px;
  }

  .selected-block {
    margin-bottom: 20px;
  }

  .page-table-row .btn {
    margin-bottom: 5px;
  }

  .profle-block .card {
    padding: 0px 10px;
  }

  .profle-block .card .card-body {
    padding: 0px;
  }

  .profle-block {
    padding: 20px;
  }

  .healthdashboard-block {
    padding: 20px !important;
    border-radius: 20px !important;
  }

  .app-header-navabar .navbar-top .nav {
    top: 50px;
  }

  .mobile-nav-toggle {
    color: #000;
  }

  .leaflet-control-vehicle {
    width: 94%;
    left: 8px;
  }

  .fleet-tracking h2 {
    line-height: 41.13px;
    font-size: 34px;
  }

  .footer-top {
    padding-bottom: 30px;
  }

  .footer-links ul {
    margin: 8px;
    display: block;
  }
}

@media screen and (max-width: 344px) {
  .navbar-top #togglericon:after {
    top: 12px;
    left: 49px;
  }

  .header-user-profile {
    margin-left: 5px;
  }

  .tabs-management li {
    padding: 9px 9px;
  }
}

.driving {
  display: flex;
}

.driving span {
  background: red;
  width: 20px;
  height: 3px;
  position: relative;
  display: block;
  top: 10px;
}

.driving p {
  margin-left: 4px;
  margin-right: 25px;
}

.tabContent {
  display: flex;
}

.driving .colorGreen {
  background: green;
}

.driving .colorYellow {
  background: #eda236;
}

.driving .colorGrey {
  background: #a4b0cb;
}

.driving .colorWhite {
  background: #d9dfea;
}

.driving .colorBlue {
  background: #004b95;
}

.tab-content {
  margin-top: 18px;
}

/* tachograph */
.leaflet-control-var .tachnoTab {
  display: block;
}

.tachnoTab .tabs-management {
  display: flex;
}

.dashboardTachno .dashboard-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 0px;
}

.tachnoDashboard {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0px !important;
}

/* .tachnoCard {
  width: fit-content !important;
} */

.hover-info {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.hide {
  display: none;
}

.myDIV:hover+.hide {
  display: block;
  color: red;
}

.tachnoBtn {
  background: red;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
}

.tachnoTitle {
  color: #000;
  font-weight: 500;
}

.tachnodates {
  color: #5f5858;
}

.alert {
  padding: 4px 1rem;
}

.yellowBg {
  background: #eda134;
}

.dashboardTachno .tabs-management {
  border: none;
}

.weekly {
  display: flex !important;
  justify-content: center !important;
}

.weeklyManagement li:before {

  display: none;
}

.tachnographBtn {
  z-index: 9;
  position: relative;
  bottom: 0;
  top: 13px;
}

.dashboardTachno {
  position: relative;
}

.tachnoAlert {
  display: flex;
  justify-content: space-between;
}

.tachnographBtnbg {
  background: #0065a4;
}

.leaflet-control-var .tachnoCard {
  width: fit-content;
  margin-top: 20px;
  padding: 20px;
}

.checkIcon {
  margin-left: 10px;
  font-size: 17px;
}

.tachnoTab {
  max-width: 79% !important;
}

.tachnoTab-nav {
  display: flex;
  justify-content: space-between;
}

.datePicker .rmdp-input {
  background: transparent !important;
  padding: 0px 0px 0px 9px !important;
  border-radius: 9px !important;
  border: solid #d5dee2 0px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
}

.tachnoT {
  box-shadow: none !important;
  border-radius: 0 !important;
  border: 0 !important;
}

.tachnoT td {
  border: none !important;
  border-bottom: 1px solid #eee !important;
  color: #000 !important;
}

.tachnoT th {
  border: none !important;
  border-bottom: 1px solid #eee !important;
  color: #000 !important;
}
.reports-date .rmdp-input:focus{
  border: 0 !important;
}
.datePicker .rmdp-container .rmdp-input{
  width: 100%;
  height: 43px;
  border: solid #d5dee2 1px;
}
.trackingTitle{
  text-align: left;
  color: #26aae1;
  margin-bottom: 16px;
  font-weight: 800;
}
.point-flag-blue {
  color: #0081c9;
}
.point-flag-green{
  color:#75cc18;
}
.point-flag-red{
  color: #e02d36;
}

/*27-01-2025*/
.marker-info-box {
  position: absolute;
  top: 77px;
  left: 320px;
  background: rgba(255, 255, 255, 1);
  border-radius: 5px;
  width: 250px;
  padding: 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.marker-info-box-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 0px 0;
}

.marker-info-box-header span {
  font-size: 11px;
  font-weight: 700;
  margin-left: 15px;
}

.marker-info-box-header .icon-target i {
  color: #ff3636;
}

.box-not-selected p {
  font-size: 11px;
  font-weight: 400;
  color: #545f71;
  margin-top: 10px;
  padding: 0 10px 10px 0px;
}

.info-box-close {
  border-top: 2px solid #26aae1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  cursor: pointer;
}

.info-box-close {
  border-top: 2px solid #26aae1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  width: 100%;
  box-shadow: none;
  border-right: transparent;
  border-left: transparent;
  border-bottom: transparent;
  background: transparent;
}

.gm-style-iw-chr .gm-ui-hover-effect {
  background: #fff !important;
  color: #45abe3 !important;
  border: 1px solid #45abe3 !important;
  outline: none;
  border-radius: 100px;
  width: 25px !important;
  height: 25px !important;
  margin: 0 auto !important;
  right: 1px;
  top: 0px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.gm-style-iw-chr .gm-ui-hover-effect > span {
  background-color: #000;
  opacity: 1;
  width: 18px !important;
  height: 18px !important;
  margin: 0px !important;
}

.box-not-selected h5 {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 0;
}

.info-accordion .accordion-button {
  padding: 10px 0;
  border: transparent;
  background: transparent;
  font-size: 14px;
  color: #000;
}

.info-accordion .accordion-button[aria-expanded="true"] {
  color: #26aae1;
}

.info-accordion .accordion-item {
  border-bottom: solid #bbbbbb 1px;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
}

.info-accordion .accordion-item:last-child {
  border-bottom: transparent;
}

.info-accordion h6 {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.info-accordion .accordion-body {
  padding: 10px 0;
}

.ui-user i {
  font-size: 40px;
}

.ui-user p {
  font-size: 11px;
  font-weight: 400;
  color: #000;
}

.info-accordion .ui-user h6 {
  font-size: 11px;
  font-weight: 400;
  color: #000;
}

.info-accordion p {
  font-size: 11px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.gps-row {
  width: 100%;
  text-align: right;
  padding: 10px 0;
}

.div-ul-2 p i {
  color: green;
  font-size: 14px;
  margin-right: 6px;
}

.gps {
  background: #ccc;
  max-width: 37px;
  margin-left: auto;
  padding: 5px;
  font-size: 13px;
  font-weight: 400;
}

.row-11 {
  display: flex;
  justify-content: space-between;
}

.info-accordion .accordion-button::after {
  background-color: #e0f3ff;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  background-size: 0.95rem;
  background-repeat: no-repeat;
  background-position: center;
}
.team-area-custom .section-title {
  max-width: 1250px;
  margin: -6px auto 20px;
}
.team-area-custom .section-title  h2 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  font-family: "Manrope", sans-serif;
}
.team-area-custom .section-title p {
  max-width: 100%;
  margin: 10px auto 0;
  font-size: 15px;
  font-weight: 400 !important;
  font-family: "Manrope", sans-serif;
}
.section-content p {
  font-size: 16px;
  line-height: 26px;
  color: #1e272e;
  font-family: "Manrope", sans-serif;
}
.section-content h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.section-content h3 span {
  color: #47b2e4;
  font-weight: 400;
}

.close-button-modal {
  position: absolute;
  right: 88px;
  top: 22px;
  border: solid #26aae1 1px;
  border-radius: 100%;
  opacity: 1;
  width: 24px;
  height: 24px;
  padding: 0 !important;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-button-modal span {
    position: relative;
    top: -2px;
    font-size: 20px;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing .plan {
    background-color: #fff;
    /*padding: 2.5rem;*/
    margin: 12px 15px 55px;
    border-radius: 5px;

    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: solid #eee 1px;
    width: 25%;
}
.pricing .plan.popular .card-body {
  padding: 2.5rem 1.5rem;
}

.pricing .plan h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing .plan .price {
    margin-bottom: 1rem;
    font-size: 30px;
}

.pricing .plan ul.features {
    list-style-type: none;
    text-align: left;
}

.pricing .plan ul.features li {
    margin: 8px;
}

.pricing .plan ul.features li .fas {
    margin-right: 4px;
}

.pricing .plan ul.features li .fa-check-circle {
    color: #26aae1;
}

.pricing .plan ul.features li .fa-times-circle {
    color: #eb4d4b;
}

.pricing .plan button {
    border: none;
    width: 100%;
    padding: 12px 35px;
    margin-top: 1rem;
    background-color: #26aae1;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.pricing .plan.popular {
    border: 1px solid #26aae1;
    position: relative;
    transform: scale(1.08);
}

.pricing .plan.popular span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #26aae1;
    color: #fff;
    padding: 4px 20px;
    font-size: 14px;
    border-radius: 5px;
}

.pricing .plan:hover {
    box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
}

.mt-50 {
    margin-top: 50px;
}
.card-deck-custom-scroll {
  overflow-x: hidden;
  max-height: 444px;
  padding: 39px 20px 20px;
  overflow-y: auto;
}
.list-unstyled ul {
  margin: 0px;
  padding: 0;
  list-style: none;
}

.list-unstyled ul li {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
  padding: 5px 0 5px 30px;
  border-bottom: 1px dashed #dddddd;
  text-align: left;
}
.pricing-block .features li:before {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 16px;
  color: #2bd40f;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-top: -8px;
}

.subscriptions-blox-custom  .promo li {
  position: relative;
  font-size: 13.79px;
  font-weight: 400;
  line-height: 23.03px;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  border-bottom: 1px dashed #4c5a66;
  padding: 10px 0 10px 33px;
  margin-top: 0;
}
.subscriptions-blox-custom .promo li:before {
  border-radius: 100px;

}

/*.subscriptions-blox-custom {*/
  /*position: absolute;*/
/*}*/

.subscriptions-blox-custom .promos {
    text-align: center;
    max-width: 100%;
    padding: 0px 30px 30px;
    overflow-x: auto;
    /* max-height: 620px; */
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}
.subscriptions-blox-custom .bootstrap-switch-container {
  background: #fff;
}

.subscriptions-blox-custom .promo .price {
  font-size: 36.27px;
  font-weight: 700;
  line-height: 70.6px;
  text-align: center;
}

.subscriptions-blox-custom .promo ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

@media (min-width: 40em) {
  .subscriptions-blox-custom .promos .promo {
    width: 18%;
    margin: 1em 5px 0;
    padding: 0px;
    transform: inherit;
    position: relative;
  }
}

.subscriptions-blox-custom .promos .promo .buy-custom-btn {
  font-weight: bold;
  margin: auto 3em auto 3em;
  padding: 0.75em 2em;
  color: #fff;
  border-radius: 30px;
  -webkit-transition: background-color 0.5s;
  border: transparent;
  box-shadow: inset 0 0 0 50px #26aae1;
  transition: ease-out 0.5s;
    position: absolute;
    bottom: 30px;
}
.promo .buy-custom-btn:hover {
  box-shadow: inset 0 0 0 0 #303439;
}



.subscriptions-blox-custom .promos .promo .card {
  background: transparent;
  border: transparent;
  box-shadow: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.subscriptions-blox-custom .promos .promo .card .card-header {
  border: transparent;
  background: transparent;
  padding: 30px 20px 0;
}
.subscriptions-blox-custom .promos .promo .card .card-body{
    padding: 7px 20px 30px;
    position: relative;

}



/*.subscriptions-blox-custom .promos .promo-active .buy-custom-btn {*/
    /*background-color: #fff;*/
    /*color: #000;*/
    /*box-shadow: inset 0 0 0 50px #fff;*/
/*}*/


.subscriptions-blox-custom .promo li:last-child{border: transparent;}


.subscriptions-blox-custom .bootstrap-switch-off .bootstrap-switch-handle-off {
  background: #26aae1 !important;
  color: #fff !important;
}
.subscriptions-blox-custom .bootstrap-switch-on .bootstrap-switch-primary {
  background: #26aae1 !important;
}



.inner-body-card {
    height: 250px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none; /* Firefox */
}
.inner-body-card::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}
.most-h {
  display: block;
  text-align: center;
  height: 25px;
}

.subscriptions-blox-custom-2 {
  top: 0;
  left: 0;
  right: 0;
}

.subscriptions-blox-custom .promos .promo .active-plan-btn {
  box-shadow: inset 0 0 0 50px gray;
}

.card-details-custom {
  padding: 20px 40px;
}
.card-details-custom li {
  width: 50%;
  margin-top: 10px;
}
.card-details-custom ul {
  border: solid #eee 1px;
  padding: 20px;
}

@media only screen and (max-width: 1600px) {
  .subscriptions-blox-custom .promo .price {font-size: 30px;line-height: 70px;}
  .promo .buy-custom-btn {margin: 0 auto;}
  .inner-body-card {  max-height: inherit;height: 200px;}
}

@media only screen and (max-width:1440px) {
  .subscriptions-blox-custom .promo .price {font-size: 28px;line-height: 60px;}
    .inner-body-card {  max-height: inherit;height: 200px;}
}

@media only screen and (max-width:1366px) {
  .subscriptions-blox-custom .promos .promo {width: 19%;}
}
@media only screen and (max-width:1280px) {
    .subscriptions-blox-custom .promos .promo {width: 19%;}
    .inner-body-card {max-height: inherit;height: 414px;}
}
@media only screen and (max-width:1180px) {
  .subscriptions-blox-custom .promos .promo {width: 24%;}
}
@media only screen and (max-width:1024px) {
  .subscriptions-blox-custom .promos .promo {width: 46%;}
    .inner-body-card {max-height: inherit;height: 354px;}

}

@media only screen and (max-width: 767px) {
  .subscriptions-blox-custom .promos .promo {width: 100%;padding: 0px;}
  .subscriptions-blox-custom .promos{padding: 15px;}
    .inner-body-card {max-height: inherit;height: auto;}
    .promo .buy-custom-btn {position: relative;bottom: inherit;}
    

}
@media only screen and (max-width: 480px) {
  .card-details-custom li {
    width: 100%;

  }
}

.subscriptions-blox-custom .promos::-webkit-scrollbar {width: 0px; }
.subscriptions-blox-custom .promos::-webkit-scrollbar-track {border-radius: 8px;background-color: #e7e7e7;border: 1px solid #cacaca;}
.subscriptions-blox-custom .promos::-webkit-scrollbar-thumb {border-radius: 8px;background-color: #26aae1;}


.card-deck-custom-scroll::-webkit-scrollbar {width: 8px; height: 8px !important;}
.card-deck-custom-scroll::-webkit-scrollbar-track {border-radius: 8px;background-color: #e7e7e7;border: 1px solid #cacaca;}
.card-deck-custom-scroll::-webkit-scrollbar-thumb {border-radius: 8px;background-color: #26aae1;}