html,
body {
  height: 100%;
}

.page-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  overflow: auto;
}

.content-col1 {
  display: flex;
}

.content-col2 {
  flex-grow: 1;
  overflow: auto;
}

.sidebar-container {
  flex-grow: 1;
  display: flex;
  background-color: var(--fdy-stylesLightBackground);
}

.sidebar-col1 {
  overflow: auto;
  max-width: 192px;
}

.top-navbar-container {
  display: flex;
  background-color: var(--fdy-stylesBrandColorAndButtonsBackground);
  color: var(--fdy-stylesBrandColorAndButtonsText);
  padding-top: 2px;
}

.top-navbar-item {
  font-weight: bold;
  color: var(--fdy-stylesBrandColorAndButtonsText);
  align-self: center;
}

.top-navbar-item:hover,
.top-navbar-item:focus {
  color: var(--fdy-stylesBrandColorAndButtonsText);
}

a.top-navbar-item:hover,
a.top-navbar-item:focus {
  filter: brightness(85%);
}

.top-navbar-item span {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 767px) {
  .top-navbar-icon {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .top-navbar-icon {
    font-size: 20px;
  }
}

#toggle-sidebar-visibility-btn {
  padding: 5px;
  color: var(--fdy-stylesBrandColorAndButtonsBackground);
}

.filter-panel-all {
  padding-top: 5px;
  background-color: var(--fdy-stylesLightBackground);
  filter: brightness(85%);
  padding-bottom: 5px;
}

.clickable {
  cursor: pointer;
}

td.td-actions,
th.th-actions {
  white-space: nowrap;
  width: 1%;
}

.dropdown-submenu {
  position: relative;
  cursor: pointer;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #000000;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.foodySelectpicker {
  color: black !important;
  background-color: #ffffff !important;
  border-color: #ccc !important;
}

.noborder-modal-header {
  border-bottom: 0 none;
}

/* Display classes */
.display-none {
  display: none;
}

.overflow-wrap-anywhere {
  overflow-wrap: anywhere;
}

.overflow-wrap-break-word {
  overflow-wrap: break-word;
}

.borderless {
  border: none;
}

/* Sizing classes */
.w-100 {
  width: 100%;
}

.w-fit-content {
  width: fit-content;
}

.w-max-content {
  width: max-content;
}

.w-min-content {
  width: fit-content;
}

.w-100-max-content {
  min-width: max-content;
  width: 100%;
}

.w-100-fit-content {
  min-width: fit-content;
  width: 100%;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}
.p-10 {
  padding: 10px;
}

.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}
.pb-10 {
  padding-bottom: 10px;
}

.m-5 {
  margin: 5 !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.ml-7 {
  margin-left: 7px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

/* Flexbox classes */
.c-flex {
  display: flex;
}

.c-flex-grow-1 {
  display: flex;
  flex-grow: 1;
}

.c-flex-direction-column {
  display: flex;
  flex-direction: column;
}

.c-flex-justify-content-center {
  display: flex;
  justify-content: center;
}

.c-flex-align-items-center {
  display: flex;
  align-items: center;
}
