/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Mulish', sans-serif;
  background: #fff;
  color: #000;
  font-size: 1.0rem;
  line-height: 1.55rem;font-weight: 500;
}
a {
	color: #0060d3;
	text-decoration: none;
}
a:hover {
	text-decoration: underline
}
a:focus, input:focus, textarea:focus, button:focus {  
    text-decoration: none;
    outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
}
/*--THEME TEXT COLOR--*/
.text-blue{color: #0060d3!important;}
.text-green{color: #A1CC12!important;}

.bg-blue{background: #005ecf!important;}
.bg-green{background: #A1CC12!important;}

.btn-blue {
    color: #fff;
    background-color: #0060d3;
    border-color: #0060d3;
}
.btn-blue:hover {
    color: #fff;
    background-color: #004ba5;
    border-color: #004ba5;
}
.btn-blue:focus {
    outline: 0;
	color: #fff;
    background-color: #004ba5;
    border-color: #004ba5;
    box-shadow: 0 0 0 0.2rem rgb(0 96 211 / 0.25);
}
.btn-green {
    color: #fff;
    background-color: #A1CC12;
    border-color: #A1CC12;
}
.btn-green:hover {
    color: #fff;
    background-color: #8bb10c;
    border-color: #8bb10c;
}
.btn-green:focus {
    outline: 0;	
    color: #fff;
    background-color: #8bb10c;
    border-color: #8bb10c;
    box-shadow: 0 0 0 0.2rem rgb(0 178 210 / 25%);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #A1CC12;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #0060D4;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  color: #d0e500;
  font-size:16px;
}
#topbar .contact-info  a, #topbar .contact-info span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info  a {
  line-height: 26px;
  transition: 0.3s;
  transition: 0.3s;
   color: #fff;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: #d0e500;
  line-height: 0;
  transition: 0.3s;
  margin-left: 15px;
  font-size: 16px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}
#header.fixed-top {
  height: 95px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #0060D4;
}
#header .logo img {
  max-height: 90px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #0060D4;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0060D4;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  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;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.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: #0060D4;
}
.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;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  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(9, 9, 9, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0060D4;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.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: #0060D4;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}
#hero h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 900;
}
#hero h2 span{
  color: #d0e500;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center center;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #0060d4;
}
#hero .btn-get-started:hover {
  background: #a1cc12;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (max-height: 500px) {
  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 65%;
    font-size: 20px;
    line-height: 30px;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-bg {
  background-color: #ffffff;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #ececec;
  color: #000000;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #0060d3;
}
.section-title h3 span {
  color: #a1cc12;
}
.section-title h6 {
  margin: 10px auto 0 auto;
  font-size:20px;
  font-weight: 700;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}
.services-list {
    padding: 15px 10px 15px 35px;
    list-style: square;
    border: 1px dashed #a1cc12;
    border-radius: 10px;
    min-height: 295px;
}
.services-list li{
    line-height: 1.45rem;
    padding-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}
.services-list li::marker{
    color: #A1CC12;
    font-size: 18px;
}
.services-list li i{
    padding-right: 5px;
    color: #0060d3;
    font-size: 12px;
}
#info {
    background: #f9f9f9;
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
#contactus{
    background-color: #ffffff;
}
#contactus .contact-box {
  text-align: center;
  padding: 30px 0;
  box-shadow: 2px 2px 2px #ececec;
  width: 100%;
  border-radius: 10px;
  background: #f9f9f9;
  min-height: 205px;
}
#contactus .contact-box  i {
  font-size: 20px;
  line-height: 33px;
  color: #0060d3;
  border-radius: 50%;
  padding: 8px;
  border: 1px solid #0060d3;
  width: 50px;
  height: 50px;
}
#contactus .contact-box  h3 {
  font-size: 20px;
  color: #8bb10c;
  font-weight: 700;
  margin: 10px 0;
}
#contactus .contact-box  p {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}
#contactus form {
	text-align: center;
	padding: 30px;
	box-shadow: 2px 2px 2px #ececec;
	width: 100%;
	border-radius: 10px;
	background: #ffffff;
}
#contactus .form-control{
    padding: 10px 15px;
    height: calc(2.5em + 0.75rem + 2px);
    box-shadow: none;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #d0d0d0;
}
#contactus textarea.form-control {
    height: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0060D4;
  min-height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 10px 0;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #0060d3;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #00b2d2;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgb(255 255 255 / 75%);
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #d0e500;
  position: relative;
  padding-bottom: 10px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
  color: rgb(255 255 255 / 75%);
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 6px;
  color: #d0e500;
  font-size: 14px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgb(255 255 255 / 75%);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #d0e500;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #d0e500;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #ffffff;
  color: #00b2d2;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}
