@font-face {  
    font-family: 'Algebra';
    font-weight: 400;
    font-style: normal;
    src:  url('../../assets/fonts/Algebra-Regular.woff2') format("woff2"),
}

@font-face {  
    font-family: 'Algebra';
    font-weight: 700;
    font-style: normal;
    src: url('../../assets/fonts/Algebra-Medium.woff2') format("woff2"),
}

body {
  background-color: black;
}

#map-wrapper {
	height: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
	z-index: 70;
	position: fixed;
	width: 100vw;
	left: 100vw;
	transition: left 0.5s ease-in-out ;
}

.map-wrapper-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

#map {
	height: 100%;
}

#debug {
	position: absolute;
    top: 60px;
    font-size: x-small;
    background: white;
    opacity: 0.8;
}

.map-button-container {
    position: absolute;
    width: 50px;
    left: -50px;
    bottom: 10px;;
}

#map_open {
  background-color: rgb(255, 70, 70);
  height: 100px;
  border-radius: 25px 0 0 25px;
}

.map_image {
  width: 50px;
  padding-top: 24px;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 5px;
  background-color: white;
  border-radius: 54px;
  padding: 5px 4px 0px;
}

@keyframes pow {
  0% {opacity: 0; z-index: 60}
  40% {opacity: 1; z-index: 60}
  60% {opacity: 1; z-index: 60}
  99% {opactiy: 0; z-index: 60}
  100% {opactiy: 0; z-index: 0}
}

#pow {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 0;
  opacity: 0;
}

.pow-animate {
  animation-name: pow;
  animation-duration: 0.4s;
  animation-iteration-count: 3;
}

.a-loader-title {
	font-size: 50px;
	margin-top: 20px;
  font-family: 'Algebra', monospace;
  font-weight: bold;
}


#gps-loader {
    position: fixed;
    bottom: 0;
    background-color: black;
    color: white;
    z-index: 50;
    font-family: 'Algebra', monospace;
    padding: 10px 20px;
    width: 100vw;
}

.visually-hidden {
  display: none;
}

#permissions-wrapper {
  display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    color: white;
    background-color: black;
    font-family: 'Algebra', monospace;
    padding: 10px;
}

.info {
    border: white 2px solid;
    margin: 30px 10px;
    padding: 10px;
}

.error-title {
    padding: 0 10px;
    font-size: 40px;
    display: flex;
    justify-content: center;
}

#camera-error, #location-error {
  display: none;
  font-size: 1em;
}

#camera-links a {
    color: inherit;
/*    font-size: 1.3em;*/
    line-height: 2em;
}

#location-links a {
    color: inherit;
/*    font-size: 1.3em;*/
    line-height: 2em;
}

.popup-wrapper {
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.popup {
    width: 300px;
    height: 200px;
    background-size: contain;
    background-color: #fff;
    font-family: 'Algebra', monospace;
    font-size: 20px;
    border-radius: 3px;
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
}

p.popup-text {
    display: inline-block;
    font-weight: 400;
    font-size: 14pt;
    margin: 8px;
    align-self: flex-end;
}

.popup-buttons {
    display: inline-flex;
    align-self: flex-end;
    width: 100%;
    height: 30%;
}

.popup-close {
    background-color: black;
    color: white;
    font-family: Algebra ,monospace;
    width: 100%;
    cursor: pointer;
    align-self: center;
    opacity: .9;
    height: 80%;
    font-size: 12pt;
    margin: 4px;
    border-radius: 2px;
    text-align: center;
    border: none;
    display: inline-block;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.2);
    user-select: none;
}

.a-dialog {
    font-family: Algebra ,monospace;
}

.a-dialog-deny-button, .a-dialog-allow-button {
    background-color: black;
    color: white;
    font-family: Algebra ,monospace;
}