body{
    background-color: var(--grey-very-light);
    padding:0;margin:0;
	position: relative;
}

#app {
	transition: var(--transition);
	color: var(--secondaryA);
	display: flex;
	flex-direction: column;
	height: 100%;
	height: 100vh;
    position: relative;
}

.dev_notice{
	position: fixed;
	top:0;
	background-color: hsla(6, 84%, 50%, 0.75);
	color:white;
	width:100%;
	text-align: center;
	line-height: 1.6;
	z-index: 100;
}

.csp_aside {
	background-color: var(--theme);
	color: white;
	padding: 1rem;
	flex: 1;
	position: fixed;
	bottom: 0;
	width: 100vw;
    max-height:60px;
    overflow:hidden;
	z-index: 1320;
    transition:var(--transition);
}

.menu_expanded .csp_aside{
    max-height: 100vh;
    transition:var(--transition);
}

@media(min-width: 776px ){

    #app{
        padding-left:200px;
    }

    .csp_aside {
        display:flex;
        flex-direction: column;
        top: 0;
        left: 0;
        height: 100vh;
        width:200px;
        max-height: 100vh;
		overflow: auto;
    }

}

.csp_main{
    position: relative;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding:0 1rem;
}

@media(min-width: 768px ){
    .container{
        padding:0 2rem;
    }
}

.logo_type{
    gap:6px;
	color: var(--Neutral-neutral-C, #FFF);
	font-size: 15px;
	font-weight: 700;
	line-height: 120%; /* 18px */
    text-decoration: none;
    color: white;
    font-weight: var(--strong);
	align-items: end;
	transition: var(--transition);
}

.logo_type > svg{
	color: var(--Secondary-secondary-C);
    width:64px;
	height: 64px;
	transition: var(--transition);
}

.logo_type:hover{
	text-decoration: underline;
	transition: var(--transition);
}

.logo_type:hover > svg{
	color: var(--orange);
	transition: var(--transition);
}

.type{
    flex:1;
    align-items: center;
}

.csp_panels {
	position: relative;
	margin-top: calc(50vh - 100px);
	z-index: 1210;
	background-color: white;
	padding: 1rem;
	min-height: 50vh;
	padding-bottom: 2rem;
}

.hero_image{
    aspect-ratio: 1136 / 340;
    width: 100%;
    min-height: 200px;
    background-position: center;
    background-size: cover;
    padding:0 2rem;
}

.no_more_heroes{
    padding:2rem 2rem 1rem 2rem; 
}

.contented{
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
}

.contented > *{
	margin-block: 0;
}