/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
html {
    -ms-overflow-style: none;
    scrollbar-width: none; /* Firefox */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    max-width: 100%;
}

body {
  /* Margin bottom by footer height */
  width: 100%;
}

/* Main content */
.main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
    width:100%;
}

@media screen and (max-width: 768px) {

    div.sidenav {
        display: none;
    }

    html {
        font-size: 8px;
    }
}

#cookie-popup { 
  text-align: center; 
  background: #fff;
  position: fixed;
  bottom: 0px; 
  left: 0;
  right: 0;
  z-index: 9999;
  font-size:14px; 
  line-height:20px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  }
 
#cookie-popup.hidden {
  display: none;
}

@media print
{
    #dont-print
    {
      display: none;
    }
}

/* AdminLTE 4 positions header/sidebar/main/footer via CSS Grid on
   .app-wrapper (grid-template-areas), not via manual margins. The shared
   page templates output .content-wrapper (kept as-is, rather than renaming
   it to .app-main in every individual page view file), so it needs the
   matching grid-area assigned here to slot into the same "main" column/row
   .app-main would otherwise occupy. */
.content-wrapper {
  grid-area: lte-app-main;
  flex: 1 1 auto;
  overflow: auto;
}

/* AdminLTE 4 dropped the sidebar "user-panel" avatar component entirely (no
   .user-panel rules exist in its CSS at all), so the avatar <img> rendered
   at its natural file size instead of the small circular size it had in v3.
   Restoring the old v3 sizing here since v4 has no equivalent replacement. */
.user-panel .image img {
  width: 2.1rem;
  height: auto;
}