/*******common css***********/

::-webkit-scrollbar {
  width: 10px;
  /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: #101d6b;
  /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: #66be30;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid #66be30;
  /* creates padding around scroll thumb */
}

.page-body-wrapper {
  min-height: calc(100vh - 70px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding-left: 0;
  padding-right: 0;
  padding-top: 70px;
}

.page-body-wrapper.full-page-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
}

.main-panel {
  transition: width 0.25s ease, margin 0.25s ease;
  width: 100%;
  min-height: calc(100vh - 70px);
  display: -webkit-flex;
  display: flex;
}

.sidebar-icon-only .sidebar .nav {
  padding: 12px 0px
}

.content-wrapper {
  background: #f3f7ff;
  padding: 1.6rem 1.6rem 0;
  width: 100%;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}


/* Sidebar */
.navbar .navbar-menu-wrapper .navbar-nav .nav-item {
    margin-left: 0.8rem;
    margin-right: 0.5rem;
}

.sidebar {
  min-height: calc(100vh - 70px);
  font-family: "Nunito", sans-serif;
  background: #ffffff;
  font-weight: 500;
  width: 330px;
  z-index: 11;
  transition: width 0.25s ease, background 0.25s ease;
  -webkit-transition: width 0.25s ease, background 0.25s ease;
  -moz-transition: width 0.25s ease, background 0.25s ease;
  -ms-transition: width 0.25s ease, background 0.25s ease;
}

.sidebar .nav {
  overflow: hidden;
  flex-wrap: nowrap;
  flex-direction: column;
  background: #fff;
  padding: 12px;
}

.sidebar .nav .nav-item {
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  transition-property: background;
  -webkit-transition-property: background;
}

.sidebar>.nav>.nav-item {
  border-bottom: 1px solid #eee;
}

.sidebar .nav .nav-item .collapse {
  z-index: 999;
}

.sidebar .nav .nav-item .nav-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  /*white-space: nowrap;*/
  padding: 11px 15px;
  color: #333333;
  border-radius: 8px;
  -webkit-transition-duration: 0.45s;
  -moz-transition-duration: 0.45s;
  -o-transition-duration: 0.45s;
  transition-duration: 0.45s;
  transition-property: color;
  -webkit-transition-property: color;
  position: relative;
}

.sidebar .nav .nav-item .nav-link i {
  color: inherit;
}

.sidebar .nav .nav-item .nav-link i.menu-icon {
  font-size: 1.58rem;
  line-height: 1;
  margin-right: 18px;
  width: 25px;
}

.sidebar .nav .nav-item .nav-link i.menu-icon:before {
  vertical-align: middle;
}

.sidebar .nav .nav-item .nav-link i.menu-arrow {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: auto;
  margin-right: 0;
  color: #686868;
  font-size: 9px;
}


.sidebar .nav .nav-item .nav-link .menu-title {
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.3rem;
  vertical-align: middle;
}

.sidebar .nav .nav-item .nav-link .badge {
  margin-left: auto;
}

.sidebar .nav .nav-item .nav-link[aria-expanded="true"] i.menu-arrow:before {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidebar .nav .nav-item.active {
  border-radius: 8px;
}

.sidebar .nav .nav-item.active>.nav-link {
  background: #101d6b;
  position: relative;
}

.sidebar .nav .nav-item.active>.nav-link i,
.sidebar .nav .nav-item.active>.nav-link .menu-title,
.sidebar .nav .nav-item.active>.nav-link .menu-arrow {
  color: #fff;
}

.sidebar .nav .nav-item.active>.nav-link i.menu-arrow::before {
  content: "\e64b";
}

.sidebar .nav .nav-item:hover>.nav-link i,
.sidebar .nav .nav-item:hover>.nav-link .menu-title,
.sidebar .nav .nav-item:hover>.nav-link .menu-arrow {
  color: #fff;
}


.sidebar .nav:not(.sub-menu)>.nav-item {
  margin-top: .2rem;
}

.sidebar .nav:not(.sub-menu)>.nav-item:hover>.nav-link,
.sidebar .nav:not(.sub-menu)>.nav-item:hover[aria-expanded="true"] {
  background: #101d6b;
  color: #fff;
}

.sidebar .nav:not(.sub-menu)>.nav-item>.nav-link {
  margin: 0;
}

.sidebar .nav:not(.sub-menu)>.nav-item>.nav-link[aria-expanded="true"] {
  border-radius: 8px 8px 0 0;
  background: #101d6b;
  color: #fff;
}

.sidebar .nav:not(.sub-menu)>.nav-item.active {
  background: #101d6b;
}

.sidebar .nav.sub-menu {
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
  padding: 0rem 0 0 1rem;
  background: #101d6b;
  padding-bottom: 12px;
  border-radius: 0;
}

.sidebar .nav.sub-menu .nav-item {
  padding: 0;
  position: relative;
}

.sidebar .nav.sub-menu .nav-item::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  margin-top: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #61bc29;
}

