@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins:wght@100,400,500,600,900&display=swap&family=Lexend&display=swap');

* {
	font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
}

body {
	background-color: #f3f3f3;
	color: #18192b;
}

a {
	text-decoration: none;
	color: #18192b;
}

.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fafafa;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	padding-left: 50px;
	padding-right: 50px;
	box-shadow: 0 5px 30px rgba(88, 88, 88, 0.1);
}

.logo img {
	height: 35px;
}

.topbar-icons a {
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
}

.topbar-icons a i {
	margin-right: 10px;
}

.topbar-icons a:hover {
	background-color: #e6e6e6;
}

.menu-left {
	background-color: #fafafa;
	position: fixed;
	padding: 20px;
	top: 60px;
	left: 0;
	bottom: 0;
	width: 200px;
	box-shadow: 0 5px 30px rgba(88, 88, 88, 0.1);
}

.user-info {
	text-align: center;
	margin-bottom: 40px;
	margin-top: 20px;
}

.user-info img {
	max-width: 90px;
	border-radius: 50%;
}


.menu {
	width: 100%;
}

.menu-item {
	padding: 10px;
	margin-bottom: 4px;
	border-radius: 8px;
	cursor: pointer;
}

.menu-item i {
	margin-right: 10px;
	margin-left: 10px;
	color: #27272a;
}

.menu-item:hover {
	background-color: #e6e6e6;
}

.content {
	margin-left: 300px;
	margin-right: 50px;
	margin-top: 110px;
}


/*---------------home--------------*/

.homeBoxGroup {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.homeBoxRow {
	display: flex;
	gap: 20px;
}

.homeBoxCol {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.homeBox,
.homeBoxTall {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 20px;
	width: 300px;
	background-color: #fafafa;
	border: 1px solid #e6e6e6;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 5px 30px rgba(88, 88, 88, 0.1);
}

.homeBox {
	height: 300px;
}

.homeBox i {
	font-size: 60px;
	color: #27272a;
}

.homeBoxTall img {
	width: 200px;
	border-radius: 50%;
}

.homeBoxTall a {
	margin-top: 100px;
}

.homeBoxGroup a {
	color: #1cd67f;
	font-weight: bold;
}

.homeBoxGroup a:hover {
	color: #03c6c2;
}

.homeBoxGroup h1 {
	font-weight: 500;
}

.homeBoxGroup p {
	font-size: 16px;
}


.title {
	margin-bottom: 50px;
}

.title h1 {
	margin-bottom: 20px;
}

.content-box {
	padding: 20px;
	border-radius: 8px;
	background-color: #fafafa;
	box-shadow: 0 5px 30px rgba(88, 88, 88, 0.1);
	margin-bottom: 50px;
}


/* -------------------------------------------*/

.cardGrid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.card {
	display: flex;
	align-items: center;
	width: 200px;
	padding: 30px;
	border-radius: 8px;
	cursor: pointer;
	background-color: #fafafa;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);

}

.card:hover {
	background-color: #e6e6e6;
}

.card img {
	margin-right: 15px;
	width: 50px;
}

.card i {
	margin-right: 15px;
	font-size: 40px;
	padding-right: 10px;
	padding-left: 10px;
}

.card .card-info {
	align-items: center;
}

/* -------------------------------------------*/

button {
	background-color: transparent;
	border-radius: 2px;
	border: 1px solid #b1b1b1;
	padding: 5px 10px;
	cursor: pointer;

}

button:hover {
	background-color: #fafafa;
}

input{
	width: 200px;
	padding: 10px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	box-sizing: border-box;
	background-color: #f3f3f3;
}

input::placeholder{
	color: #ccc;
}

input:focus{
	border-bottom: 2px solid #1cd67f;
}

/* -------------------------------------------*/

.rightPopupMenu {
	display: none;
	position: fixed;
	top: 60px;
	right: 0;
	bottom: 0;
	z-index: 99999;
	overflow: none;
	background-color: #fafafa;
	width: 300px;
	height: 100%;
	box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.rightPopupMenuHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fafafa;
	margin-bottom: 50px;
}

.rightPopupMenuHeader i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	font-size: 22px;
	margin-right: -10px;
}

.rightPopupMenuHeader i:hover{
	background-color: #e6e6e6;
}

.rightPopupMenu form{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.rightPopupMenu form input{
	width: 100%;
}

.rightPopupMenu form div{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-wrap: nowrap;
}

.formLine{
	flex-direction: column !important;
}


/* -------------------------------------------*/

.tbl {
	width: 100%;
	border-collapse: collapse;
}

.tbl a {
	text-decoration: none;
	color: #fff;
}

.tbl th,
.tbl td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #027e7c;
}

.tbl th {
	background-color: #027e7c;
	color: #fff;
}

.tbl tr:hover {
	background-color: #f3f3f3;
}


/* -------------------------------------------*/

.Disattivo{
	color: #ff6347;
}

.Attivo{
	color: #1cd67f;
}