body {
  background-color: #e8f5e9;
  color: #000;
  background-image: url(../img/background.jpg);
  background-repeat: repeat;
  background-size: cover;
  background-position: top right;
}

/* The Login/SignUp Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 10%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 45px;
  font-size: 60px;
}

/*Start Side Nav*/
/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

.tab,
.tabcontent {
  position: relative;
  top: 98px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 70%;
  border-left: none;
  height: 300px;
  display: none;
}

/*End Side Nav*/

/* Button for SideBar */
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
/* Button for SideBar */

/* Vertical Bar */
.icon-bar {
  width: 110px; /* Set a specific width */
  background-color: #FA6E36; /* Dark-grey background */
  position: relative;
  top: 98px;
  height: 100%;
}

.modal-footer .modal-close {
  background-color: #1dab61;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}
.modal-footer .modal-close:hover {
  background-color: #3e9266;
}


/* .btn, .btn-large, .btn-small {
  background-color: #1cab60;
} */

.icon-bar a {
  display: block; /* Make the links appear below each other instead of side-by-side */
  text-align: center; /* Center-align text */
  transition: all 0.3s ease; /* Add transition for hover effects */
  color: white; /* White text color */
  font-size: 16px; /* Increased font-size */
  padding: 10px 0px; /* Add some padding */
}

.icon-bar a.router-link-exact-active, .sidenav a.router-link-exact-active {
  background-color: #1cab60;
}

.icon-bar a i {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 36px;
}

.icon-bar a:hover, .sidenav li a:hover {
  background-color: #FA6E36; /* Add a hover color */
}

.sidebar__nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
}
/* End Vertical Bar */

/* Login & Signup form */
.logueo {
  /* PARALLAX */
  height: 650px !important;
}
i.iconis {
  font-size: 1em !important;
  margin-top: 8px;
}
.login {
  border: 1px solid #fff;
  width: 80%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
}
/* End Login & Signup form */

/* Main Content CSS */
section.main-window {
  max-width: 100%;
}

section.main-section {
  position: relative;
  top: 120px;
  max-width: 90%;
  left: 120px;
}

#mainArea {
  position: absolute;
  top: 118px;
  max-width: 100%;
  width: calc(97% - 130px);
  left: 130px;
}

.sidenav li>a>i, .sidenav li>a>[class^="mdi-"], .sidenav li>a li>a>[class*="mdi-"], .sidenav li>a>i.material-icons {
  font-size: 25px;
}

.header__logo .navBtn {
  display: none;
}

.blur   {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.row {
  margin-bottom: 15px;
}
.modal {
  max-height: 90%;
  width: 60%;
}
/* Main Content CSS */

/* Footer CSS */
.footer {
  position: fixed;
  bottom: 0;
  width: calc(100% - 110px);
  left: 110px;
  height: 30px;
  line-height: 30px;
  background-color: white;
  z-index: 11;
  font-size: .8em;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
  color: #818a91;
  padding: 0 2em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.footer span a {
  margin-right: 15px;
}
/* Footer CSS */
/* SLIDE OUT CSS */
.menu__content {
  position: sticky;
  height: 100%;
  width: 100%;
  left: 0;
  top: 28px;
  z-index: 10;
}
.bills__wrapper {
  background: #f1f6f8;
  height: 100%;
  padding: 71px 246px 0 105px;
}
.bills__side__wrapper {
  background: #02405c;
  width: 260px;
  position: absolute;
  left: -400px;
}
.left_out {
  left: 125px;
}
.bills__categories__list {
  padding-bottom: 0px;
  position: relative;
  height: 88vh;
  background: #e05118;
  margin: 0 -15px;
}
.scrollbar-container {
  position: relative;
  height: 100%;
}
.ps-container {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none;
}
.bill__category__item {
  color: #fff;
  padding: 16px 0 16px 24px;
  font-size: 0.95em;
  font-weight: 300;
  cursor: pointer;
}
.mobileMenu {
  display: none;
}
.bill__category__item.first__item {
  margin-top: 10px;
}
@media(min-width: 1400px) {
  .slider, .slides {
    height: 720px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px)  {
  .bills__side__wrapper {
    width: 260px;
  }
}
/* SLIDE OUT CSS */
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media screen and (max-width: 600px) {
  .header__logo .navBtn {
    display: block;
    left: -47px;
    position: relative;
    top: 15px;
  }
  .mobileMenu {
    display: block;
  }
  .header__logo a {
    left: 0px;
    top: 3px;
  }
  .sidebar__nav {
    left: -120px;
  }
  section.main-section {
    position: relative;
    top: 110px;
    max-width: 90%;
    left: 10px;
  }
  #mainArea {
    width: calc(95% - 30px);
    left: 30px;
  }
  .fullSize {
    height: 100vh !important;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  section.main-section {
    max-width: 84%;
    left: 93px;
  }
  #mainArea {
    max-width: 100%;
    width: calc(100% - 100px);
    left: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section.main-section {
    max-width: 90%;
    left: 98px;
  }
  #mainArea {
    max-width: 100%;
    width: calc(95% - 130px);
    left: 130px;
  }
}
@media only screen and (min-width: 993px) {
  #toast-container {
    top: 45%;
    right: 50%;
    transform: translate(50%, 40%);
    max-width: 86%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  /* Button for SideBar */
  .bar1, .bar2, .bar3 {
    width: 25px;
    height: 2px;
  }
  .header__logo {
    height: 67px;
    width: 32px;
    margin-top: -8px;
  }
  .footer {
    width: 100%;
    z-index: 11;
    left: 0px;
  }
  .footer span a {
    margin-right: 10px;
  }
  .footer span {
    font-size: 14px;
  }
  section#account {
    margin-right: -20px;
  }
  section#account .btn {
    padding: 0px 6px;
  }
  #mainArea {
    width: 100%;
    left: 0px;
  }
  .btn__login {
    margin-right: 6px;
  }
  .sidenav {
    width: 250px;
  }
  .modal {
    width: 100%;
  }
  .overlay .closebtn {
    top: 6px;
    right: 15px;
    font-size: 40px;
    z-index: 10000;
  }
  .overlay-content {
    top: 3%;
    margin-top: 0px;
  }
  .overlay a:hover, .overlay a:focus {
    color: #000;
  }
  .icon-bar a:hover, .sidenav li a:hover {
    background-color: rgb(250, 110, 54);
  }
}