.sidebar .nav.sub-menu .nav-item .nav-link {
  color: #fff;
  padding: 0.7rem 1.3rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1;
  height: auto;
  border-top: 0;
}

.sidebar .nav.sub-menu .nav-item .nav-link:hover {
  color: #ffffff;
}

.sidebar .nav.sub-menu .nav-item .nav-link.active {
  color: #ffffff;
  background: transparent;
}

.sidebar .nav.sub-menu .nav-item:hover {
  background: transparent;
}


/* Navbar */

.navbar {
  font-weight: 400;
  transition: background 0.25s ease;
  -webkit-transition: background 0.25s ease;
  -moz-transition: background 0.25s ease;
  -ms-transition: background 0.25s ease;
  -webkit-box-shadow: 0px 5px 21px -5px #CDD1E1;
  -moz-box-shadow: 0px 5px 21px -5px #CDD1E1;
  box-shadow: 0px 5px 21px -5px #CDD1E1;
  background: #ffffff;
  /* Navbar color variations */
}

.navbar .navbar-brand-wrapper {
  background: #ffffff;
  transition: width 0.25s ease, background 0.25s ease;
  -webkit-transition: width 0.25s ease, background 0.25s ease;
  -moz-transition: width 0.25s ease, background 0.25s ease;
  -ms-transition: width 0.25s ease, background 0.25s ease;
  width: 275px;
  height: 70px;
}

.sidebar-dark .navbar .navbar-brand-wrapper {
  background: #232227;
}

.navbar .navbar-brand-wrapper .navbar-brand {
  color: #27367f;
  font-size: 1.5rem;
  margin-right: 0;
  padding: .25rem 0;
}

.navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
  display: none;
}

.navbar .navbar-brand-wrapper .navbar-brand:active,
.navbar .navbar-brand-wrapper .navbar-brand:focus,
.navbar .navbar-brand-wrapper .navbar-brand:hover {
  color: #1b2658;
}

.navbar .navbar-brand-wrapper .navbar-brand img {
  max-width: 100%;
  height: 54px;
  margin: auto;
  vertical-align: middle;
}

.navbar .navbar-brand-wrapper .brand-logo-mini {
  padding-left: 0;
  text-align: center;
}

.navbar .navbar-brand-wrapper .brand-logo-mini img {
  width: auto;
  max-width: 85%;
  margin: auto;
	height: auto;
}

.navbar .navbar-menu-wrapper {
  background: #ffffff;
  transition: width 0.25s ease;
  -webkit-transition: width 0.25s ease;
  -moz-transition: width 0.25s ease;
  -ms-transition: width 0.25s ease;
  color: #6C7383;
  padding-right: 1.375rem;
  padding-left: 2.375rem;
  width: calc(100% - 275px);
  height: 60px;
}

.navbar .navbar-menu-wrapper .navbar-toggler {
  border: 0;
  color: inherit;
  font-size: 1.25rem;
  padding: 0;
  border-radius: 0;
}

.navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {
  transform: rotate(0deg);
  -webkit-transition: transform 0.3s linear;
  -moz-transition: transform 0.3s linear;
  -ms-transition: transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
}

