@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
:root
{
	--bg: #2f323f;
}
.navigation ul li.list:nth-child(1) a {
  --clr: #f44336;
}
.navigation ul li.list:nth-child(2) a {
  --clr: #ffa117;
}
.navigation ul li.list:nth-child(3) a {
  --clr: #ff00c8;
}
.navigation ul li.list:nth-child(4) a {
  --clr: #0fc70f;
}
.navigation ul li.list:nth-child(5) a {
  --clr: #2196f3;
}
.navigation ul li.list:nth-child(6) a {
  --clr: #b145e9;
}
.navigation ul li.list:nth-child(7) a {
  --clr: #000;
}

.navigation 
{
	position: fixed;
	inset: 0px 0px 0px 0px;
	width: 50px;
	background: #1B1E26;
	display: flex;
	justify-content: flex-start;
	transition: 0.5s;
	align-items: flex-start;
	z-index: 1030;
	flex-direction: column;
	margin-top: 3em;
	overflow-y: auto;
	overflow-x: hidden;
}
.navigation.active 
{
	width: 200px;
}


.navigation ul 
{
	display: flex;
	flex-direction: column;
	width: 100%;
	/* margin-top: 4em; */
}
.navigation ul li 
{
	display: flex;
	list-style: none;
	position: relative;
	width: 100%;
	border-radius: 12px;
	transition: 0.5s;
	border: 8px solid transparent;
}
.navigation ul li.active
{
	transform: translateX(8px);
	background: #d4d9df;
	display: flex;
	flex-direction: column;
	align-items: center;
}


.navigation ul li::before 
{
	content: '';
	position: absolute;
	top: -28px;
	right: -10px;
	width: 20px;
	height: 20px;
	background: transparent;
	border-bottom-right-radius: 50%;
	box-shadow: 6px 5px 0 5px #d4d9df;
	transform: scale(0);
	transform-origin: bottom right;
	transition: 0.7s;
}
.navigation ul li.active::before 
{
	right: 0px;
	transform: scale(1);
}


.navigation ul li::after 
{
	content: '';
	position: absolute;
	bottom: -28px;
	right: -10px;
	width: 20px;
	height: 20px;
	background: transparent;
	border-top-right-radius: 50%;
	box-shadow: 6px -3px 0 3px #d4d9df;
	transform: scale(0);
	transform-origin: top right;
	transition: 0.5s;
}
.navigation ul li.active::after 
{
	right: 0;
	transform: scale(1);
}


.navigation ul li a 
{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	text-align: center;
	text-decoration: none;
	z-index: 999999999999999;
	flex-wrap: nowrap;
	flex-direction: row;
}
li.list a.clr span.icon i {
    color: white;
    font-size: initial;
}

.navigation.active ul li.list.sub.active a.clr {
    background: #d4d9df;
    border-radius: 4px;
}

.navigation ul li.list.sub.active a:hover {
    /* background: #6c757d; */
    border-radius: 4px;
}
.navigation ul li a .icon 
{
	position: relative;
	display: flex;
	line-height: 50px;
	font-size: 1.4em;
	min-width: 25px;
	height: 25px;
	border-radius: 10%;
	color: var(--white);
	transition: 0.5s;
	border: 6px solid transparent;
	align-items: center;
	justify-content: center;
}
.navigation ul li.active a .icon 
{
	color: #fff;
	background: var(--clr);
	display: flex;
	justify-content: center;
	align-items: center;
}


.navigation ul li a .icon::before
{
	content: '';
	position: absolute;
	top: 12px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--clr);
	filter: blur(5px);
	opacity: 0;
	transition: 0.5s;
}
.navigation ul li.active a .icon::before
{
	opacity: 0.5;
}


.navigation ul li.active a .icon::after
{
	content: '';
	position: absolute;
	top: 0px;
	width: 15px;
	height: 15px;
	background: var(--clr);
	border: 3px solid #f8f9fa;
	left: -21px;
	border-radius: 50%;
}

