.disabled-link {
  pointer-events: none;
}
.disabled-link .image-link,
.text-block {
  opacity: 0.5;
}

.title-left {
	color: var(--primary-color-white);
  font-family: var(--Fonte-principal);
	font-weight: 700;
}
.red-background {
  margin-left: -70px;
}

.active-link {
  border-radius: 10px;
  background-color: var(--Secundary-500);
  color: var(--Neutral-white) !important;
  width: -webkit-fill-available;
}

.active-link:hover {
  background-color: var(--Secundary-500) !important;
  color: var(--Neutral-white) !important;
}

.active-link img {
  filter: brightness(100%) !important;
}

.left-painel a {
  font-family: var(--Fonte-principal);
	font-weight: 500;
	color: #ffffffa6;
}

.left-painel a img {
	filter: brightness(80%);
}

.active-link img {
	filter: brightness(100%) !important;
}

@media screen and (max-height: 770px) {
	.left-painel {
		gap: 5px;
	}

	.left-painel a {
		margin-top: -1px;
		font-size: 13px;
	}

	.logout-user {
		font-size: 13px;
	}
}


@media screen and (max-height: 720px) {
	.left-painel {
		gap: 0px;
	}

	.left-painel a {
		margin-top: -2px;
		font-size: 13px;
	}

	.logout-user {
		font-size: 13px;
	}
}



@media screen and (max-height: 700px) {
	.left-painel {
		gap: 5px;
	}

	.left-painel a {
		font-size: 13px;
	}

	.logout-user {
		font-size: 13px;
	}
}

@media screen and (min-height: 700px) {
	.left-painel {
		gap: 10px;
	}

	.logout-user {
		margin-top: 20px;
		gap: 10px;
	}
}


.logout-user {
	cursor: pointer;
	color: #ffffffa6;
	font-weight: 500;
}

.select-logout {
	width: 100%;
	cursor: pointer;
}

.logout-user .select-logout:hover,
.left-painel a:hover {
	background-color: #ffffff1c;
	border-radius: 10px;
}

.logo-left {
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	border-bottom: 1px solid #fff3;
}

.sidebar-wrapper {
	font-family: var(--Fonte-principal);
	background-color: var(--Primary-950);
	color: #fff;
	height: 100vh;
	width: 250px;
	z-index: 2;
	transition: width 0.3s ease;
	/* border-radius: 0 25px 0 0; */
	overflow: hidden;
	position: fixed;
	overflow-y: scroll;
}


.sidebar-wrapper::-webkit-scrollbar {
  width: 6px;
}

.sidebar-wrapper::-webkit-scrollbar-track {
  background-color: transparent !important;
}

.sidebar-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--Secundary-500);
  border-radius: 10px;
}



.left-painel {
	display: grid;
	width: 80%;
	margin: 20px auto;
	font-weight: 500;
}

.left-painel div {
	display: flex;
	align-items: center;
	margin: 10px 0;
}


.sidebar-wrapper.collapsed {
	width: 80px;
}

.sidebar-wrapper.collapsed .left-painel div {
	justify-content: center;
}

.sidebar-wrapper.collapsed .left-painel h5 {
	text-align: center;
}

.sidebar-wrapper.collapsed .left-painel div span {
	display: none;
}

.sidebar-wrapper.collapsed .left-painel a div div div {
	padding: 0 0 26px 0;
  left: 56px;
	animation: fadeIn;
  animation-duration: 2s;
}

.sidebar-wrapper.collapsed .left-painel a div div div p {
	display: none;
}

.skeleton-container {
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skeleton {
  width: 90%;
  height: 80%;
  background-color: #eee;
  animation: pulse 1.5s infinite ease-in-out;
}

.content {
  text-align: center;
}

.lock-img {
	cursor: pointer;
	width: 12px;
	filter: none !important;
}

@keyframes pulse {
  0% {
    background-color: var(--Neutral-40);
  }
  50% {
    background-color: var(--Gray-200-Light);
  }
  100% {
    background-color: var(--Neutral-40);
  }
}