#footer .credits a{
  color: #d0e500;
  font-weight:600;
}
#footer .credits a:hover{
  color: #ffffff;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
/*----*/
#login-page {
    text-align: center;
    background: #f5f5f5;
	margin-top: 75px;
}
#login-page .form {
  max-width: 350px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

#login-page .form .form-floating:focus-within {
  z-index: 2;
}

#login-page .form input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#login-page .form input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* new styles */
.mybordersecondary {
  border-top: 2px solid #6c7277;
}
.custombadge {
  background: #cccfd2;
}
.circled {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  margin: auto;
}
.currencycolor {
  color: #7ba534;
}
.font-size-1 {
  font-size: 1rem!important;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 501 !important;
}
.pagetitle {
    margin-bottom: 20px;
    background: #e2e3e5;
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
    border-bottom: 0.24rem solid #9fb1c2;
    position: fixed;
    z-index: 99;
    top: 63px;
    margin-right: 25px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}
.header {
    transition: all 0.5s;
    z-index: 997;
    min-height: 60px;
    background-color: #fff;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
/*--Theme Toast--*/
.toast {
	overflow:hidden;
}
.toast .progress{
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: #eeeeee;
}
.toast .progress:before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #666666;
}
.show .progress:before{
	animation: progress 5s linear forwards;
}
@keyframes progress {
	100%{
		right: 100%;
	}
}
.toast-header{
	font-size: 1rem;
	font-weight: 600;
}
.toast-header i{
	font-size: 1.15rem;
}
.toast-body{
	font-size: 1rem;
	padding-bottom: 1rem;
	background:#fff;
}
/*----*/
.themeToast .toast-header{
	background:#A52A2A;
	border-color:#A52A2A;
	color:#fff;
}
.themeToast .toast-header i{
	margin-right:5px;
}
.themeToast .progress:before{
	background-color: #A52A2A;
}
/*----*/
.successToast .toast-header{
	background:#198754;
	border-color:#198754;
	color:#fff;
}
.successToast .toast-header i{
	margin-right:5px;
}
.successToast .progress:before{
	background-color: #198754;
}

.updateToast .toast-header{
	background:#ea7425;
	border-color:#ea7425;
	color:#fff;
}
.updateToast .toast-header i{
	margin-right:5px;
}
.updateToast .progress:before{
	background-color: #ea7425;
}

.text-update{
	color: #ea7425;
}

