@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  font-family: 'Arima', system-ui;
  border: none;
  image-rendering: optimizeSpeed;
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;

  font-family: "Arima", system-ui;
}

.container
{
  width: 100%;
  height: 100%;
  padding: 50px;
}

#pano 
{
  position: relative;
  background-color: rgb(0,0,0);
  background-size: cover;
  width: 100%;
  height: 100dvh; /* Full screen */
}

.navigator-hotspot
{
  background-image: url(../svg/ui/location_icon.svg);
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50px;
  width: 50px;
  font-size: 90%;
  text-wrap: nowrap;
  height: 50px;
  padding: 25px;
  color: transparent;
  transition: color 200ms, border-radius 1000ms, width 1000ms;
}

.navigator-hotspot:hover
{
  transition: color 200ms, border-radius 200ms, width 200ms;
  color: black;
  width: 300px;
  border-radius: 10px;
}

.navigator-hotspot h2
{
  width: 100%;
  position: relative;
  top: -33px;
  left: 25px;
  vertical-align: middle;
  text-align: center;
}

#overlay
{
  z-index: 50000;

  user-select: auto;

  position: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-items: center;
  justify-content: center;
  align-content: center;
}

#buttonlist
{
  width: 100%;
  height: 7dvh;
  background-color: transparent;

  display: flex;
  justify-content: center;
  gap: 10px;
}

.selectorbtn
{
  margin-top: 90dvh;
  padding: 5px;

  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;

  font-size: 1.5rem;
  font-weight: bold;

  background-color: rgb(255, 255, 255);
  min-width: 50px;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;

  fill: black;

  transition-duration: 150ms;

  box-shadow: 0px 0px 50px  rgba(0,0,0,0.1);
}

.selectorbtn img
{
  filter: invert();
  width: 100%;
  height: 100%;
}

.selectorbtn:hover
{

  filter: invert();
  transition-duration: 150ms;
  color: white;

  box-shadow: 0px 0px 50px  rgba(0,0,0,0.5);
}