.container-app { 
    overflow:hidden;
    position:absolute;
    top:0px;
    right: 0px;
    margin-top: 57px;
    margin-right: 4px;
    width:328px;
    height: 0px; 
    background-color: #2d2e30;
    color: rgb(255, 255, 255);
    box-shadow: 0 -1px 2px 0 rgb(0 0 0 / 30%), 0 -2px 6px 2px rgb(0 0 0 / 15%);
    border-radius: 8px;
    display:flex;
    opacity: 0;
    visibility: hidden;
    transition: height 3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s;
}
.app-list {
    position: relative; 
    width: 200px; 
    margin:10px; 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between;
    flex-wrap: wrap;
}
.container-app.-active {
    height: auto;
    width: auto;
    opacity: 1;
    visibility: visible;
    z-index: 15;
}
#account-modal.-active{
    height: auto;
    padding: 1em;
}
.app {
    position: relative;
    background-color: rgba(53, 53, 53, 0);
    width: 84px;
    height: 84px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items:center;
    transition: background-color 0.3s;
}
.app:hover {
    background-color: rgb(53, 53, 53);
}
.app-link {
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.app-title {
    position: relative;
    font-size: 0.7em;
    display: flex;
    justify-content: center;
    color:white;
}
.icon-profil {
    border-radius: 50pc;
}
.icon-fill {
    fill:#FFFFFF;
}

.erased {
    color: var(--erasedfont);
}
#account-modal .erased {
    color: rgba(250,250,250,0.5);
}

.btn {
	cursor: pointer;
	padding: 0.5em;
	border-radius: 5px;
	text-align: center;
	font-size: 0.8em;
    text-decoration: none;
	border: solid 1px gray;
	opacity: 0.8;
	transition: 0.3s;
	z-index: 4;
}
.btn:hover {
	opacity: 1;
}
.btn-primary {
	background-color: var(--btn-background);
	color: var(--btn-font);
}
.btn-secondary {
    background-color: var(--btn-secondary-background);
	color: var(--btn-font);
}
.disabled {
    cursor: not-allowed!important;
}

#search-section {
    position: relative;
	display: flex;
    flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}
.search {
	width: 30em;
    height: 2.5em;
	padding-left: 0.5em;
	padding-right: 50px;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	background-color: rgba(228, 228, 228, 0.8);
    opacity: 1;
	color: var(--navfont);
	font-size: 1em;
	justify-content: center;
	border: solid 1px var(--lightblue);
    border: 0px solid;
	border-radius: 5px;
}
.search:focus {
	border: solid 1px var(--lightblue);
    background-color: rgba(228, 228, 228, 1);
    box-shadow: 2px 2px 1px rgba(153, 153, 153, 0.8);
}
#svg-search {
	position: relative;
	height: auto;
}
#search-section button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1em;
	margin-bottom: 0.1em;
	margin-right: 0px;
	cursor: pointer;
	background-color: rgba(0, 0, 4, 0.1);
	padding: 0.2em;
	border: unset;
	border-radius: 15px;
	margin-left: -40px;
	border-radius: 3px;
}
#search-section button:hover {
	background-color: rgba(0, 132, 255, 0.1);
}
form div ul{
    padding: 0.5em;
    border-radius: 5px;
}