@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Saira+Condensed:wght@400;600;700&display=swap');

html,
body {
	width: 100%;
	height: 100%;
	background: #EFF3F9;
	overflow: hidden;
	font-family: 'Inter', sans-serif;
}

ul {
	padding: 0;
}

ul li {
	list-style: none;
}

body.logged-out {
	background-color: #EFF3F9;
}

/*
  * dane styli przycisków zostałe dodane ze wzgłędu na to że zmienił się design strony 
  * i trzeba wprowadzać inne kolory 
*/
.primary-button {
	background-color: #00A0E4;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
}

.danger-button {
	background-color: #C80000;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
}

.success-button {
	background-color: #18AB56;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
}

.white-button {
	background-color: #fff;
	color: #6A6F71;
	border: 1px solid #6A6F71;
	border-radius: 8px;
	font-weight: 600;
}

.warning-button {
	background-color: #FF7917;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
}

.active {
	position: relative;
}

.active::after {
	content: '';
	position: absolute;
	background-color: #fff;
	right: -70%;
	top: 50%;
	transform: translate(0, -50%);
	width: 0px;
	height: 0px;
	border: solid transparent;
	border-width: 10px;
	border-left-color: #fff;
	border-right-color: #EFF3F9;
}

.active a {
	color: #85A5D6 !important;
}

.navbar-inverse {
	background-color: rgba(0, 0, 0, 0.8);
}

.navbar-inverse a {
	color: #fff;
}

.login-form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	background-color: #fff;
	border-radius: 8px;
	width: 330px;
	height: 415px;
	padding: 30px;
	color: #212427;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

@media (max-width: 768px) {
	.login-form {
		top: 40%;
		height: 315px;
		justify-content: start;
	}
}

.login-form__label {
	font-weight: normal;
	font-size: 12px;
}

.login-form__custom-input {
	display: flex;
	border: 1px solid #f1f1f1;
	border-radius: 4px;
	width: 100%;
	padding: 10px 10px;

}

.login-form__input {
	border: none;
	width: 100%;
}

.login-form__input:hover,
.login-form__input:active,
.login-form__input:target,
.login-form__input:focus-visible {
	border: none;
	outline: none;
}

.login-form__icon {
	background-repeat: no-repeat;
	background-position: 50%;
	width: 25px;
	height: auto;
}

.login-form__login-icon {
	background-image: url('/img/icons/User_2.svg');
}

.login-form__password-icon {
	background-image: url('/img/icons/Padlock_1.svg');
}

.login-form__show-password-icon {
	background-image: url('/img/icons/slash-eye.svg');
	cursor: pointer;
}

.login-form__submit {
	background-color: #18AB56;
	border: none;
	border-radius: 8px;
	color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

#menu {
	width: 80px;
	height: 100%;
	background-color: #fff;
	z-index: 2;
	position: relative;
}

#menu ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	margin: 0;
	padding: 0;
	height: 100%;
}

/* #menu a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
} */


#adminpanel {
	width: calc(100% - 80px);
	height: 100%;
	overflow: auto;
}

.dataTable {
	overflow: auto;
}

#tabcontent {
	height: 100%;
}

.dataTables_wrapper {
	height: 100%;
}

#panelheader {
	height: 50px;
	background-color: #2C3E50;
	line-height: 50px;
	padding-right: 5px;
}

#panelheader a,
#menu a {
	color: #C0D6F5;
}

#panelheader a:hover,
#menu a:hover {
	color: #85A5D6;
}

.no-wrap {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-bold {
	font-weight: 900;
}

div.required::before {
	content: '*';
	color: #f00;
	width: 15px;
	height: 15px;
	position: absolute;
	left: -12px;
	top: -5px;
	font-size: 0.8em;
}

label.required {
	position: relative;
}

label.required::after {
	content: '*';
	color: #f00;
	width: 15px;
	height: 15px;
	position: absolute;
	right: -15px;
	top: 0px;
	font-size: 0.8em;
	text-align: center;
}

table.participants {
	font-size: 0.8em;
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
	top: 8px;
	left: 6px;
}

.error-inform {
	background-color: #FFCDCD;
	border: 1px solid #C80000;
}

.notice-inform {
	background-color: #88d4f5;
	border: 1px solid #00A0E4;
}

.flash-inform {
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	border-radius: 8px;
	padding: 1rem;
}

.flash-inform ul {
	padding: 0;
	margin: 0;
}