:root {
  --head-bg-color: rgba(153, 141, 160);
  --sidebar-bg-color: rgba(153, 141, 160);
  --logo-bg-color:rgba(85, 37, 56) ;
  --btn-bg-color:rgba(202,86,112) ;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.login-content .form-control {
  height: calc(1.5em + 0.75rem + 4px);
}
.kgmradio {
  height: 18px;
  width: 18px;
  margin-top: 5px;
}
.kgmradio + span {
  padding-left: 8px;
  padding-right: 16px;
  vertical-align: super;
}
i.fw-b {
  font-weight: 500;
}
.kgmchkbox {
  height: 22px;
  width: 22px;
  vertical-align: middle;
}
.cuspointer {
  cursor: pointer;
}
.total_view {
  font-size: 16px;
  padding-top: 5px;
  margin-bottom: 0;
  color: #4913ef;
}
.report_btn {
  width: 50px !important;
}
.kgmright {
  text-align: right;
}
.kgmcenter {
  text-align: center;
}
/*===================================*
 	MENU STYLE STARTS
*===================================*/

.wrapper {
	width: 100%; 
}
#sidebar {
	min-width: 230px;
	max-width: 230px;
	background: #212121;
	color: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	position: relative; 	
  margin-top: 50px;
  background: var(--sidebar-bg-color);
}
#sidebar .h6 {
	color: #fff; 
}
#sidebar.active {
	margin-left: -230px; 
}
#sidebar.active .toggle-menu {
	margin-right: -45px; 
}
#sidebar h1 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 20px; 
}
#sidebar h1 .logo {
	color: #fff;
	display: block;
	padding: 10px 30px;
	background: #2f89fc; 
}
#sidebar ul.components {
	padding: 0; 
}
#sidebar ul li {
	font-size: 16px; 
}
#sidebar ul li > ul {
	margin-left: 10px; 
}
#sidebar ul li > ul li {
	font-size: 14px; 
}
#sidebar ul li span a {
	padding: 8px 10px;;
	display: block;
	color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  margin: 2px
}
#sidebar ul li span a:hover, #sidebar ul li span a:active, #sidebar ul li span a:focus {
	color: #fff;
	border-left: 1px solid var(--btn-bg-color);
  background: #0d1214;
  text-decoration: none;
}
#sidebar ul li.active span > a {
	background: transparent;
	color: #fff; 
}
#sidebar ul li.active span > a:hover, #sidebar ul li.active span > a:active, #sidebar ul li.active span > a:focus {
  border-left: 1px solid var(--btn-bg-color);
  background: #0d1214;
}
@media (max-width: 991.98px) {
	#sidebar {
	margin-left: -230px; }
	#sidebar.active {
	margin-left: 0; }
}
@media (max-width: 480px){
  #sidebar {
	margin-left: -230px; }
	#sidebar.active {
	margin-left: 0; }
	.toggle-menu {
    position: absolute;
    left: 5px;
    top: 3px;
   } 
}

.toggle-menu {
	display: inline-block;
	right: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s; 
}
@media (prefers-reduced-motion: reduce) {
	.toggle-menu {
	-webkit-transition: none;
	-o-transition: none;
	transition: none; } 
}
.toggle-menu .btn.btn-primary {
	background: transparent;
	border-color: transparent; 
}
.toggle-menu .btn.btn-primary i {
	color: black;
	font-size: 24px; 
}
.toggle-menu .btn.btn-primary:hover, .toggle-menu .btn.btn-primary:focus {
	background: transparent !important;
	border-color: transparent !important; 
}
a[data-toggle="collapse"] {
	position: relative; 
}
.dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%); 
}
@media (max-width: 991.98px) {
	#sidebarCollapse span {
	display: none; } 
}
#content {
	width: 100%;
	padding: 0;
	min-height: 100vh;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s; 
}
.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important; 
}
.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important; 
}
.list-unstyled {
	padding-left: 0;
	list-style: none; 
}
.mb-5,.my-5 {
	margin-bottom: 3rem !important; 
}
#sidebar h1 .logo {
	background: #20A4F3;
}

/*----- Componant: Top Navigation Bar ----- */
.app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color:  var(--head-bg-color);
    z-index: 1030;
    padding-right: 15px;
  }
  
  @media (min-width: 768px) {
    .app-header {
      padding-right: 30px;
    }
  }
  
  @media print {
    .app-header {
      display: none;
    }
  }

  .app-header-logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: 'Arial';
    padding: 0 15px;
    font-size: 23px;
    font-weight: 400;
    line-height: 50px;
  }
  
  @media (min-width: 768px) {
    .app-header-logo {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      display: block;
      width: 230px;
      background-color:var(--logo-bg-color);
    }
  }

  .app-header-logo:focus, .app-header-logo:hover {
    text-decoration: none;
    color: #fff;
  }

