@charset "UTF-8";
@import "./skaleo-front-macros.min.css";
@import "./skaleo-viewport-utilites.min.css";

/*
	CSS for skaleo dashboard
	Syntax: CSS
	Created by: Bartłomiej Kowalczyk
	Date: 24/11/22
	Last update: 25/09/25
	Version: 1.02
*/


/* VARIABLES */
:root {
	--skaleo-global-secondary: #fefeff;
	--skaleo-global-accent: #2A6DE9;
	--skaleo-global-accent-alpha: rgba(43, 112, 240, 0.8);
	--skaleo-global-accent-lighter: #e0eafc;
	--skaleo-global-text-color: #2f3542;
	--skaleo-table-divider: #2b70f01c;
	--skaleo-disabled-bg: #f0f1f2;
	--skaleo-disabled-text: #5c636f;
	--skaleo-grey-bg: #c1c1c1;
	--skaleo-light-grey-blueish: #ecf2fe;
	--skaleo-very-light-grey-blueish: #F8FAFF;
	--skaleo-light-grey-red: #ffd1dd;
	--skaleo-font-satoshi: "satoshi", Sans-serif;
	--skaleo-text-greyed-out: #465a78;

	--skaleo-success-bg: rgb(220 252 231);
	--skaleo-success-text: rgb(22 101 52);
	--skaleo-error-bg: rgb(254 226 226);
	--skaleo-error-text: rgb(153 27 27);
	--skaleo-warning-bg: rgb(254 249 195);
	--skaleo-warning-text: rgb(133 77 14);
	--skaleo-info-bg: rgb(219 234 254);
	--skaleo-info-text: rgb(30 64 175);

	--skaleo-tooltip-bg: #515151;
	--skaleo-tooltip-text: white;

	--skaleo-outline-dark-accent: #313131;
	--skaleo-outline-color-accent: rgba(32, 100, 243, 0.65);

	--skaleo-skeleton-bg: #f2f2f2;
	--skaleo-skeleton-element: #e0e0e0;
	--skaleo-skeleton-element-border-radius: .2em;
	--skaleo-skeleton-animation: pulse 1.5s infinite ease-in-out;
}

/* Alpine JS */
[x-cloak] { display: none !important; }

/* ACCESIBILITY */
/* ACCESIBILITY END*/

.skaleo-card, .skaleo-card-text, .skaleo-card-title,
.skaleo-link, .skaleo-input, .skaleo-input-label,
.skaleo-checkbox-label, .skaleo-button,
.skaleo-view-headline, .skaleo-view-processing, .skaleo-notice,
.skaleo-table-menu, .skaleo-table {
	font-family: var(--skaleo-font-satoshi), serif;
}

.skaleo-pager, .skaleo-flexbox-row, .skaleo-flexbox-column, .skaleo-flexbox,
.skaleo-center-items, .skaleo-align-left-items, .skaleo-view-headline,
.skaleo-view-headline-right, .skaleo-view-processing, .skaleo-select-multiple-content-item {
	display: flex;
}

.info-icon { width:15px; }

/* COMPONENTS */

/* cards */
.skaleo-card {
	margin: 4em auto;
	width: 80vw;
	box-shadow: 0 8px 80px rgba(0, 0, 0, 0.07), 0 3.34221px 33.4221px rgba(0, 0, 0, 0.0503198),
	0 1.7869px 17.869px rgba(0, 0, 0, 0.0417275), 0 1.00172px 10.0172px rgba(0, 0, 0, 0.035),
	0 0.532008px 5.32008px rgba(0, 0, 0, 0.0282725), 0 0.221381px 2.21381px rgba(0, 0, 0, 0.0196802);
	border-radius: 15px;
	padding: 1em 3em;
	background-color: #fff;
}

.skaleo-card.skaleo-skeleton {
	background-color: var(--skaleo-skeleton-bg);
	overflow: hidden;
}

.skaleo-card-small {
	width: 30vw;
	padding: 1em 5em;
}

.skaleo-card-responsive {
	width: fit-content;
	height: fit-content;
	padding: 1em 5em;
}

.skaleo-card-floating {
	margin: 0 auto;
	top: 50%;
	right: 20px; /* Changed from -20px to 20px */
	transform: translateY(-50%);
	background: var(--skaleo-very-light-grey-blueish);
	z-index: 1001;
}

/* Animation */
.skaleo-card-floating.skaleo-animation-enter {
	--duration: 150ms;
	--easing: ease-out;
	animation-name: slide-in;
}

.skaleo-card-floating.skaleo-animation-leave {
	--duration: 150ms;
	--easing: ease-in;
	animation-name: slide-out;
}

.skaleo-card-info {
	width: 40vw;
	padding: 1em 3em;
}

.skaleo-card-sub {
	width:auto;
	background-color: var(--skaleo-very-light-grey-blueish);
}

.skaleo-card-reports {
	width: auto;
	padding: 1em;
	margin: 2em abs(calc(2em - 10px)) 0 abs(calc(2em - 20px));
}

.skaleo-flexbox-row, .skaleo-view-headline {
	flex-direction: row;
	flex-wrap: wrap;
	padding: 1em 1.2em;
	width: 100%;
}

.skaleo-flexbox-column {
	flex-direction: column;
	flex-wrap:wrap;
	flex-basis: 100%;
	flex: 1;
	justify-content: end;
	gap: .5em;
}


.skaleo-card-title {
	color: var(--skaleo-global-text-color);
	font-size: 3.5em;
	font-weight: bold;
}

.skaleo-card-sub-title {
	color: var(--skaleo-global-text-color);
	font-size: 2em;
	font-weight: bold;
}

.skaleo-card-text {
	text-align: center;
	color: var(--skaleo-global-text-color);
	font-size: 1.2em;
}

.skaleo-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 1fr);
	gap: 16px;
}

/* card tables */
.skaleo-table {
	display: table !important;
	height: 100%;
	width: 100%;
	padding: 0 !important;
	margin: 1em auto !important;

	overflow: hidden;
}

.skaleo-table.skaleo-skeleton {
	border-collapse: collapse;
}

