.desktop_cnt{
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	width: 25%;
	height: calc(100vh - 45px);
}
.desktop_icons {
	column-count: 1;
	column-gap: 20px;
	row-gap: 0px;
	height: calc(100vh - 45px);
	padding: 0px;
}
.desktop_icon {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-bottom: 20px;
}
.desktop_icon img{
    width: 64px;
    height: 64px;
}
.icon_name {
	color: #fff;
	padding: 1px 3px;
	margin-top: 5px;
	width: 80px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
}
.custom-tooltip{
  --bs-tooltip-bg: var(--dialog-blue-light);
  --bs-tooltip-color: var(--bs-white);
}