/*
Copyright (C) 2021 Znuny GmbH, https://znuny.org/

This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
*/
.layoutPopUpSidebar {
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  gap: 20px;
  padding-left: 10px;
  transition: flex-basis 500ms ease-in-out;
  min-height: 100vh;
  max-width: 100%;
}
@media (max-width: 575px) {
  .layoutPopUpSidebar {
    grid-template-columns: calc(100% - 60px) 40px;
    padding-left: 0;
  }
}
.layoutPopUpSidebar .sectionContent {
  padding-top: 20px;
}
.layoutPopUpSidebar .sectionSidebar {
  background-color: var(--background-quinary-color);
}

/*# sourceMappingURL=Layout.PopUpSidebar.css.map */
