#APP_apps_menu {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#APP_apps_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#APP_apps_menu_title{
  margin-top:2em;
}

#APP_app_menu_title{
  margin-top:2em;
  margin-bottom:2em;
}

#APP_app_pics_container{
  position: relative;
  width: calc(100% - 2em);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}
.APP_app_wrapper {
  width: 40%;
  outline: 1px solid var(--app-primary-color);
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 1em;
}
.APP_app_pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: filter 1s ease;
  cursor: pointer;
}
.APP_app_pic:hover{
	filter: brightness(1.5);
}

#APP_app_pics {
  position: relative;
  width: calc(100% - 0em);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  outline: 0.5em solid var(--app-primary-color);
}
.APP_app_pic_wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.APP_app_pic {
  width: 100%;
  height: 100%;
}

#APP_app_pics_progress_bar_wrapper{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
#APP_app_pics_progress_bar{
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.app_pic_progress_unit{
  flex: 1 1 0;
  margin: 0 0.5em;
  min-height: 1em;
  box-shadow: 0px 0px 0px 0.1em var(--app-primary-color);
  transition: opacity 1s ease;
  background: #3C95B9;
  background: radial-gradient(circle,rgba(60, 149, 185, 1) 0%, rgba(0, 0, 0, 1) 100%);
  opacity: 0;
  border-radius: 60% 0px 100% 0;
}
.APP_app_pic_progress_unit_activated{
  opacity: 1;
}






#APP_app_info_table {
  font-size: 1.0em;
  text-align: justify;
  font-family: CyberverseCondensed;
  color: var(--app-primary-color);
  filter: brightness(1.6);
  margin: 2em 0em 2em 0;
  user-select: none;
  text-shadow: 0 0 1em var(--app-primary-color), 0 0 0.1em var(--app-primary-color);
}
#APP_app_info_table img {
  width: 2em;
}
.APP_app_info_table_tr{

}
.APP_app_info_table_td{
  box-shadow: 0 0 0.5em var(--app-primary-color);
}
.APP_app_info_table_td:nth-of-type(1) {
  text-align: center;
  padding:0.5em 1em;
}
.APP_app_info_table_td:nth-of-type(2) {
  padding: 1em 1em 2.5em 1em;
}
#APP_app_info_table ul {
  list-style: disclosure-closed;
  padding: 0em 1em;
}

#APP_app_link {
  width: 80%;
  display: block;
  margin: 1em auto 0em auto;
  background: black;
  border: 0.3em solid #C3EEFF;
  padding: 0.5em 0em;
  box-shadow: 0 0 var(--box-shadow-thickness) 0px var(--app-primary-color), 0 0 var(--box-shadow-thickness) 0px var(--app-primary-color), 0 0 var(--box-shadow-thickness) 0px var(--app-primary-color), 0 0 var(--box-shadow-thickness) 0px var(--app-primary-color), inset 0 0 var(--box-shadow-thickness) 0px var(--app-primary-color), inset 0 0 5px 1px var(--app-primary-color);
  text-decoration: none;
  user-select: none;
  color: var(--color3);
  font-size: 2.0em;
  --box-shadow-thickness: 1.0em;
  text-shadow: 0 0 var(--box-shadow-thickness) var(--app-primary-color), 0 0 var(--box-shadow-thickness) var(--app-primary-color), 0 0 var(--box-shadow-thickness) var(--app-primary-color), 0 0 var(--box-shadow-thickness) var(--app-primary-color);
  border-radius: 0.1em;
  transition: all 0.7s ease;
  margin-bottom: 4em;
}
#APP_app_link:hover{
  background: var(--color3);
  color:black;
}



#APP_apps_menu .highlighted.APP_app_info_table_tr{
  filter: brightness(1.5);
  animation: APP_highlight_text_glow 2s ease forwards;
}
#APP_apps_menu #APP_app_pics.highlighted{
  filter: brightness(1.5);
}
#APP_apps_menu #APP_app_link.highlighted{
  background: var(--color3);
  color:black;
}
@keyframes APP_highlight_text_glow{
  from{filter: brightness(1.5);}
  to{filter: brightness(2.5);}
}