.sidebar-icon-only .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {
  transform: rotate(180deg);
}

.heading-text {
  color: #0d3b6b;
  font-weight: 500;
  margin-bottom: 0;
  line-height: normal;
}

.i-custom-css {
  height: 70px;
  width: 70px;
  display: inline-block;
  color: #101d6b;
  line-height: 72px;
  font-size: 52px;
  text-align: center;
  border-radius: 50%;
  margin-top: 0;
  margin-right: 20px;
}

.main-text-color {
  color: #101d6b;
}

.main-text-color2 {
  color: #0d3b6b;
}

.main-text-color2 i {
  color: #101d6b;
}

.i-custom-css2 {
  height: 25px;
  width: 25px;
  background: #e4f1ff;
  display: inline-block;
  color: #4b9fff;
  line-height: 25px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
}

#login-page {
  height: 100vh;
  /* background: url(../../images/bg.png) no-repeat center;
  background-size: cover;*/
  background: #F9FAFF;
  position: relative;
}

#login-page input {
  border: none !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  padding-left: 35px;
}

.text-value p {
  font-size: 12px;
  line-height: 19px;
  margin-bottom: 15px;
}

.logo-img {
  text-align: center;
  display: block;
  margin: auto;
}

#login-page input:hover {
  border-color: #101d6b !important;
}

.shadow-lg {
  box-shadow: 0px 71px 202px -34px #101d6b40 !important;
}

button.btn.mr-2,
button.btn.btn-light.ml-3 {
  font-size: 18px;
  padding: 11px 28px
}

a.small {
  color: #101d6b;
  font-weight: 500;
}

#login-page .login-inner-container {
  max-width: 510px;
}

#login-page i.common {
  position: absolute;
  top: 31%;
  left: 9px;
  font-size: 15px;
  color: #101d6b;
}

#login-page .form-group {
  position: relative;
  margin-bottom: 1.2rem;
}

.logo-left {
  background: #f3f7ff;
  border-radius: 18px 0px 0px 18px;
}

.right-section a,
.login-btn p a {
  text-decoration: none;
  display: inline-block;
  color: #101d6b;
  /*margin-bottom: 10px;*/
}

.right-section a:hover,
.login-btn p a:hover {
  text-decoration: underline;
}

.right-section a.mb-2 {
  margin-bottom: 12px !important;
}

.right-section p {
  /*color: #101d6b;*/
  font-size: 13px;
  margin-bottom: 8px;
}

.form-control {
  height: 2.5rem;
}

.btn-color-secondary {
  background: #7fc05c;
  color: #fff;
  border: 1px solid #7fc05c;
  padding: 7px 25px 7px 18px;
  font-size: 16px;
}

.btn-color-secondary:hover {
  background: #ffffff;
  color: #101d6b;
}

.product-categories {
  height: 100vh;
}

.product-categories .item {
  height: 100vh;
  background-size: cover;
}

.login-section {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  top: 0;
}

.right-eye {
  position: absolute;
  right: 5px;
  top: 37%;
  font-size: 14px;
  cursor: pointer;
}

.right-area {
  border-radius: 20px;
}

.right-area h3 {
  font-size: 22px;
  text-align: center;
  padding-bottom: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #201c6f;
  position: relative;
}

.right-area h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 45%;
  height: 1px;
  background: #dddddd;
  left: 0;
  right: 0;
  margin: auto;
}

.right-area h3:before {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 9%;
  height: 4px;
  background: #7fc05c;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  border-radius: 5px;
}

.main-content-section .card p span {
  color: #66be30;
  /*font-weight: 600;*/
  font-size: 16px;
  display: inline-block;
  transform: scale(1);
}

.main-content-section .card,
.main-content-section .card .i-custom-css,
.main-content-section .card p span {
  transition: all .5s ease-in-out;
  cursor: pointer;
}

.main-content-section .card:hover {
  box-shadow: 0px 2px 15px 4px rgb(31 30 47 / 10%);
}

.main-content-section .card:hover .i-custom-css {
  color: #6ac036;
}

.main-content-section .card:hover p span {
  display: inline-block;
}