th {
	white-space: nowrap;
}
/*----*/
.errorToast .toast-header{
background:#dc3545;
border-color:#dc3545;
color:#fff;
}
.errorToast .toast-header i{
margin-right:5px;
}
.errorToast .progress:before{
background-color: #dc3545;
}
/*----*/
.warningToast .toast-header{
background:#fcbc00;
border-color:#fcbc00;
color:#fff;
}
.warningToast .toast-header i{
margin-right:5px;
}
.warningToast .progress:before{
background-color: #fcbc00;
}
/*----*/
.infoToast .toast-header{
background:#0d6efd;
border-color:#0d6efd;
color:#fff;
}
.infoToast .toast-header i{
margin-right:5px;
}
.infoToast .progress:before{
background-color: #0d6efd;
}
.themeModal {
--bs-modal-border-color: unset;
overflow-y: auto;
}
.themeModal .sewi-content .icon-box i {
font-size: 60px;
line-height: 60px;
position: relative;
top: 3px;
}
.themeModal .sewi-content .modal-header {
padding: 0.25rem 0.25rem;
background: #33bfbf;
color: #fff;
}
.themeModal .sewi-content .icon-box {
color: #fff;
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
top: -50px;
width: 95px;
height: 95px;
border-radius: 50%;
z-index: 9;
background: #1388CB;
padding: 15px;
text-align: center;
box-shadow: 0px 2px 2px rgb(0 0 0 / 10%);
}
.themeModal .sewi-content h4 {
text-align: center;
font-size: 26px;
margin: 45px 0 15px;
}
.themeTable .table thead th {
background-color: #f8f9fc;
}
.themeModal .modal-header {
padding: 0.75rem 0.75rem;
background: #6c757d;
color: #fff;
}
.fs-5 {
font-size: 1.25rem !important;
}
/*--Theme Form--*/
.themeForm .form-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    text-transform: initial;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}
.themeForm  .form-label-sm {
    font-size: 12px;
    line-height: 12px;
}
.themeForm .form-control,
.themeForm .form-select {
    border: 1px solid #e3e6f0;
    box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    height: 47px;
    line-height: 33px!important;
    outline: none;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 500;
    opacity: 1;
    border-radius: 4px;
}
.themeForm textarea{
	height: auto!important;
}
.themeForm .form-control-sm, 
.themeForm .form-select-sm {
    height: 37px;
    line-height: 27px!important;
}
.themeForm .checkRadio-bg {
    vertical-align: middle;
    max-width: 100%;
    cursor: text;
    padding: 9px 15px;
    width: 100%;
    border: 1px solid #e3e6f0;
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 5%);
    min-height: 48px;
    outline: none;
    font-size: 14px;
    line-height:26px;
    color: #333;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 600;
    opacity: 1;
	border-radius: 4px;
}
.themeForm .cr-bg-sm{
	min-height: 37px!important;
	padding: 3px 12px!important;
}
.themeForm .cr-bg-sm .form-check-input {
    padding: 6px;
    margin-right: 5px;
    margin-top: 6px;
}
.themeForm .form-check-input:checked {
    background-color: #33bfbf;
    border-color: #33bfbf;
}
.themeForm .form-check-input:focus {
    border-color: #33bfbf;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(51 191 191 / 25%);
}
.themeForm .form-check-input {
    width: 1em!important;
    height: 1em!important;
    padding: 8px;
    margin-right: 5px;
    margin-bottom: 0;
    vertical-align: middle;
    margin-top: 5px;
    border-color: #33bfbf;
}
.themeForm .table-responsive .form-check-input {
    margin-top: 0.225rem;
}
.form-graybox {
    background-color: #f8f9fc!important;
    opacity: 1;
    border: none!important;
    box-shadow: none!important;
}
.form-graybox.h-auto {
    min-height: 47px!important;
}
.tmsub-title {
   /* font-size: 1.1rem;*/
    padding: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #0053b6;
    border-radius: 5px;
    font-weight: 600;
}
.value {
  font-family: initial;
}
.btn{
	box-shadow: 0 1px 4px 0px rgb(0 0 0 / 20%);
}
.pagination .page-item.pgactive .page-link {
  z-index: 3;
  color: #000;
  background-color: rgba(177, 182, 186, 0.71) !important;
  border-color: rgb(11, 11, 11) !important;
}
.previous {
   background-color: #f8f9fc !important;
}
.page-link {
    color: #000;
    font-size: 0.9rem;
    padding: 5px 12px;
    border: 1px solid rgb(192, 192, 192);
}
.dr-img {
  width: 50px;
  height: 50px;
  background: #eff8ff;
  padding: 10px 5px 5px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

/*----*/
.companyprofileCard {
    background: #f8f9fa;
    border-color: #e6e6e7;
}.companyprofileCard .icon {
    background: #007bff;
    padding: 10px;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
}
.companyprofileCard .icon i{	
	color: #ffffff;	
	font-size: 1.5rem;	
	line-height: 1.35;
}
.companyprofileCard .text h5 {
    margin-bottom: 0px;
    font-weight: 700;
}
.companyprofileCard .text a {
    font-weight: 600;
    font-size: .95rem;
    border-bottom: 1px dashed #33bfbf;
}
.companyprofileCard  h6 {
    margin-bottom: 0px;
    font-weight: 700;
}
.companyprofileCard .dl-icon {
    background: #fff;
    padding: 6px;
    width: 36px;
    height: 36px;
    text-align: center;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 1.50rem;
}
/*-----*/
.bk-opacity-5{
    --bs-bg-opacity: 0.05 !important;
}
.multiColorCard .card {
    min-height: 150px;
}
.multiColorCard .card .card-body{
    position:relative;
}
.badge-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 56px solid #6c757d;
    border-top-color: rgba(0, 0, 0, 0.3);
    border-right: 56px solid transparent;
    padding: 0;
    background-color: transparent;
    border-radius: 5px 0 0 0;
}
.bc-thmBlue {
    border-top-color: #2557a4;
}
.bc-primary {
    border-top-color: #0d6efd;
}
.bc-success {
    border-top-color: #198754;
}
.bc-danger {
    border-top-color: #dc3545;
}
.bc-warning {
    border-top-color: #ffc107;
}
.bc-info {
    border-top-color: #0dcaf0;
}
.badge-corner i {
    position: absolute;
    top: -48px;
    right: -23px;
    font-size: 16px;
    color: #fff;
}
.notification {
    height: auto; /* Ensure the card expands with content */
    flex-direction: column; /* Allow for vertical stacking */
    justify-content: center; /* Center content vertically */
}

