body .footer-place
{
  display: none;

  position: fixed;

  bottom: 0px;

  left: -2px;
  width: calc(100% + 4px);

  border-radius: 25px 25px 0px 0px;

  border-top: 1px solid var(--gold-color-light);
  border-left: 1px solid var(--gold-color-light);
  border-right: 1px solid var(--gold-color-light);

  box-shadow: 0px -3px 5px rgb(0 0 0 / 50%);

  background: var(--popup-page-background);

  z-index: 1000;
}

body .footer
{
  display: flex;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;

  margin-bottom: 1vw;
  margin-left: -4px;

  justify-content: space-between;

  gap: 10px;

  box-sizing: border-box;
}

body .bottom-menu
{
  display: flex;

  width: 100%;

  margin: 0px auto;

  justify-content: space-between;

  gap: 5px;

  border-radius: 15px;
}

body .bottom-menu .item
{
  position: relative;

  display: flex;

  flex-direction: column;
  width: 25%;

  gap: 5px;

  padding: 5px;

  min-height: 45px;

  border-radius: 10px;

  justify-content: center;

  text-align: center;

  font-size: 75%;

  cursor: default;
}

body .bottom-menu .item.active
{
  color: var(--gold-color-light);

  background: var(--tile-background);
}

body .bottom-menu .item .alert
{
  position: absolute;

  top: 5px;
  right: 5px;

  width: 8px;
  height: 8px;
  
  border-radius: 50%;

  background: #de0000;
}

body .bottom-menu .item .notice
{
  position: absolute;

  top: 5px;
  right: 5px;

  padding: 0px 2px;

  border-radius: 1px;

  background: #de0000;
}

body .bottom-menu .item svg
{
  align-self: center;

  width: 28px;
  height: 28px;
}

body .bottom-menu .item.main div
{
  display: flex;
  align-content: center;
  justify-content: center;

  position: relative;
  margin-top: -40px;

  background: var(--gold-color-light);

  width: 64px;
  height: 64px;
  border-radius: 100px;

  border: 4px solid var(--popup-page-background);
}

body .bottom-menu .item.main div svg
{
  width: 36px;
  height: 36px;
}

body .bottom-menu .item.main.active
{
  background: none;
}