.logo-left p {
  font-size: 15px;
  line-height: 24px;
}

.login-btn p,
.form-check .form-check-label,
.right-section p {
  font-size: 12.8px;
}

.login-btn svg {
  margin-right: 5px;
  margin-top: -2px;
}

.btn-color-secondary:hover svg {
  fill: #101d6b !important;
}

footer {
  background: #f3f7ff;
}

.footer-img {
  width: 50px;
}

#navbar-search-input {
  border-radius: 0px;
  height: 32px;
}

#navbar-search-input:focus,
#navbar-search-input:hover {
  border-bottom: 1px solid #6c7383;
}

footer p {
  font-size: 12px;
  color: #101d6b;
}

.nav-settings>a {
  transform: rotate(90deg);
  margin-left: -10px;
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-settings.dropdown i {
  margin-right: 0px;
}

.input-group-wrap {
  border: 1px solid #e0e0e0;
  border-radius: 30px;
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-search .input-group-wrap .input-group {
  padding: 5px 12px;
}

.box-wrapper .card {
  border-left: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-shadow: 0px 0 10px rgba(31, 30, 47, 0.1);
}

.box-wrapper .card::before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 5px;
  left: calc(50% + 5px);
  border-radius: 10px;
  z-index: 1;
}

.box-wrapper .card .card-body {
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
}

.box-wrapper .i-custom-css {
  background-color: #e4f1ff;
  padding: 0;
  font-size: 40px;
}

.box-wrapper .stretch-card:nth-child(n+1) .i-custom-css {
  background-color: #f8e596;
}

.box-wrapper .stretch-card:nth-child(2n+2) .i-custom-css {
  background-color: #bae6f3;
}

.box-wrapper .stretch-card:nth-child(3n+3) .i-custom-css {
  background-color: #c1e5db;
}

.box-wrapper .stretch-card:nth-child(4n+4) .i-custom-css {
  background-color: #ff9376;
}

.box-wrapper .card p span {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}

.box-wrapper .heading-text {
  font-size: 20px;
  font-weight: 400;
}

.table-wrapper .card {
  border-radius: 10px;
  box-shadow: 0px 0 10px rgba(31, 30, 47, 0.1);
  overflow: hidden;
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  padding: 0.8rem 0.8rem
}

.table-wrapper .card .card-heading {
  padding: 0rem 0rem 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}

.card-heading .card-title {
  margin-bottom: 0;
  color: #333333;
  font-weight: 500;
}

.table-wrapper .card .card-body {
  padding: 0.8rem 0rem 0rem;
}

.table-wrapper .table.table-bordered {
  border: 1px solid #ced4da;
}

.table-wrapper thead {
  background-color: #f5f7ff;
  color: #333333;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: #ffffff;
}

.jsgrid .jsgrid-table td,
.jsgrid .jsgrid-table th,
.table td,
.table th {
  padding: 0.5rem;
  font-size: 0.8rem;
}

.marquee {
  height: 25px;
  width: 90%;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
  font-weight: 700;
}

.box-wrapper .stretch-card:nth-child(5n+5) .i-custom-css {
  background-color: #d3e4d8;
}

.box-wrapper .stretch-card:nth-child(8n+8) .i-custom-css {
  background-color: #e0ebf5;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}




.sidebar-icon-only .footer p {
  font-size: 12px;
  color: #101d6b;
}

.green-icon {
  color: #a5d1c5 !important;
}

.blue-icon {
  color: #8fd1e5 !important;
}

.yellow-icon {
  color: #e5c22f !important;
}

.pink-icon {
  color: #ff9376 !important;
}

table i.fas {
  color: #66be30;
}

.bg-whites {
  background: #f5f5f5b3!important;
}


.alert {
  font-size: .7rem;
  padding: 0.5rem 1rem;
}
.list-disc.list-inside{
  margin-top: 5px !important;
  margin-bottom: 0;
  font-size: 0.7rem;
}

@media (max-width: 575px){
  .mobile-login{
    padding: 0px 15px;
  }
}
span.required {
  color: red;
}