@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lora:wght@400;500;600;700&display=swap');


:root {
  --theme-clr: #05204A;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}


/*loader css start*/

#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  overflow: hidden;
  background: #fff;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}

.lds-ripple div {
  position: absolute;
  border: 4px solid var(--theme-clr);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -1s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}


/*loader css end*/


/*links css start*/

.body-link {
  font-size: 12px;
  color: #111111;
  line-height: 15px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.body-link.theme-clr .theme-clr {
  color: #C4D82E;
}

.radius-15 {
  border-radius: 15px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-6 {
  border-radius: 6px;
}

.radius-5 {
  border-radius: 5px
}

.radius-4 {
  border-radius: 4px
}

.border {
  border: 1px solid #DDDDDD;
}


/*global css start*/

html,
body {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #263045;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 17px;
  overflow-x: hidden;
}

.font-lora {
  font-family: 'Lora', serif;
}

main {
  background-color: #fff;
  min-height: calc(calc(var(--vh, 1vh) * 100) - 90px);
}

.fix-height {
  max-height: calc(calc(var(--vh, 1vh) * 100) - 70px);
}

main,
footer {
  margin: 0 auto;
  max-width: 100%;
}

svg {
  color: inherit;
  fill: currentColor;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:active,
a:focus {
  outline: none;
  box-shadow: none;
  color: inherit;
  color: #ffffff;
}


/*bootstrap grid css*/

.container,
.container-fluid {
  --bs-gutter-x: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}


/*bootstrap grid css end*/

.ic {
  width: 24px;
  min-width: 24px;
  height: 24px;
}


ul {
  list-style-type: none;
}


/*button css start*/

button:focus {
  outline: none;
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  padding: 13px 19px !important;
  box-shadow: none;
  border-radius: 10px !important;
  background-color: transparent !important;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn {
  padding: 13px 29px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  box-shadow: none;
  border-radius: 8px;
  background-color: #152780bf;
  color: #FFFFFF;
  height: 50px;
  transition: all .3s;
}

.btnhover:focus {
  box-shadow: none;
}

.btnhover:hover {
  background: #152780 radial-gradient(circle, transparent 1%, #152780 1%) center/15000%;
  box-shadow: none;
  color: #ffffff;
}

.btnhover:active {
  background-color: #ffffffb3;
  background-size: 100%;
  transition: background 0s;
  box-shadow: none;
}

.btnwidth {
  width: 250px;
}

/*button css end*/


/*scrollbar css start*/

* {
  scrollbar-color: #DCE0E7 #f8fafc;
  scrollbar-width: thin;
  scrollbar-height: thin;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 5px;
  -moz-appearance: none !important;
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-track-piece {
  background-color: #f8fafc;
  -moz-appearance: none !important;
  border: none !important;
  box-shadow: none;
}

*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb:vertical,
*::-webkit-scrollbar-thumb:horizontal {
  background-color: #DCE0E7;
  outline: none;
  border-radius: 4px;
  -moz-appearance: none !important;
}


/*scrollbar css end*/


/*card css start*/

.card-header {
  padding: 0px;
  border-bottom: 0;
}

.card-body,
.card-footer {
  padding: 20px 20px 30px 20px;
}

.card {
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 0;
}

.card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #263045;
  margin-bottom: 10px;
}

.card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #263045;
  margin-bottom: 40px;
}


/*card css end*/


/*scrollbar css end*/


/*modal css start*/

.modal-body {
  padding: 30px;
}

.modal-content {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgb(8 8 8 / 30%);
}


/*modal css end*/


/*header css start*/

header {
  /*height: 70px;*/
  /*background: #fff;*/
}

/*.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-left: 0px;

  color: #111111;
}*/

.navbar-expand-lg {
  height: 80px;
  background: #263046;
  box-shadow: none;
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link,
.navbar-expand-lg .navbar-nav .nav-item:focus .nav-link,
.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #ffffffbf;
}

.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #7F00FF;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffffbf;
}


/*header .nav-link {

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 25px;
  text-align: center;
  color: #1A1729;
}
*/

header .nav-link:hover,
.nav-link:focus {
  color: #C4D82E;
}

header .nav-item.active .nav-link {
  color: #C4D82E;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  max-width: 500px;
  min-width: 500px;
}

.nav-logo {
  display: none;
}


/*.navbar-toggler {padding: 0;font-size: 20px;position: fixed;height: 35px;width: 35px;margin-right: auto;-webkit-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.navbar-toggler .navbar-toggler-icon {-webkit-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.navbar-toggler[aria-expanded = "true"] .navbar-toggler-icon {-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}
.navbar-toggler:focus {outline: none;}
.navbar-toggler span.icon-bar {-webkit-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;background: #263249;width: 30px;height: 2px;display: block;margin-bottom: 7px;text-align: left;margin-right: auto;opacity: 1;}
.navbar-toggler .icon-bar.top-bar {width: 15px;}
.navbar-toggler .icon-bar.middle-bar {width: 22px;}
.navbar-toggler span.icon-bar.bottom-bar {margin-bottom: 0px;}
.navbar-toggler[aria-expanded = "true"] .icon-bar {-webkit-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;-moz-transition: all 0.3s;transition: all 0.3s;}
.navbar-toggler[aria-expanded = "true"] .top-bar {-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);position: absolute;top: 12px;width: 30px}
.navbar-toggler[aria-expanded = "true"] .middle-bar {opacity: 0;}
.navbar-toggler[aria-expanded = "true"] .bottom-bar {-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);width: 30px !important;position: absolute;top: 13px;}
*/


/*header css start*/

header {}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #FFFFFF;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 12px;
  padding-right: 13px;
  color: #FFFFFF;
  line-height: 22px;
}

/*.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
  color: #FFFFFF;
}

.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #FFFFFF;
}*/

header .nav-link {
  /*padding: 26px 20px;*/
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;

  text-align: center;
  color: #FFFFFF;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  color: #111111;
  background-color: #dddddd;
}

.dropdown-toggle::after {
  content: none;
}

.dropdown-menu {
  padding: 0;
  min-width: 6rem;
}

.dropdown-menu li:last-child>a {
  border-radius: 0 0 4px 4px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%);
  margin-top: 0;
}

.caret.dropdown-toggle {
  padding: 14px 16px;
  position: absolute;
  right: 0;
  top: 0;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  z-index: 2;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-logo {
  display: none;
}

.btn-transparent.dropdown-toggle {
  background: transparent url(/img/ic_down_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 7px center;
  padding-right: 35px !important;
  height: auto;
  font-weight: 400;
}

.btn-transparent.dropdown-toggle:after {
  content: none !important;
}

.dropdown-item {
  font-size: 15px;
  line-height: 23px;
  padding: 4px 20px;
  color: #111111;
  margin-bottom: 10px;
}

.dropdown-item:last-child {
  border: 0;
}

.navbar-toggler {
  padding: 0;
  font-size: 20px;
  position: relative;
  height: 27px;
  width: 30px;
  margin-left: auto;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 6px 0;
}

.navbar-toggler .navbar-toggler-icon {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.navbar-toggler.cross .navbar-toggler-icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler span.icon-bar {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
  width: 30px;
  height: 2px;
  display: block;
  text-align: right;
  margin-left: auto;
  opacity: 0.8;
}

.navbar-toggler span.icon-bar.bottom-bar {
  margin-bottom: 0px;
}

.navbar-toggler[aria-expanded="true"] .icon-bar {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.navbar-toggler[aria-expanded="true"] .top-bar {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 12px;
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 30px !important;
  position: absolute;
  top: 13px;
}


/*header css end*/


/*common class start*/

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

.mb-70 {
  margin-bottom: 70px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.me-30 {
  margin-right: 30px;
}

.me-13 {
  margin-right: 13px;
}

.pe-75 {
  padding-left: 75px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ps-27 {
  padding-left: 27px;
}

.p-30 {
  padding: 30px;
}

/*font size class start*/

.body-font {
  font-size: 16px;
  line-height: 22px;
}

.sm-font {
  font-size: 20px;
  line-height: 30px;
}

.md-font {
  font-size: 24px;
  line-height: 34px;
}

.lg-font {
  font-size: 36px;
  line-height: 54px;
}

.xl-font {
  font-size: 48px;
  line-height: 62px;
}

.font-24 {
  font-size: 24px;
  line-height: 34px;
}

.ltr-spacing {
  letter-spacing: 0.05em;
}

.lnh-50 {
  line-height: 50px;
}

/*font size class end*/


/*font weight*/

.fw-300 {
  font-weight: 300
}

.font-regular,
.fw-400 {
  font-weight: 400
}

.font-medium,
.fw-500 {
  font-weight: 500
}

.font-semibold,
.fw-600 {
  font-weight: 600
}

.font-bold,
.fw-700 {
  font-weight: 700
}


/*color css start*/

.red-clr {
  color: #9B1D20;
}

.body-clr {
  color: #111111;
}

.black-clr {
  color: #000000;
}

.white-clr {
  color: #ffffff;
}

.white-opacity {
  color: #FFFFFF;
  opacity: 0.75;
}


.black-opacity {
  color: #565658;
  opacity: 0.75;
}


/*color css end*/


/*backgrounds*/

.bg-black {
  background-color: #111111;
}

.bg-grey {
  background-color: #FAFAFA;
}

.bg-blue {
  background-color: #263046;
}

.bg-lightblue {
  background-color: #394EAC;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-light-grey {
  background: #F8F8F8;
}


/*links css end*/

.fullheight {
  min-height: calc(calc(var(--vh, 1vh) * 100));
}


/* Header css start */

.navbar-light .navbar-brand {
  color: #2D72BB;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
}

.dropdownimg {
  padding-left: 5px;
}


/* Header Css End */

.truncate-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}


/* slick dots end */

/* navtab section start */

.nav-pills .nav-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #263045;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 190px;
  height: 60px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: #E7EBEE;
  border: 1px solid #263045;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #000000;

}

.tab-pane {
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
}

/* navtab section end */


/* index css start */

.baneer-img {
  background-image: url(/img/png/img_herobg@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bannercontent {
  height: 570px;
}

.hover-underline:hover {
  transition: 0.3s;
  text-decoration: underline;
}

.recoverbox {
  background: #FFFFFF;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.recovertext {
  min-height: 66px;
}

.stepstext {
  min-height: 110px;
}

.casespacing {
  background: #FFFFFF;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 0 8px 8px 0;
  padding: 40px 50px;
}

/* index css end */


/*footer css start*/


footer p {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.footerspacing {
  padding-top: 40px;
  padding-bottom: 50px;
}

.dividercolor {
  color: #FFFFFF;
  opacity: 1;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footerlogo {
  height: 50px;
}

/*footer css end*/


/*design page end*/


@media (min-width: 768px) {

  .collapse.dont-collapse-sm,
  .collapsing.dont-collapse-sm {
    display: flex;
    height: auto !important;
    visibility: visible;
  }
}


/* iPadPRO landscape style here */

@media only screen and (min-device-width: 1000px) and (max-device-width: 1100px) and (orientation:portrait) {
  .modal-dialog {
    max-width: 807px;
  }

  .bannercontent {
    height: auto;
  }

  .baneer-img {
    background-position: 76%;
  }

  .nav-pills {
    overflow: auto;
    flex-wrap: nowrap;
  }

  .nav-pills .nav-item {
    margin-right: 20px;
  }

  .caseborder img {
    width: 100%;
  }

  .peres-15 {
    padding-right: 15px !important;
  }

  .psres-15 {
    padding-left: 15px !important;
  }

.recovertext {
    min-height: 88px;
}

.truncate-4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
  }

  .mb20res {     margin-bottom: 20px; }



}

@media (max-width: 991.98px) {

  .bannercontent {
    height: auto;
  }

  .btnspacingres {
    width: 200px;
    margin-top: 20px;
  }

  .nav-pills {
    overflow: auto;
    flex-wrap: nowrap;
  }

  .nav-pills .nav-item {
    margin-right: 20px;
  }

  .lg-font {
    font-size: 30px;
    line-height: 41px;
  }


  .bannercontent {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .xl-font {
    font-size: 39px;
    line-height: 52px;
  }


  .psres0 {
    padding-left: 0;
  }

  .logores {
    width: 150px;
  }

  .navbar-brand {
    padding-top: 0;
  }

  .stylebox {
    padding: 15px;
  }

  /*.wizard > .content {     min-height: 44em; }*/
  .navbar-expand-lg {
    min-height: 59px;
    height: 59px;
  }

  .navbar {
    padding-left: 16px;
    padding-right: 0px;
  }

  header {
    height: 60px
  }

  header .navbar-expand-lg .navbar-nav .nav-link {
    text-align: left;
    padding: 15px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
  }

  /* header .navbar-expand-lg .navbar-nav .nav-item {
    border-bottom: 1px solid #ddd;
  } */

  header .navbar-collapse .nav-item .dropdown-item {
    text-align: left;
    border-top: 1px solid #ddd;
    border-bottom: 0;
  }

  .navbar-nav .dropdown-menu {
    border: 0;
  }

  /*navabr for mobile css start*/
  #navbarNav {
    position: fixed;
    height: 100vh;
    height: calc(calc(var(--vh, 1vh) * 100) - 60px);
    display: block;
    width: 100%;
    z-index: 11;
    background: #263046;
    left: 0;
    bottom: 0;
    top: 59px;
    transform: translateX(-100%);
    transition: 0.3s;
    justify-content: center;
    overflow-y: auto;
  }

  #navbarNav.show {
    transform: translateX(0);
    transition: 0.3s;
  }
}


/* iPad landscape style here */

@media only screen and (min-device-width: 760px) and (max-device-width: 992px) and (orientation:portrait) {

  .truncate-4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
  }

  .truncate-5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
  }

  .bannercontent {
    padding-top: 7px;
  }

  .mtres {
    margin-top: 0;
  }

  .baneer-img {
    background-position: 75%;
  }

  .nav-pills {
    overflow: auto;
    flex-wrap: nowrap;
  }

  .peres-15 {
    padding-right: 15px !important;
  }

  .psres-15 {
    padding-left: 15px !important;
  }

  .caseborder img {
    width: 100%;
  }

  .md-font {
    font-size: 18px;
    line-height: 27px;
}

.recovertext {
    min-height: 110px;
}

.mb-20res {     margin-bottom: 20px; }


}

@media (min-width: 992px) {}


/*repsonsive css*/

@media (min-width: 576px) {
  .modal-sm {
    max-width: 381px;
  }
}

@media (min-width: 768px) {}

.card-group>.report-card:last-child {
  box-shadow: none;
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 741px;
  }

  .modal-xl {
    max-width: 850px;
  }

  .modal-xxl {
    max-width: 919px;
  }

  .modal-xxxl {
    max-width: 1370px;
  }
}

@media (min-width: 1500px) {}

@media (min-width: 1800px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 12px;
  }
}

@media (max-width: 768px) {}

@media (max-width: 767.98px) {

  .colwidth { width:50%; }

  .ps-27 {
    padding-left: 16px;
}

  .caseborder img {
    border-radius: 8px 8px 0 0;
  }

  .casespacing {
    border-radius: 0;
    padding: 20px;
  }

  .peres-15 {
    padding-right: 15px !important;
  }

  .psres-15 {
    padding-left: 15px !important;
  }


  .mbres-20 {
    margin-bottom: 20px;
  }

.mbres-30 {
    margin-bottom: 30px;
  }

  .mtres {
    margin-top: 0;
  }

  .baneer-img {

        background-position: 20%;

  }


  .order-res1 {
    order: 2;
  }

  .order-res2 {
    order: 1;
  }

  .navbar-toggler {
    margin-right: 0
  }

  .navbar-expand-lg {
    min-height: 56px;
  }

  .navbar {
    padding-left: 16px;
    padding-right: 0px;
  }

  header {
    height: 60px
  }

  header .navbar-expand-lg .navbar-nav .nav-link {
    text-align: left;
    padding: 15px;
    line-height: 20px;
    display: flex;
    justify-content: space-between;
  }

  header .navbar-expand-lg .navbar-nav .nav-item {
    border-bottom: 1px solid #ddd;
  }

  header .navbar-collapse .nav-item .dropdown-item {
    text-align: left;
    border-top: 1px solid #ddd;
    border-bottom: 0;
  }

  .navbar-nav .dropdown-menu {
    border: 0;
  }

}

@media screen and (min-width:992px) {
  .scrollable-div {
    max-height: calc(var(--vh, 1vh) * 100);
    min-height: calc(var(--vh, 1vh) * 100);
    margin-bottom: 0 !important;
  }
}

@media (max-width: 575.98px) {

  .card-group>.card {
    border: 0;
    box-shadow: inset 0px -1px 0 0 #dddddd;
  }

  .modal-body {
    padding: 20px;
  }

  .modal .btn {}
}

@media (max-width: 419.98px) {}

@media (max-width: 341.98px) {

  body,
  .form-control,
  .btn,
  .btn:hover,
  .btn:active,
  .btn:focus {
    font-size: 14px;
    line-height: 17px;
  }

}
/* modal popup start */

.close {
  border: 0;
  background-color: white;
}

.modal-header {
  border-bottom: 1px solid #EBEBEB;
  padding: 8px;
}

.modal-body h5 {
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.accident-modal {
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  padding: 17px;
}

.accident-modal .form-check-input {
  margin-right: 17px;
  margin-left: 3px;
}

/* modal popup end */

.injured-modal .form-check .form-check-input {
  float: right;
}

.injured-modal img {
  width: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.injured-modal .form-check-label { /*bootstrap grid css end*/ padding-bottom: 20px;
}

.injured-modal .form-check .form-check-input { .ic { float: right;
  width: 24px;} .injured-modal img {
  min-width: 24px; width: 40px;
  height: 24px; padding-top: 20px;
}  padding-bottom: 10px;
}
.injured-modal .form-check-label { label { padding-bottom: 20px;
  font-weight: 400;} hr {
  font-size: 15px; background-color: #DDDDDD;
  line-height: 21px; opacity: 1;
  color: #111111;}
  margin-bottom: 0px;
  font-family: 'Inter', sans-serif;
}
.form-control::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #2E4B65;
}
.form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #2E4B65;
}
.form-control:-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #2E4B65;
}
.form-control:-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #2E4B65;
}
.form-control, .form-control:hover, .form-control:focus, .form-control:active {
  color: #111111;
  padding: 11px 10px;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  background: #FFFFFF;
  height: 45px;
  box-shadow: none;
}
.form-group {
  margin-bottom: 20px;
}
.input-border {
  border: 0;
  box-shadow: inset 0 -1px 0 0 #DDDDDD;
  border-radius: 0
}
.input-border:focus {
  box-shadow: inset 0 -1px 0 0 #C4D82E
}
/*css for custom radio start*/ .form-check {
  min-height: 0;
  padding-left: 0;
}
.form-check .form-check-input {
  height: 20px;
  width: 20px;
  z-index: 1;
  cursor: pointer;
  background-image: url(/img/svg/ic-uncheck.svg);
}
.form-check-input:checked[type=radio] {
  background-image: url(/img/svg/ic-check.svg);
  background-color: transparent;
}
.form-check-input {
  border: 0;
}
.form-check-input:focus {
  box-shadow: none;
}

.me-20 {
    margin-right: 20px;
}



.overflowauto {
  height: 100px;
  overflow: scroll;
}
/*button css start*/ button:focus {
  outline: none;
}
.btn, .btn:hover, .btn:active, .btn:focus {
  padding: 10px 19px;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  box-shadow: none;
  border-radius: 6px;
  background: #256AEF;
  color: #FFFFFF;
  height: 45px;
  border: 1px solid #256AEF;
  font-family: 'Inter', sans-serif;
}
.btn:hover {
  opacity: 0.9;
}
.btn-white, .btn-white:hover, .btn-white:focus, .btn-white:active {
  background: #FFFFFF;
  border: 1px solid #256AEF;
  color: #256AEF;
  padding-right: 27px !important;
  padding-left: 27px !important;
}
.btn-grey, .btn-grey:hover, .btn-grey:focus, .btn-grey:active {
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  color: #111111;
}
.btn-transparent, .btn-transparent:hover, .btn-transparent:focus, .btn-transparent:active {
  background-color: transparent;
  padding: 0;
  height: auto;
}
.btnwidth {
  width: 110px;
}
/*button css end*/ /*scrollbar css start*/ * {
  scrollbar-color: #DCE0E7 #f8fafc;
  scrollbar-width: thin;
  scrollbar-height: thin;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 5px;
  -moz-appearance: none !important;
}
*::-webkit-scrollbar-track, *::-webkit-scrollbar-track-piece {
  background-color: #f8fafc;
  -moz-appearance: none !important;
  border: none !important;
  box-shadow: none;
}
*::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb:vertical, *::-webkit-scrollbar-thumb:horizontal {
  background-color: #DCE0E7;
  outline: none;
  border-radius: 4px;
  -moz-appearance: none !important;
}
/*scrollbar css end*/