.app-nav, .app-menu {
    padding-left: 0;
    list-style: none;
}

  /* .app-sidebar-toggle {
    padding: 0 15px;
    font-family: fontAwesome;
    color: #fff;
    line-height: 2.4;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  
  @media (max-width: 767px) {
    .app-sidebar-toggle {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
    }
  }
  
  .app-sidebar-toggle:before {
    content: "\f0c9";
    font-size: 21px;
  }
  
  .app-sidebar-toggle:focus, .app-sidebar-toggle:hover {
    color: #fff;
    background-color: #00635a;
    text-decoration: none;
  } */

  .app-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  @media (min-width: 768px) {
    .app-nav {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
    }
  } 
  
  .app-search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
    margin-right: 15px;
    padding: 10px 0;
  }
  
  @media (max-width: 480px) {
    .app-search {
      display: none;
    }
  }

  .app-search__input {
    border: 0;
    padding: 5px 10px;
    padding-right: 30px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  
  .app-search__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .app-search__input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .app-search__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .app-search__input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
  }
  
  .app-search__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
  }

  .app-search__button {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    padding: 0 10px;
    border: 0;
    color: rgba(0, 0, 0, 0.8);
    background: none;
    cursor: pointer;
  }

  .app-nav__item {
    display: block;
    padding: 15px;
    line-height: 20px;
    color: #fff;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  
  .app-nav__item:hover, .app-nav__item:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #f6f6f6;
  }

.dropdown-item .fa,
.dropdown-item .icon {
    margin-right: 5px;
    vertical-align: middle;
}

  .dropdown-item:first-child {
    border-top-left-radius: calc(0.25rem - 0);
    border-top-right-radius: calc(0.25rem - 0);
  }
  
  .dropdown-item:last-child {
    border-bottom-right-radius: calc(0.25rem - 0);
    border-bottom-left-radius: calc(0.25rem - 0);
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
  }
  
  .dropdown-item.active, .dropdown-item:active {
    color: #FFF;
    text-decoration: none;
    background-color: var(--btn-bg-color);
  }
  
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
  }

  .dropdown-item-text {
    display: block;
    padding: 8px 20px;
    color: #212529;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0 0;
    margin: 0 0 0;
    font-size: 0.875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 0 solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
  }

  .dropdown-menu {
    border-radius: 0;
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .dropdown-menu.dropdown-menu-right {
    left: auto;
    right: 0;
  }
  
  .dropdown-menu-left {
    right: auto;
    left: 0;
  }
  
  .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  
  @media (min-width: 576px) {
    .dropdown-menu-sm-left {
      right: auto;
      left: 0;
    }
    .dropdown-menu-sm-right {
      right: 0;
      left: auto;
    }
  }
  
  @media (min-width: 768px) {
    .dropdown-menu-md-left {
      right: auto;
      left: 0;
    }
    .dropdown-menu-md-right {
      right: 0;
      left: auto;
    }
  }
  
  @media (min-width: 992px) {
    .dropdown-menu-lg-left {
      right: auto;
      left: 0;
    }
    .dropdown-menu-lg-right {
      right: 0;
      left: auto;
    }
  }
  
  @media (min-width: 1200px) {
    .dropdown-menu-xl-left {
      right: auto;
      left: 0;
    }
    .dropdown-menu-xl-right {
      right: 0;
      left: auto;
    }
  }

  .app-sidebar__user-avatar {
    border-radius: 50% !important;
  }

  .app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
  }
  
  .app-sidebar__user-name,
  .app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    margin-bottom: 0;
  }

  .toggle-menu .btn:not([disabled]):not(.disabled):not(.btn-link):hover, 
  .toggle-menu .btn:not([disabled]):not(.disabled):not(.btn-link):focus {
    text-decoration: none;
    transform: translate3d(0, -1px, 0);
    box-shadow: none; 
  }
  .menuToggleDown {
    animation: ease-in 3s;
    display: block;
}
.menuToggleUp {
    animation: opacity 3s ease-out;
    display: none;
}
/*===================================*
 	MENU STYLE ENDS
*===================================*/


/*===================================*
 	LOADING STYLE STARTS
*===================================*/
#kgm_overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--logo-bg-color);
	z-index: 2;
	cursor: pointer;
}
.kgm_loading {
	width: 150px;
	height: 100px;
	line-height: 100px;
	position: fixed;
	top: 50%; 
	left: 50%;
	margin-top: -45px;
	margin-left: -75px;
	background-color: #f6f1dc;
	border-radius: 5px;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
	text-align: center;
	z-index: 11; /* 1px higher than the overlay layer */
}
/*===================================*
 	LOADING STYLE ENDS
*===================================*/