.card-body {
    flex: 1; /* Allow the card body to grow */
}

.bk-info{
	background-color: #bbedf5ad  !important;
}
.bk-primary{
	background-color: #007bff2b !important;
}
.custom-hr {
    width: 95%; /* Adjust this value as needed */
    margin: 10px auto; /* Centers the hr */
    border: 1px solid #ccc; /* Customize the border style */
}
.bg-secondary-light {
  --bs-bg-opacity: 1;
  background-color: #ccc3 !important;
}
.bg-info-light {
  --bs-bg-opacity: 1;
  background-color: rgb(13 202 240 / 10%) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb),var(--bs-border-opacity)) !important;
}
.test-card{
	padding: 1rem !important;
}
.bg-primary-light  {
    --bs-bg-opacity: 1;
    background-color: rgb(13 110 253 / 10%) !important;
}
.bg-success-light {
    --bs-bg-opacity: 1;
    background-color: rgb(25 135 84 / 10%) !important;
}
.bg-danger-light  {
    --bs-bg-opacity: 1;
    background-color: rgb(220 53 69 / 10%) !important;
}
.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgb(255 193 7) !important;
}
.pdf{
	font-size: 15px !important;
}
.btn-orange {
  color: #fff;
  background-color: #ff7803;
  border-color: #ff7803;
}

.btn-orange:hover {
  color: #fff; 
  background-color: #e66c00; 
  border-color: #e66c00; 
}

.btn-orange:focus, .btn-orange:active {
  color: #fff; 
  background-color: #e66c00; 
  border-color: #e66c00; 
}
.btn-darkBlue {
  color: #fff;
  background-color: #3c6db8;
  border-color: #3c6db8;
}
.btn-darkBlue:hover {
  color: #fff; 
  background-color: rgb(0, 0, 160); 
  border-color: rgb(0, 0, 160); 
}

.btn-darkBlue:focus, .btn-darkBlue:active {
  color: #fff; 
  background-color: rgb(0, 0, 160); 
  border-color: rgb(0, 0, 160); 
}
.text-orange{
	color: #ff7803;
}
.btn-tmSecondary {
  color: #fff;
  background-color: #d59d25;
  border-color: #d59d25;
}
.btn-tmSecondary:hover {
  color: #fff; 
  background-color: #d59d25; 
  border-color: #d59d25; 
}

.btn-tmSecondary:focus, .btn-tmSecondary:active {
  color: #fff; 
  background-color: #d59d25; 
  border-color: #d59d25; 
}
.btn-purple {
  color: #fff;
  background-color: #7456bf;
  border-color: #7456bf;
}
.btn-purple:hover {
  color: #fff; 
  background-color: #7456bf; 
  border-color: #7456bf; 
}

.btn-purple:focus, .btn-purple:active {
  color: #fff; 
  background-color: #7456bf; 
  border-color: #7456bf; 
}
.custom-spacing {
    margin-top: 1rem; /* Adjust as needed */
}

.custom-spacing td {
    padding-top: 1rem; /* Adjust as needed */
}
.count-size b {
    font-weight: bold !important;
}


/*--Loading--*/
.page-loading {
position: absolute;
width: 100%;
z-index: 999;
background: rgb(255 255 255 / 85%);
height: 100vh;
text-align: center;
padding-top: 15%;
padding-bottom: 15%;
}
.page-loading img{
width: 120px;
}
.page-loading h4{
font-weight: 600;
font-size: 26px;
color: #000000;
margin: 15px 0;
line-height: 25px;
letter-spacing: 4px;
}
.margin-top {
  margin-top: 4rem !important;
}
.custom-bg-red {
        background-color: #f8d7da; /* Light red background */
    }
.border-red {
    border: 1px solid #dc3545; /* Red border */
}
.border-black {
    border: 1px solid rgb(0, 0, 0); /* Red border */
}
.alertCard {
	min-height: 500px !important;
}
.mail-modal {
	max-width: 50%;
}
.custom-height{
	height: 40px !important;
}
[data-id="driverId"] {
    height: 45px !important;
}
[data-id="companyNameId"] {
    height: 45px !important;
}
body {
  font-size: 14px;
}
.count-size {
  font-size: 18px !important;
}
.custom-hr-md {
	 width: 90%; /* Adjust this value as needed */
    margin: 10px auto; /* Centers the hr */
    border: 1px solid #ccc; /* Customize the border style */
}