body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
}
ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 10px;
}
li {
  padding-left: 10px;
  list-style: none;
  padding-right: 10px;
  /* border-bottom: 1px solid #e1e1e1; */
  margin: 0;
  white-space: nowrap;
  width: 100%;
  display: inline;
  line-height: 35px;
}
.list {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  box-sizing: border-box;
}
.list_overflow {
  display: inline-block;
  text-overflow: ellipsis;
  font-size: 16px;
  box-sizing: border-box;
  white-space: unset !important;
  line-height: 46px;
  vertical-align: top;
}
.summary_category {
  font-weight: bold;
}

.category {
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  /* border-bottom: 0; */
  padding-left: 0 !important;
  line-height: 60px;
}
.headings {
  font-weight: bold;
  font-size: 14px;
}

.icons {
  font-size: 20px;
  padding: 0 15px 0;
}

.alert {
  padding: 20px;
  background-color: #f44336; /* Red */
  color: white;
  margin-bottom: 15px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.6s;
}
.alert.info {background-color: #2196F3;}

.grid_container {
  display: grid;
  grid-column-gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid_item {
  padding: 20px;
  /* font-size: 30px; */
  text-align: center;
}

.explainer {
  all: revert;
  font-size: 16px;
}
.explainer ol, .explainer ul, .explainer li {
  padding: 10px;
  line-height: 25px;
}

.div_40 {
  width: 40%;
  display: inline-block;
  padding-bottom: 5px;
}

.div_20 {
  width: 20%;
  display: inline-block;
  padding-bottom: 5px;
}

.div_25 {
  width: 25%;
  display: inline-block;
  padding-bottom: 5px;
}

.div_50 {
  width: 50%;
  display: inline-block;
  padding-bottom: 5px;
}

input[type="button"], input[type="submit"], button {
  background-color: #1a3668;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 15px 32px;
  display: inline-block;
  font-size: 16px;
  -webkit-appearance: none;
  margin: 5px;
  border-radius: 5px;
}

button.mobile {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 15px;
}

input[type="button"]:hover, input[type="submit"]:hover, button:hover {
  opacity: 0.8;
}
input[type="button"]:focus:active, input[type="submit"]:focus:active, button:focus:active {
  background-color: #000064;
}

input[type="number"], input[type="text"], select, textarea, input[type="date"], input[type="password"] {
  width: 100%;
  max-width: 300px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  transition: 0.2s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 5px;
}

.ui-autocomplete {
  max-height: 400px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}
* html .ui-autocomplete {
  height: 400px;
}

.ui-autocomplete.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
}

.progressbar_container {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding-bottom: 15px;
}
.progressbar {
    counter-reset: step;
}

.progressbar li {
    list-style-type: none;
    width: 25%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
    padding: 0;
}

.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: #1a3668;
    font-weight: bold;
}
.progressbar li.active:before {
    border-color: #1a3668;
}
.progressbar li.active + li:after {
    background-color: #1a3668;
}

.progressbar_borrower {
    counter-reset: step;
}

.progressbar_borrower li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
  padding: 0;
  z-index: 2;
}

.progressbar_borrower li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar_borrower li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}
.progressbar_borrower li:first-child:after {
    content: none;
}
.progressbar_borrower li.active {
    color: #1a3668;
    font-weight: bold;
    z-index: 3;
}
.progressbar_borrower li.active:before {
    border-color: #1a3668;
}
.progressbar_borrower li.active + li:after {
    background-color: #1a3668;
}


/***************** NAVBAR ******************/
.showhide {
	display: none;
  font-size:30px;
  cursor:pointer;
  width: 50px;
}
.sidebar {
  margin: 0;
  padding: 0;
  width: 250px;
  background-color: #f1f1f1;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.2s;
  position: fixed;
  z-index: 5;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar img {
  width: 100%;
  max-width: 220px;
  padding: 10px;
}
.belt {
  width: 250px;
}
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}
.sidebar a.active {
  background-color: #1a3668;
  color: white;
}
.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.closebtn {
  display: none;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 200px;
  text-align: center;
}
.menulist {
  position: absolute;
  left: 50px;
  width: 200px;
}

/************* BODY **************/
div.content {
  margin-left: 250px;
  padding: 1px 16px;
  height: 100%;
}
 .listings {
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
 }
