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;
	flex-direction: column;
	background-color: var(--fdy-stylesBrandColorAndButtonsBackground);
	color: var(--fdy-stylesBrandColorAndButtonsText);
	padding-top: 2px;
}

.top-navbar-standalone-container {
	display: flex;
	background-color: var(--fdy-stylesBrandColorAndButtonsBackground);
	color: var(--fdy-stylesBrandColorAndButtonsText);
	padding-top: 2px;
}

.top-navbar-content {
	display: flex;
}

.navbar-top-websocket-alert {
	background-color: #e60000;
	font-weight: bold;
	text-align: center;
}

.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;
	}
}

.notifications-icon-with-badge {
	position: relative;
}

.notifications-unread-badge {
	position: absolute;
	right: 5px;
	top: 0;
	min-width: 18px;
	height: 18px;
	padding: 0;
	background: #095086;
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	line-height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#toggle-sidebar-visibility-btn {
	padding: 5px;
	color: var(--fdy-stylesBrandColorAndButtonsBackground);
}

.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;
}

.company-blocked-color-badge {
	background-color: #e60000;
}

.company-active-color-badge {
	background-color: #008037;
}

/* 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;
}

.notification-card {
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	position: relative;
}

.notification-close-btn {
	position: absolute;
	top: 5px;
	right: 10px;
}

.notification-title {
	margin-top: 0;
	margin-bottom: 5px;
	font-weight: bold;
}

.notification-date-container {
	color: #999;
}

.notification-empty-message {
	padding: 20px;
}
