.blocker {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 85%;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding-top: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}
.modal a.close-modal {
  position: absolute;
  top: -3.5px;
  right: -0.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}
.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}
.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
#myView,
#myView2 {
  /* left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100px !important;
    height: 150px !important;
    width: 100%;
    border-radius: 0px;
    max-width: 800px;
    padding: 0px;
    display: none;
    overflow-y: scroll; */
  background: rgba(0, 0, 0, 0.7);
  width: 100% !important;
  max-width: 100% !important;
  position: fixed !important;
}
.main_modal {
  left: 50% !important;
  background: #fff;
  transform: translateX(-50%) !important;
  top: 10px !important;
  /* height: 150px !important; */
  width: 100%;
  border-radius: 0px;
  padding: 0px;
  display: none;
  position: fixed;
  /* overflow-y: scroll; */
}
.modal_sm {
  max-width: 500px;
}
.modal_md {
  max-width: 800px;
}

.modal_lg {
  /* max-width: 1200px; */
  width: 98%;
  height: 98%;
}

.show-modal .main_modal {
  display: block;
}
.close-button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  /* border-radius: 50%; */
  border-bottom-left-radius: 100%;
  line-height: 25px;
  text-align: center;
  background: #db4a43;
  z-index: 1;
  padding-left: 5px;
}
.close-button:hover {
  background: #33bbf1;
}
.close-button .fa {
  color: #fff;
}
.close_btn {
  /*padding: 15px 0;*/
  padding: 4px 0 6px;

  /*border-top:1px solid #ddd; */
  /*display: none;*/
}
/* .close-modal{
    display: none !important;
}   */
/* #myView{
    overflow-y: scroll;
}*/
/*.scrollable_table::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
 .scrollable_table::-webkit-scrollbar-track {
    background: #ddd; 
  }
 .scrollable_table::-webkit-scrollbar-thumb {
    background: #ddd;
  }
 .scrollable_table::-webkit-scrollbar-thumb:hover {
    background: #32c0c9;
  }*/
/* width */
.scrollable_table::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */
.scrollable_table::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.scrollable_table::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* Handle on hover */
.scrollable_table::-webkit-scrollbar-thumb:hover {
  background: #2a3f54;
}
/* .modal-lg{
    max-width: 600px !important;
}
.modal-lg{
    max-width: 900px !important;
} */
.pop-distribution tr th,
.pop-distribution tr td {
  border: 1px solid #ddd !important;
}
.modal a.close-modal {
  /* top: 86px !important;
    right: 20% !important; */
  display: none !important;
}
#modal_body h5 {
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  margin-top: 10px;
  padding-top: 5px;
  color: #4b5e75;
  font-weight: 500 !important;
  background: lightgray;
}
#modal_body {
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 10px;
  padding-top: 0px !important;
}

/*!
Project Name: HRMS
Front-End Developer: Bikash Bhandari
Front-End Developer Email: bikash.433@gmail.com
Front-End Developer URI: www.bhandaribikash.com.np
Description: Human Resource Managment System.
*/

#modal_body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#modal_body::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

#modal_body::-webkit-scrollbar-thumb {
  background-color: #0ae;

  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.5, rgba(255, 255, 255, 0.2)),
    color-stop(0.5, transparent),
    to(transparent)
  );
}

.modal-body .row {
  /* margin: 0;
  padding: 5px; */
  /*background-color: #e9e9e9;*/
}
.modal-body label,
.modal-body span {
  font-size: 12.5px !important;
}
#modal_body h6 {
  margin: 10px 10px 5px;
}
.close_btn {
  margin: 0px 15px 5px 15px;
}
.modalclose_btn {
  color: #fff !important;
  padding: 3px 12px !important;
}
.scrollable_table {
  max-height: 250px;
  overflow: auto;
}
@media print {
  .scrollable_table {
    overflow: auto;
  }
}
.width-1200 {
  width: 1200px !important;
}
.scrollable_table table tbody:nth-child(odd) {
  background: #f8f9fa;
}
.datatable tr th,
.datatable tr td {
  white-space: nowrap;
  color: #555;
}
.print-report {
  position: unset !important;
  top: unset !important;
  right: unset !important;
  /*margin-bottom: 10px;*/
  /*background: #dcd6d6;*/
  width: 100%;
  text-align: right;
  padding: 6px;
}
.h-400 {
  max-height: 400px !important;
}
/* .sidebar-lg-show {
  overflow: unset !important;
} */