.welcome {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin: 30px;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOutOpacity {
  100% {
		opacity: 1;
	}
	0% {
		opacity: 0;
	}
}

div.div_active {
  opacity: 1;
  animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 250ms;
}

div.div_active a {
  color: black;
  text-decoration: none;
}

div.div_hidden {
  opacity: 0;
  animation-name: fadeOutOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	animation-duration: 250ms;
  position: absolute;
  display: none;
}


/******** MODAL *************/

.modal_alert-header {
    padding: 2px 16px;
    background-color: red;
    color: white;
}

.modal_alert-body {padding: 16px 0px; text-align: center;}

/* Modal background */
.modal_open {
  opacity: 1;
  animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 250ms;
  display: block;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal_closed {
  opacity: 0;
  animation-name: fadeOutOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	animation-duration: 250ms;
  position: absolute;
  display: none;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  /* Animation */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.ios-modal {
  display: none;
  background-color: #f0f0f0;
  position: fixed;
  bottom: 0;
  margin: 5px auto;
  padding: 8px;
  width: 80%;
  text-align: center;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* for switch sliders */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 5px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #1a3668;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* end switch slider */

/*Styles for checkboxes*/
  /* The container */
  .container {
    display: block;
    position: relative;
    padding-left: 35px;
    /* margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browsers default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
  }

  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #1a3668;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .radio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom radio button */
  .radio_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }

  /* On mouse-over, add a grey background color */
  .radio_container:hover input ~ .radio_checkmark {
    background-color: #ccc;
  }

  /* When the radio button is checked, add a blue background */
  .radio_container input:checked ~ .radio_checkmark {
    background-color: #1a3668;
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio_checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .radio_container input:checked ~ .radio_checkmark:after {
    display: block;
  }

  /* Style the indicator (dot/circle) */
  .radio_container .radio_checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }

  .login_container {
    padding: 16px;
    width: 90%;
    max-width: 410px;
    margin: auto;
  }
  .login_button {
    width: 100%;
    margin: 5px 0px;
  }

  .dataTables_length select {
    height: 35px;
    max-width: 75px;
  }

  .dataTables_filter input {
    height: 35px;
    margin: 8px 0;
  }

  #progress-container {
    width: 100%;
    border: 1px solid black;
    height: 30px;
    color: black;
    text-align: center;
  }
  #progress-bar {
      width: 0%;
      height: 100%; 
      background-color: #1a3668;
      overflow:hidden;
      -webkit-transition: width 1s ease-in-out;
      -moz-transition: width 1s ease-in-out;
      -o-transition: width 1s ease-in-out;
      transition: width 1s ease-in-out;
  }
  #progress-message {
      padding-top: 10px;
      width: 100%;
      height: 20px;
      color: black;
      text-align: center;
  }

/******* SMALL SCREEN ADJUSTMENT *********/
@media screen and (max-width: 600px) {
  .sidebar a {
    text-align: left;
    float: none;
  }
  .sidebar {
  	width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.2s;
  }
  .showhide {
   display: block;
   margin-top: 10px;
  }
  div.content {margin-left: 0;}
  .closebtn {
   display: block;
  }
  ul {
  margin-left: 0;
  padding-inline-start: 0;
  }
  div.div_hidden {
    padding: 0 10px;
    left: 0;
    right: 0;
  }
  div.div_active {
    padding: 0 10px;
    left: 0;
    right: 0;
  }
  .collapse {
    display: none;
  }
  .expand_60 {
    width: 60%;
  }
  .expand_40 {
    width: 40%;
  }
  .expand_33 {
    width: 33%;
  }
  button.mobile {
    padding: 5px;
    margin-right: 5px;
  }
  #progress-container {
        width: 100%;
        border: 1px solid black;
        height: 30px;
        color: black;
        text-align: center;
    }
    #progress-bar {
        width: 0%;
        height: 100%; 
        background-color: red;
        overflow:hidden;
        -webkit-transition: width 1s ease-in-out;
        -moz-transition: width 1s ease-in-out;
        -o-transition: width 1s ease-in-out;
        transition: width 1s ease-in-out;
    }
    #progress-message {
        padding-top: 10px;
        width: 100%;
        height: 20px;
        color: black;
        text-align: center;
    }
}