.navigation ul li a .text 
{
	position: relative;
	padding: 0 15px;
	height: 30px;
	color: var(--bs-secondary);
	display: flex;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
} 
.navigation.active ul li a .text 
{
	visibility: visible;
	opacity: 1;
	font-size: 0.7em;
}
.navigation ul li.active a .text 
{
	color: var(--bg);
	font-size: 0.7em;
}


/*   modificaÃƒÆ’Ã‚Â§oes */


main.page-content {
    padding: 1em 0.5em 0 3em;
    transition: 0.5s;
    min-width: 375px;
    margin-top: 3em;
    max-height: -webkit-fill-available;
}

main.page-content.active {
    padding-left: 205px;
    transition: 0.5s;
}


@media screen and (min-width: 768px) {
  /* Insira aqui os estilos especÃ­ficos para visualizaÃ§Ã£o em PC */
  .navigation.active .menuToggle2 {
    display: none;
}
	header.navbar .container-fluid {
    justify-content: space-between;
}
	span.ml-1.text-logo {
    display: none;
}

span.ml-1.text-logo.active {
    display: block;
}
}

@media screen and (max-width: 767px) {
  /* Insira aqui os estilos especÃ­ficos para visualizaÃ§Ã£o em dispositivos mÃ³veis */


.container-fluid .text-logo{
    display: none;
}
.align-items-center.d-flex.left-side-content {
    width: 60%;
}



.align-items-center.d-flex.right-side-content {
    width: 30%;
    
    justify-content: flex-end;
}
	header.navbar .container-fluid {
    justify-content: space-around;
}

	header.navbar .container-fluid {
    justify-content: space-around;
}

}

/* modificaloes */

.sidebar-submenu {
    display: none;
}

li.list.sub a span.info {
    display: none;
}





.navigation.active li.list.sub.active a.clr:after{
    transform: rotate(90deg);
    transition: 0.5s;
}

 .navigation.active li.sub.active .sidebar-submenu {
    display: block;
    max-width: 100%;
}

.navigation.active li.sub.active .sidebar-submenu ul {
    margin: 0;
    width: 100%;
}

.navigation.active li.sub.active .sidebar-submenu li {}

.sidebar-submenu a span {
    margin: 0 20px;
}

header.navbar.active {
    padding-left: 11em;
    transition: 0.5s;
}
.navigation.active .menuToggle2 {
    position: fixed;
    background: #00000042;
    top: 0;
    bottom: 0;
    left: 200px;
    width: 100%;
    transition: 3s;
}

.btn1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    background: #282f48;
    margin-right: 1em!important;
    margin-left: 0.2em!important;
}
.navigation .perfil-info {
    display: none;
}
.navigation.active .perfil-info {
    display: block;
}
.navigation .menu-perfil div.menu-perfil {
    height: 40px;
}

.navigation .perfil-foto {
    margin: 0rem!important;
}

.navigation.active .menu-perfil div.menu-perfil1 {
    width: inherit;
    height: auto;
}
.perfil-foto div {
    width: 30px;
}

.navigation.active .perfil-foto div {
    width: 60px;
}
li.list.sub a.clr i {
    color: #ffffff;
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
}
li.list.sub a.clr span.icon i {
    flex-direction: initial;
    justify-content: center;
    font-size: initial;
}
li.list.sub.active a.clr i.fa-solid.fa-caret-right:before {
    width: 30%;
    color: #000;
    transform: rotate(90deg);
    transition: 0.5s;
}
div.navigation i {
    color: black;
}

.navigation .menu-perfil {
    border-right: 2px solid #242939;
    background: white;
    border-radius: 10%;
}
.navigation.active .menu-perfil {
    border-radius: 3%;
}

.navigation .menu-perfil .menu-perfil1 {
    height: 30px;
}