.skaleo-table-header, .skaleo-table-row {
	display: table-row;
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-table-row.loading {
	position: relative;
	left: calc(50% - 34px);
}

.skaleo-table-row.loading:hover {
	background-color: transparent !important;
}

.skaleo-table-row .skaleo-loader {
	margin: 2em 1em;
}

.skaleo-table-header {
	display: table-header-group;
	background-color: var(--skaleo-global-accent);
	color: var(--skaleo-global-secondary);
	font-weight: 600;
}

.skaleo-table-header.skaleo-skeleton, .skaleo-table-row.skaleo-skeleton  {
	width: 100%;
	height: 1em;
	padding: 8px 0;
}

.skaleo-table-row:nth-child(odd) {
	background-color: var(--skaleo-light-grey-blueish);
}

.skaleo-table-cell {
	display: table-cell;
	padding: .4em .75em;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid var(--skaleo-table-divider);

	transition: all 150ms cubic-bezier(0, .41, .62, 1.12);
	box-sizing: border-box;
	overflow: auto;
}

.skaleo-table-cell.skaleo-skeleton {
	height: .8em;
	padding: initial;
}

.skaleo-table-cell .skaleo-checkbox {
	width: 1.8em;
	height: 1.8em;
	background-color: var(--skaleo-global-secondary);
	box-shadow: 2px 3px var(--skaleo-global-accent-lighter);
	overflow:hidden;
}

.skaleo-table-cell div.skaleo-checkbox.skaleo-selected {
	background-color: #2b70f022;
	box-shadow: none;
}

.skaleo-table-cell div.skaleo-checkbox.skaleo-selected::before {
	width: 2.3em;
	position: relative;
	top: 1px;
}

.skaleo-table .skaleo-table-row:hover {
	background-color: var(--skaleo-global-accent-lighter);
}

.skaleo-table-row:last-child, .skaleo-table-cell:last-child {
	border-right: 0;
}


/* admin head */
.skaleo-view-headline {
	justify-content: space-between;
	padding-top: 1.25em;
	padding-bottom: 1.25em;
	gap: 1em;
}

.skaleo-view-headline-line {
	margin: 0;
}

.skaleo-view-headline-title {
	padding: .75em;
	background-color: var(--skaleo-very-light-grey-blueish);
	border-radius: .2em;
	box-shadow: 0px 8px 80px rgba(0, 0, 0, 0.04), 0px 3.34221px 33.4221px rgba(0, 0, 0, 0.02),
	0px 1.7869px 17.869px rgba(0, 0, 0, 0.04), 0px 1.00172px 10.0172px rgba(0, 0, 0, 0.05),
	0px 0.532008px 5.32008px rgba(0, 0, 0, 0.05), 0px 0.221381px 2.21381px rgba(0, 0, 0, 0.06);
	font-weight: bold;
	color: var(--skaleo-global-accent)
}

/* class need better name */
.skaleo-view-headline-right {
	justify-content: left;
	flex-wrap: wrap;
	gap: 1em;
}

.skaleo-view-headline-right .skaleo-dropdown, .skaleo-view-headline-right .skaleo-view-headline-right-link {
	height: 3em;
}

.skaleo-view-headline-right-link {
	position: relative;
	display: inline-block;
}

.skaleo-view-processing {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 9999;
	left:0;
	top:0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 200ms ease-in-out;
}

/* Dialog */

.skaleo-dialog-container {
	position: relative;
}

.skaleo-dialog-overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 2000;
	left:0;
	top:0;
	background-color: rgba(0, 0, 0, 0.5);
}

.skaleo-dialog {
	position: fixed;
	padding: 0 !important;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2001;
}

.skaleo-dialog.skaleo-skeleton {
	width: 40vw !important;
	height: 40vh !important;
}

