:root{
    --culoare-principala: #2e609c;
    --culoare-rosie: #EE5D50;
    --culoare-verde: #05CD99;
    --culoare-galben: #ffaf00;
    --culoare-gri: #666666;
    --culoare-border: #a3aed0;
    --culoare-background: #f4f7fe;
    --culoare-secundara: #dfe8f6;
    --culoare-transparenta: #ffffff00;
}

body{
	padding: 1.125rem;
    background-color: var(--culoare-principala);
    font-family: 'Inter', sans-serif;
    scrollbar-width: none;
    height: 100vh;

}
header, article, footer{
	
/*	border:1px solid red;*/
}
header, footer{
	max-height: 5rem;
	height: 5rem;
}
header .navbar-brand{
	color: var(--culoare-principala);
	line-height: 1;
}

app{
	background-image: url('/app/assets/svg/workflow.svg');
    background-position: center;
    background-repeat: no-repeat;
	background-color: var(--culoare-background) !important;
	background-size: auto;
	background-position: right;
    border-radius: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    
}

app article{
	display: flex;
	flex-grow: 1;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: center;
}

app article aside{
	width: 3rem;
	background-color: var(--culoare-principala);
	height: 20rem;
	border-radius: 0 2rem 2rem 0;
	color: var(--culoare-background);
}
.ps-leftmenu{
	
	justify-content: space-evenly;
  	align-content: center;
  	align-items: center;
  	flex-direction: column;
  	width: 100%;
}
.ps-leftmenu a{
	font-size: 1.5rem;
	width: 100%;
  	display: block;
 	text-align: center;
  	cursor: pointer;
  	height: 2.5rem;
  	color: var( --culoare-background)
}

.ps-lefmenu-gap{
	color: white;
}

.ps-card-figure{
	border-radius: 0.75rem;
}

figure .ps-img-fluid{
	height: 15rem;
}
figure .ps-figure-caption{
	height: 4.5rem;
}
app footer{
	display: flex;
  	align-items: center;
  	justify-content: center;
}
/* Styles for Mobile (when the viewport is UP TO 767px wide) */
@media screen and (max-width: 767px) {
	body{
		padding: 0;
	}
	app{
  		background-size: contain;
  		overflow-x: auto !important;
  		border-radius: 0;
	}
	.navbar-brand div{
  		font-size: 1rem;
  	}
	app article{
  		display: block;
		flex-direction: column-reverse;
  	}
  	app article main{
  		margin-bottom: 0;
	}
	app article main .ps-sep-item:first-of-type{
		margin-top: 0.5rem;
	}
  	app article main .ps-sep-item:last-of-type{
  		margin-bottom: 3rem;
  	}
	app article aside{
  		display: none;
  		width: calc(100% - 1rem);
  		height: 3rem;
    	border-radius: 1.5rem;
    	position: fixed;
    	bottom: 1rem;
    	z-index: 1024;
  	}
  	app article aside .ps-leftmenu{
		flex-direction: row;
	}
  	figure .ps-figure-caption{
		height: auto;
		}
	figure .ps-img-fluid{
		height: 7.5rem;
	}
	app footer{
		display: none;
	}
}