/*-------------------- NEW-CODES ---------------------*/
table.dataTable {
  /* display: block; */
  width: 100%;
  overflow-x: auto;
}

.print_btns .more-info {
  height: 25px;
}
.bg-white .row .col-md-10 {
  padding: 0;
}
.table-new tr th {
  padding: 4px 2px;
}
.table-new tbody tr td {
  padding: 2px 2px;
}
.table-toggle td:nth-child(3) {
  color: #232d2c !important;
}
.table-hover tr td:nth-child(2) {
  color: #232d2c;
}
.vertical_tabs .nav-tabs .nav-item {
  border: 1px solid #c8ced3;
  width: 175px;
}
.breadcrumb {
  margin-bottom: 0px !important;
}
.mobile_table #myTable2_length {
  margin: 0;
}
.vertical_tabs .nav-tabs .nav-item .nav-link.active {
  overflow: visible;
}
.vertical_tabs .nav-tabs .nav-item .nav-link {
  height: 46px;
  font-size: 12px;
  padding: 5px 15px;
  display: block !important;
  align-items: center;
  border-radius: 0px;
  /* border: solid 2px blue; */
  white-space: nowrap;
  text-overflow: ellipsis !important;
  /*width: 182px;*/
  display: block;
  overflow: hidden;
}
/*.rwt__tabs .mobile-menu {
  display: none;
}*/
/* --------------Tooltips ------------*/
/* .tooltip {
  position: relative;
  display: inline-block;
  color:red !important;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
/* position: absolute;
  z-index: 1;
} */
button#dropdownMenuButton {
  background: red;
  color: #000;
  padding: 22px 30px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
*/ div#navbarNav {
  display: block !important;
}

.vertical_page_tabs .rwt__tablist button {
  border-left: 3px solid transparent !important;
  border: 1px solid #c8ccd3 !important;
  border-top: none !important;
  padding: 7px 7px !important;
}

.vertical_tabs .nav-tabs .nav-item .nav-link {
  height: auto !important;
  padding: 5px 5px !important;
}

.vertical_tabs .nav-tabs .nav-link.active::after {
  border-bottom-width: 15px !important;
  border-top-width: 15px !important;
}

.mobile_table .pop-distribution th {
  padding: 2px 0px !important;
}
.scroll_map {
  max-height: 98vh !important;
  padding-top: 8px;
}

@media only screen and (max-width: 1200px) {
  .bg-white .row .col-md-10 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .bg-white .row .col-md-10 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 992px) {
  .app-header .navbar-brand {
    left: 92% !important;
  }
  .nagarpalika_dashboard .breadcrumb {
    margin-top: 15px !important;
  }
  .sidebar-minimized .sidebar .nav-dropdown-items {
    overflow: hidden !important;
    background: #074e67 !important;
  }
  .vertical_tabs .nav-tabs .nav-item {
    border: 1px solid #c8ced3;
    /*width: 182px;*/
  }
}

@media only screen and (max-width: 767px) {
  .vertical_tabs .nav-tabs .nav-link.active::after {
    display: none;
  }
  div#tab_result {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  .vertical_tabs .nav-tabs .nav-item {
    width: 100% !important;
  }
  .bg-white .row .col-md-10 {
    padding: 0px;
  }
  /*.rwt__tabs::after {
    content: "\f7a4";
    font-family: fontawesome;
    display: block;
    font-size: 45px;
    cursor: pointer;
}
.horizontal-page .rwt__tabs a {
    visibility: hidden;
}

.rwt__tabs::after:hover .horizontal-page .rwt__tabs {
  visibility: visible;
}*/

  /*.rwt__tabs .rwt__tablist {
    display: none;
}

.rwt__tabs .mobile-menu {
    display: block;
}
.rwt__tabs .mobile-menu::hover .rwt__tabs .rwt__tablist {
  display: block;
}*/
}