/*===================================*
 	TABLE STYLE STARTS
*===================================*/
.kgmtable {
  overflow-y: scroll;
  overflow-x: hidden;
}
.t1 {
  height: calc(100vh - 270px);
}
.t2 {
  height: calc(100vh - 300px);
}
.t3 {
  height: calc(100vh - 350px);
}
.tablehead {
  /* background-color: #eaeaea; */
  border-top: 1px solid #ddd;
  height: 30px;
  font-weight: 700;
  line-height: 2.2;
}
.tablehead .row {
  margin-right: 7px !important;
}
.tablehead .kgminput {
  padding-left: 7px !important;
  padding-right: 7px !important;
}
tbody tr:hover, tbody tr:focus {
  background-color: #d2d9e84f;
}
@media (min-width: 992px) {
  .kgmtable .table th,.kgmtable .table td {
      padding: 3px 7px !important;
  }
}
@media (min-width: 768px) {
  .kgmtable .table th,.kgmtable .table td {
      padding: 3px 7px !important;
  }
}
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-thumb {
	background-color: #ddd;
	border-radius: 25px;
}
@media only screen and (max-width: 760px) {
  .tablehead, thead {
      display: none;
  }
  table, tbody, thead, tbody, th, td, tr {
    display: block;
    float: left;/* ie9 fix */
    width: 100% !important;
    clear: both;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #ccc;
  }
  td,th {
    padding: 5px !important;
    border: none;
    border-bottom: 1px solid #eee;
  }
  td:before {
    float: left !important;
    width: 95% !important;
    padding: 0 0 0 1% !important;
    margin-left: -100% !important;
    font-weight: 700 !important;
  }
  td {
    padding-left: 50% !important;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
    box-sizing: border-box; 
  }
   td:before { 
     content: attr(data-title); 
  }
  .kgmtable .kgmcenter, .kgmtable .kgmright  {
    text-align: left;
  }
}
/*===================================*
 	TABLE STYLE ENDS
*===================================*


/*===================================*
 	FILTER STYLE STARTS
*===================================*/
.toggleSection {
	box-shadow: 0 0 10px rgba(0,0,0,0.06);
}
.toggleHead {
    height: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
.toggleHead label {
    padding-left: 10px;
    margin-top: 8px;
}
.toggleHead label i {
	font-size: 15px;
}
.toggleHead label span { 
	padding-left: 8px;
}
.toggleHead > span { 
	float: right;
    margin-right: 10px;
    margin-top: 8px;
}
.toggleBody {
	padding: 5px 0;
}
/* Filters */
.togglefilter {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 10px;
    margin-top: -6px;
	margin-bottom: 5px;
	border: 1px solid #dee2e6;
}
.fa-btn {
	margin-right: 15px !important;
	padding-bottom: 2px;
}
.fa-lbl {
	font-size: 15px;
}
/*===================================*
 	FILTER STYLE ENDS
*===================================*/

/*===================================*
 	INPUT STYLE STARTS
*===================================*/
.kgminput {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.mandatory {
  color: red;
  font-size: 18px;
  font-weight: 600;
}
/*===================================*
 INPUT STYLE ENDS
*===================================*/
.modal {
	z-index: 99999;
}
.modal-backdrop {
	z-index: 9999;
}
/*===================================*
	MESSAGE POPUP STYLE
*===================================*/
.msgPopup .modal-dialog {
	width: 350px;
}
.msgPopup .modal-footer {
	padding: 5px 10px;
    text-align: center;
    display: block;
}
.msgPopup .modal-body {
	text-align: center;
}
.msgPopup .modal-body span {
	color: black;
	font-size: 18px;
}
/*===================================*
 	MESSAGE POPUP STYLE
*===================================*/

/*===================================*
	FILTER POPUP STYLE STARTS
*===================================*/

.lPopup .modal-title {
  font-weight: 500;
  text-align: center;
}
.lPopup .modal-header {
  padding: 5px 10px;
  font-weight: 500;
}
.lPopup .modal-footer {
  padding: 5px 10px;
  text-align: center;
  display: block;
}
.lPopup .modal-body {
  padding: 5px 10px;
}
.lPopup .modal-footer .report_btn {
  width: 70px;
}
.lPopup .modal-dialog {
  max-width: 500px !important;
}

.imgPopup .modal-body {
  padding: 0 !important;
}
.imgPopup .modal-dialog {
  max-width: 78% !important;
}
/*===================================*
 FILTER POPUP STYLE ENDS
*===================================*/

/*===================================*
 	DISPLAY STYLE STARTS
*===================================*/
.toggle_Btn div {
  text-align: center;
  font-weight: 600;
  margin: 3px;
}
.toggle_Btn .btn {
  border-radius: 0;
  border-bottom: 1px solid var(--border-color);
}
.toggle_Btn .btn-block+.btn-block {
  margin-top: 0 !important;
}
.toggle_Btn .btn i {
  margin-right: 10px;
  color: #6f4e4e;
}
.dropdown-toggle::after {
  margin-right: 10px;
  margin-left: 0px;
}
/*===================================*
 DISPLAY STYLE ENDS
*===================================*/