body {
    margin: 0;
    padding: 0;
    background: #444;
    font-family: 'Roboto', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
	overflow: hidden;
}
a{
  font-weight: bold;
  color:rgb(30 198 219);
  text-decoration: none;
}
a:visited{
  color:rgb(30 198 219);
  text-decoration: none;
}
a:hover, a:focus, a:active{
  color:white;
  text-decoration: none;
}
#content{
    display: grid;
    grid-row-gap: 5px;
    grid-template-rows: min-content min-content min-content min-content 30px 1fr;
    position: relative;
    width: 912px;
    margin-left: -466px;
    left: 50%;
    height: 100%;
    background: #222;
    padding: 0 20px;
}
#item_list{
    overflow: auto;
    position: relative;
	padding-bottom: 100px;
}
.item{
    width: 48px;
    height: 48px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#download_all{
  position: fixed;
  display:block;
  top: 30px;
  right: 30px;
  width: 100px;
  padding: 10px 20px;
  background: rgb(0, 63, 71);
  border-radius: 3px;
}
#download_all:hover{
  background: rgb(0, 96, 109);
}

#toast_bar{
  opacity: 0;
  min-width: 250px;
  margin-left: -125px;
  background-color: rgb(48, 84, 105);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 10px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 0px;
  transition: all 1s;
}
#toast_bar.show {
  opacity: 1;
  bottom: 20px;
}

.tooltip-target {
    anchor-name: --tooltip-target;
}

#hover_contain {
	--width: 200px;
    position-anchor: --tooltip-target;
    position: absolute;
    top: calc(anchor(bottom) + 10px);
	justify-self: anchor-center;
    background: #111111;
    border-radius: 10px;
    color: white;
	padding: 10px;
}
#hover_contain:empty{
	display:none;
}

::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #111;
}

::-webkit-scrollbar
{
  width: 12px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}