.skaleo-dialog-header {
	flex-shrink: 0;
	background-color: var(--skaleo-very-light-grey-blueish);
	border-radius: inherit;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-dialog-header .skaleo-text.skaleo-skeleton {
	background-color: var(--skaleo-disabled-text);
}

.skaleo-dialog-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.skaleo-dialog-body .skaleo-body-section-title {
	border-bottom: 2px solid var(--skaleo-table-divider);
	width: fit-content;
}

.skaleo-dialog-body .skaleo-body-section {
	background-color: var(--skaleo-light-grey-blueish);
	width: 90%;
	border-radius: 5px;
	padding: 1em;
}

.skaleo-dialog-footer {
	border-radius: inherit;
}

/* Reservation list menu */
.skaleo-actions-row {
	overflow: hidden;
	transition: max-height 300ms ease-out, opacity 200ms ease-out, padding 300ms ease-out;
	max-height: 0;
	opacity: 0;
	padding: 0;
}

.skaleo-actions-row.skaleo-actions-expanded {
	max-height: 200px;
	opacity: 1;
	padding: 1em 0;
	border-top: 1px solid var(--skaleo-table-divider);
	margin-top: 1em;
}

.skaleo-actions-content {
	display: flex;
	gap: 1em;
	align-items: flex-end;
}

.skaleo-actions-label {
	align-self: center;
}

.skaleo-selection-badge {
	background: var(--skaleo-global-accent);
	color: var(--skaleo-global-secondary);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.8em;
	font-weight: 600;
}

/* Reservation list cards */
.skaleo-card.skaleo-reservation-card {
	position: relative;
	border-radius: 8px;
	overflow: inherit;
	padding: 0;
	margin: .8em auto;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	background-color: var(--skaleo-very-light-grey-blueish);
	transition: transform 200ms, box-shadow 200ms;
}

.skaleo-card.skaleo-dialog {
	display: flex;
	flex-direction: column;
	width: auto;
	min-width: 40%;
	margin: 0;
	max-height: min(85vh, 650px);
	overflow: hidden;
}

.skaleo-card.skaleo-reservation-card:hover {
	/*transform: translateY(-2px);*/
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* skaleo-card-header */
.skaleo-reservation-card .skaleo-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .8em 1em;
	cursor: pointer;
	/*background-color: inherit;*/
	border-bottom: 1px solid var(--skaleo-table-divider);
	box-sizing: content-box;
}

.skaleo-reservation-card .skaleo-card-header:focus-visible {
	outline: 1px solid var(--skaleo-outline-dark-accent);
	border-radius: inherit;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.skaleo-card-floating .skaleo-card-header {
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-card-header .skaleo-header-title {
	color: var(--skaleo-global-accent);
	font-weight: 500;
}

.skaleo-header-title.skaleo-skeleton {
	width: 60%;
	height: 1em;
	background-color: var(--skaleo-skeleton-element);
	border-radius: var(--skaleo-skeleton-element-border-radius);
	animation: var(--skaleo-skeleton-animation);
}

.skaleo-card-header .skaleo-header-checkbox.skaleo-selected {
	background-color: var(--skaleo-light-grey-blueish) !important;
}

.skaleo-header-status {
	align-items: center;
}

.skaleo-card-header .skaleo-icon, .skaleo-card-body .skaleo-icon {
	position: initial;
	left: unset;
	top: unset;
	width: 1em;
	transition: all 150ms ease-in-out, transform 300ms ease-in-out;
}

.skaleo-card-header svg.skaleo-icon:focus-visible, .skaleo-card-body svg.skaleo-icon:focus-visible {
	outline: 2px solid var(--skaleo-outline-color-accent);
	outline-offset: 2px;
	border-radius: 9999px;
}

.skaleo-card-header .skaleo-icon:hover, .skaleo-card-body .skaleo-icon:hover {
	color: var(--skaleo-global-accent);
}

.skaleo-card-header .skaleo-icon.collapsed {
	transform: rotate(180deg);
}

/* skaleo-card-body */
.skaleo-body-section .skaleo-table {
	font-size: 1em;
	margin: 0 auto !important;
}

.skaleo-body-section .skaleo-table .skaleo-table-row .skaleo-checkbox {
	font-size: .75em;
}

.skaleo-body-section .skaleo-table .skaleo-table-header .skaleo-checkbox {
	font-size: .75rem;
}

.skaleo-card-body .skaleo-table .skaleo-table-header {
	background-color: var(--skaleo-global-secondary);
	font-size: .75rem;
}

.skaleo-card-body .skaleo-table .skaleo-table-row {
	background-color: var(--skaleo-global-secondary);
	transition: all 150ms ease-in-out;
}

.skaleo-card-body .skaleo-table .skaleo-table-row.skaleo-participant-sponsor {
	background-color: var(--skaleo-global-secondary);
}

.skaleo-card-body .skaleo-table .skaleo-table-header .skaleo-table-cell {
	text-transform: uppercase;
	color: var(--skaleo-global-text-color);
	margin-bottom: .5em;
	letter-spacing: 1px;
	border-right: none;
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-card-body .skaleo-table .skaleo-table-row .skaleo-table-cell {
	border-right: none;
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-card-body .skaleo-table .skaleo-table-row:hover {
	background-color: var(--skaleo-global-accent-lighter);
}

.skaleo-status-pills-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5em;
}

.skaleo-status-pills-container .skaleo-status-pill {
	cursor: pointer;
	display: inline-block;
	font-size: .7em;
	font-weight: 500;
	padding: 3px 8px;
	border-radius: 12px;
	transition: all 250ms ease-in-out;
}

.skaleo-status-pill.skaleo-skeleton {
	width: 5em;
	height: 1.2em;
	background-color: var(--skaleo-skeleton-element);
	animation: var(--skaleo-skeleton-animation);
}

.skaleo-status-pills-container .skaleo-status-pill:focus-visible {
	outline: 1px solid var(--skaleo-outline-dark-accent);
}

.skaleo-status-pill.status-done {
	background-color: var(--skaleo-success-bg);
	color: var(--skaleo-success-text);
}

.skaleo-status-pill.status-missing {
	/* TO CHANGE */
	background-color: var(--skaleo-info-bg);
	color: var(--skaleo-info-text);
}

/* Pill animations */
.skaleo-status-pill.skaleo-animation-highlight {
	animation: status-change-highlight 300ms ease-in-out;
}

.skaleo-tag {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 700;
	background-color: var(--skaleo-global-accent-lighter);
	color: var(--skaleo-global-accent);
	padding: 2px 6px;
	border-radius: 12px;
	margin-left: 6px;
	border: 1px solid transparent;
	transition: all 150ms ease-in-out;
}

.skaleo-tag.button-clear {
	background-color: var(--skaleo-global-secondary);
	border: 1px solid var(--skaleo-info-bg);
	cursor: pointer;
}

.skaleo-tag.skaleo-flex {
	display: flex;
	align-items: center;
	padding: 2px 6px;
}

.skaleo-tag.skaleo-flex div {
	height: fit-content;
}

.skaleo-tag .skaleo-icon {
	position: relative;
	width: 1.2em;
	left: 0; right: 0;
	transition: transform 150ms ease-in-out;
}

.skaleo-tag .skaleo-icon:hover {
	transform: scale(1.2);
}

.skaleo-table-menu .skaleo-tag:hover {
	background-color: var(--skaleo-very-light-grey-blueish);
	border: 1px solid var(--skaleo-global-accent-lighter);
}

.skaleo-table-menu .skaleo-tag.button-clear:hover {
	background-color: var(--skaleo-global-accent-lighter);
}

.skaleo-table-row:hover .skaleo-tag {
	background-color: var(--skaleo-global-secondary);
}

/* skaleo-card-footer */
.skaleo-reservation-card .skaleo-card-footer {
	display: flex;
	justify-content: center;
	padding: .4em 1em;
	/*background-color: inherit;*/
	border-top: 1px solid var(--skaleo-table-divider);
	border-radius: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.skaleo-card-footer.skaleo-skeleton {
	height: 2.5em;
}

.skaleo-card-footer .skaleo-footer-date {
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	opacity: 0.8;
}

.skaleo-footer-date.skaleo-skeleton {
	margin: .8em 0;
	width: 20%;
	height: 1em;
	background-color: var(--skaleo-skeleton-element);
	animation: var(--skaleo-skeleton-animation);
	border-radius: var(--skaleo-skeleton-element-border-radius);
}

/* text */

.skaleo-text-left {
	text-align: left !important;
}

.skaleo-text-small {
	font-size: .65em !important;
}

.skaleo-text-medium {
	font-size: .8em !important;
}

.skaleo-text-large {
	font-size: 1.4em !important;
}

.skaleo-text-extra-large {
	font-size: 2em !important;
}

.skaleo-text-greyed-out {
	color: var(--skaleo-text-greyed-out);
}

.skaleo-text-highlight {
	color: var(--skaleo-global-accent);
	font-weight: 700;
}

.skaleo-link {
	transition: all 150ms ease-in-out;
}

.skaleo-text-highlight.skaleo-link {
	font-weight: 500;
	text-decoration: underline;
	cursor: pointer;
}

.skaleo-link:hover {
	color: var(--skaleo-global-accent-alpha);
}

.skaleo-text-nowrap{
	text-wrap: nowrap;
}

/* inputs, selects, buttons */
.skaleo-input-label {
	display:block;
	font-weight: 400;
	font-size: 1.2em;
	cursor:pointer;
}

.skaleo-helper { width:100%; }

.skaleo-invalid > input.skaleo-input {
	background: var(--skaleo-light-grey-red);
}

.skaleo-input.skaleo-disabled::placeholder {
	color: var(--skaleo-disabled-text);
}

input.skaleo-input, textarea.skaleo-input, select.skaleo-select, .skaleo-button-select {
	display:block;
	color: var(--skaleo-global-accent);
	font-weight: 700;
	background-color: var(--skaleo-light-grey-blueish);
	border-width: 0px !important;
	border-radius: 6px !important;
}

input.skaleo-input[readonly], select.skaleo-select[readonly] {
	color: var(--e-global-color-text);
	opacity: .7;
	cursor: default;
}

input.skaleo-input::placeholder {
	color: var(--skaleo-global-accent);
	opacity: .3;
}

input.skaleo-input {
	padding: .5em 1rem;
}

select.skaleo-select {
	padding: 10px 1rem;
}

.skaleo-helper > input.skaleo-input, .skaleo-helper > select.skaleo-select, .skaleo-helper > textarea.skaleo-input {
	width:70%;
	max-width: 100%;
}

.skaleo-flexbox-column-checkbox {
	flex-direction: row;
	justify-content: normal;
}

.skaleo-checkbox {
	display:block;
	cursor: pointer;
	color: var(--skaleo-global-accent);
	background-color: var(--skaleo-light-grey-blueish);
	border-width: 0px !important;
	border-radius: 6px !important;
	transition: all 250ms ease-in-out;
}

.skaleo-checkbox:focus-visible, .skaleo-checkbox.skaleo-checkbox-simple:focus-visible {
	border: 1px solid var(--skaleo-outline-dark-accent) !important;
	box-shadow: 0 0 0 3px var(--skaleo-outline-color-accent) !important;
}

.skaleo-checkbox.skaleo-skeleton, .skaleo-icon.skaleo-skeleton {
	background-color: var(--skaleo-skeleton-element);
	animation: var(--skaleo-skeleton-animation);
	border-radius: var(--skaleo-skeleton-element-border-radius);
}

.skaleo-checkbox.skaleo-checkbox-simple {
	box-sizing: content-box;
	border: 1px solid var(--skaleo-global-accent-alpha) !important;
	background-color: var(--skaleo-global-secondary) !important;
	box-shadow: none;
}

div.skaleo-checkbox.skaleo-selected {
	background-color: var(--skaleo-very-light-grey-blueish);
}

.skaleo-checkbox-label {
	width:60%;
	display: block;
	font-weight: 400;
	font-size: 1.2em;
	cursor:pointer;
}

/* Switch */

.skaleo-switch {
	position: relative;
	display: flex;
	width: 2.5em;
	height: 1.5em;
	background: #f6a0a0;
	border: 1px solid #8c8f94;
	border-radius: 1em;
	box-shadow: rgba(99, 99, 99, 0.3) 1px 2px 5px 1px;
	cursor: pointer;
	-webkit-transition: .4s;
	transition: .4s;
}

.skaleo-switch:hover {
	box-shadow: rgba(99, 99, 99, .6) 0px 2px 5px 1px;
}

.skaleo-switch::before {
	content: "";
	position: absolute;
	height: 1.2em;
	width: 1.2em;
	top: 1px;
	left: 2px;
	border: 1px solid #9c9fa4;
	border-radius: 50%;
	background-color: #fefefe;
	-webkit-transition: .4s;
	transition: .4s;
}

.skaleo-switch.skaleo-skeleton {
	background: var(--skaleo-skeleton-element);
	cursor: default;
}

.skaleo-switch-container.on .skaleo-switch {
	background: hsl(158, 95%, 50%);
}

.skaleo-switch-container.on > .skaleo-switch:before {
	left: 1em;
}

.skaleo-switch-container.off .skaleo-switch {
	background: #f6a0a0;
}

.skaleo-switch-container.disabled {
	opacity: 0.2;
}

.skaleo-switch-container.skaleo-skeleton {
	opacity: 0.25;
}

/* buttons only */
.skaleo-button {
	width: fit-content;
	font-size: 1.3em;
	font-weight: 500;
	fill: #FFFFFF;
	color: var(--skaleo-global-secondary);
	padding: .2em 1em;
	background-color: #2B70F0;
	border-color: var(--skaleo-global-accent);
	border-radius: 199px 199px 199px 199px;
	box-shadow: 0px 6px 16px 0px rgba(10.49999999999998, 9.769565217391285, 9.769565217391285, 0.14);
	cursor: pointer;
	transition: all 200ms cubic-bezier(0, .41, .62, 1.12);
}

input.skaleo-button:focus-visible, button.skaleo-button:focus-visible {
	outline: solid var(--skaleo-outline-dark-accent) 1px !important;
}

.skaleo-button:hover {
	color: var(--skaleo-global-accent);
	background: #fff;
	border-color: #fff;
}

.skaleo-button:focus {
	color: #FFFFFF;
	background-color: #2B70F0;
	border-color: var(--skaleo-global-accent);
	outline: none !important;
}

.skaleo-button-secondary {
	font-size: 1em;
	fill: #FFFFFF;
	color: var(--skaleo-global-text-color);
	background-color: var(--skaleo-global-secondary);
	border-color: var(--skaleo-global-text-color);
}

.skaleo-button-round {
	display:flex;
	justify-content: center;
	align-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
}

.skaleo-button-select {
	display: block;
	color: var(--skaleo-global-accent-alpha) !important;
	font-weight: 700;
	background-color: var(--skaleo-light-grey-blueish) !important;
}

.skaleo-button-squared {
	border-radius: .2em !important;
	box-shadow: 0px 6px 16px 0px rgba(10.49999999999998, 9.769565217391285, 9.769565217391285, 0.14) !important;
}

.skaleo-button.skaleo-text-sm {
	font-size: .6em !important;
}

.skaleo-button.skaleo-text-md {
	font-size: .8em !important;
}

.skaleo-button.skaleo-text-regular {
	font-size: 1em !important;
}


.skaleo-button-secondary:hover {
	color: var(--skaleo-global-accent);
	background: #fff;
	border-color: #fff;
}

.skaleo-button-secondary:focus {
	color: var(--skaleo-global-accent);
	background-color: var(--skaleo-global-secondary);
}

.skaleo-button-close:hover {
	color: var(--skaleo-global-text-color);
	background: var(--skaleo-global-accent-lighter);
	border-color: #fff;
}

/* Groups button for the same font-size */
.skaleo-button-group-big .skaleo-button {
	font-size: 1.3em;
}

.skaleo-button-group .skaleo-button {
	font-size: 1em !important;
}

/* pager */
.skaleo-pager {
	flex-wrap: nowrap;
	flex-direction: column;
	padding: .5em 0 .5em 0;
}

.skaleo-pager.skaleo-pager-sticky {
	position: sticky;
	bottom: -100px;
	width: fit-content;
	margin: 0 auto;
	border-radius: 1em;
	border: none;
	transition: background-color 200ms ease-in-out,
	box-shadow 200ms ease-in-out;
}

.skaleo-pager-sticky.is-sticking {
	background-color: var(--skaleo-very-light-grey-blueish);
	border: 1px solid var(--skaleo-table-divider);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.skaleo-button-pager {
	font-size: 1em;
	color: var(--skaleo-global-text-color);
	background-color: var(--skaleo-vary-light-grey-blueish);
	border-color: var(--skaleo-global-text-color);
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.14);
}

.skaleo-button-pager svg {
	height: 1.2em;
}

.skaleo-button-pager:hover {
	color: var(--skaleo-global-accent);
	background-color: var(--skaleo-global-accent-lighter);
}

.skaleo-button-pager:focus {
	color: var(--skaleo-global-accent);
	background-color: var(--skaleo-global-accent-lighter);
	border: none;
}

.skaleo-button-pager.skaleo-selected {
	font-weight: 900;
	background-color: var(--skaleo-light-grey-blueish);
}

.skaleo-pager-panel{
	position: absolute;
	bottom: 100%;
	margin-bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	z-index: 999;
}

/* icons */
.skaleo-icon-container {
	position: relative;
	width: 102px;
	height: 102px;
}

.skaleo-icon {
	position: absolute;
	left: 25%;
	top: 25%;
}

/* Icon animation */
.skaleo-icon.skaleo-animation-spin {
	animation: spin 0.7s linear infinite;
}

.skaleo-icon.skaleo-skeleton {
	height: 1em;
	width: 1em;
	background-color: var(--skaleo-skeleton-element);
	animation: var(--skaleo-skeleton-animation);
	border-radius: var(--skaleo-skeleton-element-border-radius);
}

/* Bubbles */

.skaleo-bubbles-container {
	display: flex;
}

.skaleo-bubble {
	display: flex;
	width: 1.9em;
	height: 1.9em;
	color: var(--skaleo-global-secondary);
	justify-content: center;
	align-items: center;
	font-size: .9em;
	font-weight: 600;
	margin-left: calc(-.5em);
	background-color: var(--skaleo-grey-bg);
	border-radius: 9999px;
	border: 2px solid var(--skaleo-global-secondary);
	transition: all 200ms ease-in-out;
}

.skaleo-bubble.skaleo-skeleton {
	/*animation: var(--skaleo-skeleton-animation);*/
	background-color: var(--skaleo-skeleton-element);
}

.skaleo-bubble:focus-visible {
	outline: 1px solid var(--skaleo-outline-dark-accent);
}

.skaleo-bubble.default, .skaleo-bubble.missing {
	background-color: var(--skaleo-grey-bg);
	color: var(--skaleo-global-text-color);
}

.skaleo-bubble.done {
	background-color: var(--skaleo-success-bg);
	color: var(--skaleo-success-text);
}

.skaleo-bubble.partial {
	background-color: var(--skaleo-info-bg);
	color: var(--skaleo-info-text);
}

/* Bubble animation */
.skaleo-bubble.skaleo-animation-highlight {
	animation: status-change-highlight 300ms ease-in-out;
}

/* multi select, dropdown */
.skaleo-dropdown, .skaleo-select-multiple {
	position: relative;
	display: inline-block;
}

.skaleo-dropdown-content, .skaleo-select-multiple-content {
	display: none;
	position: absolute;
	background-color: var(--skaleo-very-light-grey-blueish);
	border-radius: .2em;
	min-width: 80%;
	max-height: 35vh;
	box-shadow: 0px 6px 16px 0px rgba(10.49999999999998, 9.769565217391285, 9.769565217391285, 0.14);
	z-index: 1;
	margin-top: .5em;
	overflow-y: scroll;
}

.skaleo-dropdown-content .skaleo-dropdown-content-item,
.skaleo-select-multiple-content .skaleo-select-multiple-content-item,
.skaleo-select-multiple-content .skaleo-select-multiple-content-category {
	color: var(--skaleo-global-accent);
	border-radius: .2em;
	padding: 1em 1em 1em 1em;
	cursor: pointer;
	user-select: none;
	transition: all 200ms ease-in-out;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
}

.skaleo-dropdown-content .skaleo-dropdown-content-item {
	border-radius: 0;
	border-bottom: 1px solid #2b70f021;
}

.skaleo-select-multiple-content .skaleo-select-multiple-content-category {
	color: var(--skaleo-global-text-color);
	font-weight: 700;
	font-size: 1.1em;
	background-color: var(--skaleo-light-grey-blueish);
	/* padding-left: 3em; */
	border: solid rgba(47, 53, 66, 0.1) 1px;
	z-index: 100;
}

.skaleo-select-multiple-content {
	width: max-content;
}

.skaleo-dropdown-content .skaleo-dropdown-content-item:hover,
.skaleo-select-multiple-content .skaleo-select-multiple-content-item:hover {
	background-color: var(--skaleo-light-grey-blueish);
}

.skaleo-select-multiple-content .skaleo-select-multiple-content-item.skaleo-selected {
	width: 100%;
	color: var(--skaleo-global-text-color);
	font-weight: 500;
	background-color: var(--skaleo-global-accent-lighter);
}

.skaleo-select-multiple-content-item .skaleo-checkbox, div.skaleo-checkbox {
	margin: 0;
	padding: 0 auto;
	width: 1.3em;
	height: 1.3em;
	background-color: var(--skaleo-global-accent-lighter);
	transition: all 200ms ease-in-out;
}

.skaleo-select-multiple-content-item .skaleo-checkbox:checked::before, div.skaleo-checkbox:checked::before {
	width: 1.8em;
	margin-left: -.3em;
}

div.skaleo-checkbox.skaleo-selected::before {
	display: block;
	content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
	margin: -.25em 0 0 -.3em;
	width: 1.8em;
}

.skaleo-select-multiple-content .skaleo-select-multiple-content-item.skaleo-selected .skaleo-checkbox{
	background-color: var(--skaleo-global-secondary);
}

.skaleo-flexbox-column-button {
	flex:none;
}

.skaleo-notice > p {
	font-size: .85em;
	font-weight: 500;
}

/* Tooltip */

.skaleo-tooltip {
	display: none;
	position: absolute;
	background-color: var(--skaleo-tooltip-bg);
	color: var(--skaleo-tooltip-text);
	padding: 5px 10px;
	border-radius: 1em;
	z-index: 100;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.skaleo-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: var(--skaleo-tooltip-bg) transparent transparent transparent;
}

.skaleo-tooltip.arrow-left::after {
	top: 50%;
	left: -4px;
	margin-top: -5px;
	border-color: transparent var(--skaleo-tooltip-bg) transparent transparent;
}

.skaleo-tooltip.arrow-right::after {
	top: 50%;
	left: calc(100% + 4px);
	margin-top: -5px;
	border-color: transparent transparent transparent var(--skaleo-tooltip-bg);
}

.skaleo-tooltip.arrow-top::after {
	top: -10px;
	left: var(--skaleo-tooltip-arrow-offset, 50%);
	margin-left: -5px;
	border-color: transparent transparent var(--skaleo-tooltip-bg) transparent;
}

.skaleo-tooltip.arrow-bottom::after {
	top: 100%;
	left: var(--skaleo-tooltip-arrow-offset, 50%);
	margin-left: -5px;
	border-color: var(--skaleo-tooltip-bg) transparent transparent transparent;
}

/* Floating dot */
.skaleo-floating-toggle {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1000;
}

/* Animation */
.skaleo-floating-toggle.skaleo-animation-enter {
	--duration: 150ms;
	--easing: ease-out;
	animation-name: slide-in;
}

.skaleo-floating-toggle.skaleo-animation-leave {
	--duration: 150ms;
	--easing: ease-in;
	animation-name: slide-out;
}

.skaleo-floating-toggle .skaleo-dot {
	width: 48px;
	height: 48px;
	background: var(--skaleo-global-accent);
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 150ms ease-out;
}

.skaleo-floating-toggle .skaleo-dot:hover {
	transform: scale(1.1);
}


/* LOADER */

.skaleo-loader {
	width: 48px !important;
	height: 48px !important;
	border: 5px solid var(--skaleo-global-accent-lighter);
	border-bottom-color: var(--skaleo-global-accent);
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

/* Skeletons abstract */
h5.skaleo-text.skaleo-skeleton { height: 1.25rem; }
.skaleo-text.skaleo-skeleton {
	width: 100px;
	height: .8em;
	background-color: var(--skaleo-skeleton-element);
	animation: var(--skaleo-skeleton-animation);
	border-radius: var(--skaleo-skeleton-element-border-radius);
}

/* Animations */

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes pulse {
	0% {
		opacity: 0.6;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 0.6;
	}
}

/* Generic keyframes */
@keyframes slide-in {
	from {
		transform: translateY(var(--y-offset, -50%)) translateX(var(--x-from, 100%));
		opacity: 0;
	}
	to {
		transform: translateY(var(--y-offset, -50%)) translateX(var(--x-to, 0));
		opacity: 1;
	}
}

@keyframes slide-out {
	from {
		transform: translateY(var(--y-offset, -50%)) translateX(var(--x-from, 0));
		opacity: 1;
	}
	to {
		transform: translateY(var(--y-offset, -50%)) translateX(var(--x-to, 100%));
		opacity: 0;
	}
}

@keyframes scale-in {
	from {
		transform: translateY(var(--y-offset, -50%)) scale(var(--scale-from, 0.5));
		opacity: 0;
	}
	to {
		transform: translateY(var(--y-offset, -50%)) scale(var(--scale-to, 1));
		opacity: 1;
	}
}

@keyframes scale-out {
	from {
		transform: translateY(var(--y-offset, -50%)) scale(var(--scale-from, 1));
		opacity: 1;
	}
	to {
		transform: translateY(var(--y-offset, -50%)) scale(var(--scale-to, 0.5));
		opacity: 0;
	}
}

@keyframes pop-in-with-grayscale {
	0% {
		opacity: 0;
		transform: scale(0.98);
		filter: grayscale(0%) brightness(1);
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
	50% {
		transform: scale(1.02);
		filter: grayscale(100%) brightness(1);
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		filter: grayscale(0%) brightness(1);
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
}

@keyframes status-change-highlight {
	0% {
		box-shadow: 0 0 0 0 rgba(42, 109, 233, 0.7);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 0 1px rgba(42, 109, 233, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(42, 109, 233, 0);
		transform: scale(1);
	}
}

@keyframes pop-out {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.85);
	}
}


/* Reusable animation class */
.animate {
	animation-duration: var(--duration, 250ms);
	animation-timing-function: var(--easing, ease-out);
	animation-fill-mode: both;
}




/* UTILITIES */
.skaleo-flexbox-nowrap { flex-wrap: nowrap; }
.skaleo-flexbox-direction-column { flex-direction: column; }
.skaleo-flexbox-direction-row { flex-direction: row; }
.skaleo-gap-top { margin-top: .5em; }
.skaleo-gap-bottom { margin-bottom: .5em; }
.skaleo-gap-left { margin-left: 1.2em; }
.skaleo-gap-right { margin-right: 1.2em; }
.skaleo-no-margins { margin: 0 !important; }
.skaleo-no-paddings { padding: 0 !important; }
.skaleo-divider-bottom { border-bottom: 1px solid var(--skaleo-table-divider); }
.skaleo-hidden { display: none; }
.skaleo-text-center { text-align: center; }
.skaleo-align-text-input { align-items: center; }
.skaleo-align-items-center { align-items: center !important; }
.skaleo-align-content-center { align-content: center; }
.skaleo-align-content-end { align-content: flex-end; }
.skaleo-self-end { align-self: end; }
.skaleo-self-center { align-self: center; }
.skaleo-self-stretch { align-self: stretch; } /* helpful when we use align-items: center, but some item changes height */
.skaleo-flexbox-gap { gap: 1em; }
.skaleo-flexbox-gap-md { gap: .8em; }
.skaleo-flexbox-gap-sm { gap: .4em; }
.skaleo-flexbox-gap-xsm { gap: .2em; }
.skaleo-flexbox-gap-0 { gap: 0; }
.skaleo-flexbox-grow-lg { flex-grow: 8; }
.skaleo-flexbox-grow-md { flex-grow: 5; }
.skaleo-flexbox-grow-sm { flex-grow: 2; }
.skaleo-justify-content-normal { justify-content: normal !important; }
.skaleo-center-items { justify-content: center; }
.skaleo-align-left-items { justify-content: left; }
.skaleo-align-right-items { justify-content: flex-end; }
.skaleo-allow-transition { transition: all 200ms cubic-bezier(0, .41, .62, 1.12); }
.skaleo-max-height { height: 100% !important }
.skaleo-allow-scrollX { overflow-x: scroll; }
.skaleo-overflow-x-auto { overflow-x: auto; }
.skaleo-overflow-y-auto { overflow-y: auto; }
.skaleo-cursor-pointer { cursor: pointer; }
.skaleo-overflow-hidden {overflow: hidden;}
.skaleo-min-width-full { min-width: 100%; }
.skaleo-hide-scrollbar {
	overflow-y: scroll;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.skaleo-hide-scrollbar::-webkit-scrollbar { /*Chrome, Safari and Opera */
	display: none;
}
.skaleo-underline-hover:hover { text-decoration: underline !important; }
.skaleo-text-uppercase { text-transform: uppercase; }
.skaleo-text-spacing-1px { letter-spacing: 1px; }
.skaleo-text-boldy { font-weight: 500; }
.skaleo-text-bold { font-weight: 700; }
.skaleo-text-bolder { font-weight: 800; }
.skaleo-text-italic { font-style: italic; }
.skaleo-position-relative { position: relative; }
.skaleo-position-fixed { position: fixed; }
.skaleo-position-sticky { position: sticky; }
.skaleo-position-absolute { position: absolute; }
/* Colors */
.skaleo-bg-transparent, .skaleo-hover-bg-transparent:hover { background-color: transparent !important; }
.skaleo-bg-primary, .skaleo-hover-bg-primary:hover { background-color: var(--skaleo-global-accent) !important; }
.skaleo-bg-secondary, .skaleo-hover-bg-secondary:hover { background-color: var(--skaleo-global-secondary) !important; }
.skaleo-bg-accent-alpha, .skaleo-hover-bg-accent-alpha:hover { background-color: var(--skaleo-global-accent-alpha) !important; }
.skaleo-bg-accent-lighter, .skaleo-hover-bg-accent-lighter:hover { background-color: var(--skaleo-global-accent-lighter) !important; }
.skaleo-bg-grey-blueish, .skaleo-hover-bg-grey-blueish:hover { background-color: var(--skaleo-light-grey-blueish) !important; }
.skaleo-text-primary { color: var(--skaleo-global-accent); }
.skaleo-text-secondary { color: var(--skaleo-global-secondary); }
.skaleo-text-accent-alpha { color: var(--skaleo-global-accent-alpha); }
.skaleo-text-accent-lighter { color: var(--skaleo-global-accent-lighter); }
.skaleo-text-grey-blueish { color: var(--skaleo-light-grey-blueish); }
.skaleo-text-white { color: white; }
.skaleo-text-black { color: black; }
.skaleo-text-error { color: var(--skaleo-error-text); }
.skaleo-text-success { color: var(--skaleo-success-text); }
.skaleo-text-warning { color: var(--skaleo-warning-text); }
.skaleo-text-info { color: var(--skaleo-info-text); }

/* Default, should be override for specific cases */
.skaleo-disabled {
	background-color: var(--skaleo-disabled-bg) !important;
	color: var(--skaleo-global-text-color) !important;
	user-select: none !important;
	cursor: no-drop !important;
}

/* MOBILE */
.mobile-table{
	display:none;
}

.skaleo-mobile-card{
	display: none;
	width:100%;
	flex-direction: column;
	border-top:1px solid var(--skaleo-table-divider);
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-mobile-card:nth-child(2n - 1) {
	background-color: var(--skaleo-light-grey-blueish);
}

.skaleo-mobile-row{
	width:100%;
	display:flex;
	justify-content: space-around;
	flex-direction: row;
	border-bottom: 1px solid var(--skaleo-table-divider);
}

.skaleo-mobile-header{
	padding: .5em .25em;
	width:40%;
	border-right: 1px solid var(--skaleo-table-divider);
}

.skaleo-mobile-content{
	padding: .5em .25em;
	width:60%;
}

@media screen and (max-width: 1700px) {
	.skaleo-card-small {
		width: 40vw;
		padding: 1em;
	}

	.skaleo-card-responsive {
		max-width: 40vw;
		padding: 1em;
	}

	.skaleo-flexbox-column-mobile {
		display: flex;
		flex-direction: column;
		flex-wrap:wrap;
		flex-basis: 100%;
		flex: 1;
		justify-content: end;
		gap: .5em;
	}
}

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

	.skaleo-flexbox-column-mobile-md {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		flex-basis: 100%;
		flex: 1;
		justify-content: end;
		gap: .5em;
	}

	.skaleo-card-sub {
		display: flex;
		flex-direction: column;
		justify-items: center;
		align-items: center;

		padding: 2em .5em;
		margin: 4em 6em;
	}

	.skaleo-card-sub div {
		justify-content: center;
		width: fit-content;
	}
}

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

	.skaleo-card {
		padding: 1em;
	}

	.skaleo-card-small {
		width: 80vw;
		padding: 1em;
	}

	.skaleo-card-info {
		width: 80vw;
		padding: 1em;
	}

	.skaleo-card-sub {
		display: block;
		padding: 2em .5em;
		margin: 4em 1em;
	}

	.skaleo-card-sub-title {
		text-align: center;
	}

	.skaleo-flexbox-row, .skaleo-flexbox-column {
		display: block;
	}

	.skaleo-flexbox-row {
		padding: 0 1.2em;
	}

	.skaleo-flexbox-column {
		padding: 1em 0;
	}

	.skaleo-input-label {
		padding-bottom: 1em;
	}

	.skaleo-card-sub, .skaleo-card-sub .skaleo-input,
	.skaleo-card-sub .skaleo-select, .skaleo-button-select { font-size: .8em; }

	.skaleo-helper > .skaleo-input, .skaleo-helper > .skaleo-select { width: 100%; }

	.skaleo-mobile-helper > .skaleo-input, .skaleo-mobile-helper > .skaleo-select { width: 100% !important; max-width: 100% !important; }

	.skaleo-card-title {
		font-size: 2.5em !important;
	}

	.skaleo-card-text {
		font-size: .8em;
	}


	.skaleo-flexbox-column-checkbox {
		display:flex;
	}

	.skaleo-checkbox-label {
		width:90%;
	}

	.skaleo-icon-container {
		transform: scale(0.7);
	}

	.skaleo-pager {
		font-size: .8em;
	}

	.skaleo-view-headline {
		gap: 1em;
	}

	.skaleo-view-headline-title {
		width: 100%;
		text-align: center;
	}

	.skaleo-view-headline-right {
		flex-basis: 100%;
		flex-direction: column;
		align-items: center;
		height: fit-content;
	}

	.skaleo-view-headline-right .skaleo-dropdown, .skaleo-view-headline-right .skaleo-view-headline-right-link {
		width: 100%;
	}

	.skaleo-view-headline-right .skaleo-dropdown .skaleo-button, .skaleo-view-headline-right .skaleo-view-headline-right-link .skaleo-button {
		width: 100%;
	}

	.skaleo-dropdown-button.skaleo-gap-right {
		margin-right: auto;
	}

	/* UTILITY */

	.skaleo-mobile-hidden { display:none; }
	.skaleo-center-items {
		display:flex;
		max-width: 100% !important; /* should this be here? */
	}
	.skaleo-flexbox-wrap-mobile { flex-wrap: wrap; }


	/* Mobile menu toggle button */
	.skaleo-mobile-only { display: block !important; }

	.skaleo-mobile-menu-toggle {
		z-index: 1001;
		position: relative;
	}

	/* Mobile menu container */
	.skaleo-view-headline {
		position: relative;
	}

	.skaleo-view-headline-right {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--skaleo-very-light-grey-blueish);
		border: 1px solid var(--skaleo-table-divider);
		border-radius: 0 0 8px 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		flex-direction: column !important;
		padding: 1em;
		gap: 0.5em;
		z-index: 1000;
	}

	.skaleo-view-headline-right > * {
		width: 100%;
	}

	.skaleo-view-headline-right .skaleo-button {
		width: 100%;
		justify-content: center;
	}

	/* Mobile menu transitions */
	.skaleo-mobile-menu-enter {
		transition: all 300ms ease-out;
	}

	.skaleo-mobile-menu-enter-start {
		opacity: 0;
		transform: translateY(-10px);
	}

	.skaleo-mobile-menu-enter-end {
		opacity: 1;
		transform: translateY(0);
	}

	.skaleo-mobile-menu-leave {
		transition: all 200ms ease-in;
	}

	.skaleo-mobile-menu-leave-start {
		opacity: 1;
		transform: translateY(0);
	}

	.skaleo-mobile-menu-leave-end {
		opacity: 0;
		transform: translateY(-10px);
	}
}

@media screen and (max-width: 960px) {
	.skaleo-card-reports {
		margin: 2em 1em;
	}

	.skaleo-card{
		overflow: auto;
		-ms-overflow-style: none; /* Ukrywa scrollbar w Internet Explorerze i Edge */
		scrollbar-width: none; /* Ukrywa scrollbar w Firefox */
	}

	.skaleo-card::-webkit-scrollbar {
		display: none; /* Ukrywa scrollbar w Chrome, Safari i innych przeglądarkach opartych na WebKit */
	}

	.skaleo-table{
		width:max-content;
	}

	.mobile-table{
		display: block;
	}
	.skaleo-mobile-card {
		display: flex;
	}

	.skaleo-table-bigscreen { /*wyłączanie tabeli w fakturach w wersji mobilnej, bo tam wyświetlamy kafelki*/
		display: none;
	}

	.skaleo-card.skaleo-dialog {
		width: 75%;
	}

}


@media screen and (max-width: 600px) {
	.skaleo-card-sub .skaleo-select, .skaleo-card-sub .skaleo-input {
		max-width: 90% !important;
	}

	.skaleo-pager .skaleo-button-pager {
		font-size: .7em;
		padding: .2em .5em;
	}

	.skaleo-button-pager svg {
		height: 1em;
	}

	.skaleo-pager.skaleo-pager-sticky {
		bottom: -110px;
	}

	.skaleo-card.skaleo-dialog {
		width: 90%;
	}
}

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


	.skaleo-pager .skaleo-button-pager {
		font-size: .6em;
		padding: .2em .5em;
	}
}

