* {
  border: none;
  padding: 0;
  margin: 0;
  font-family: Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}
a.lnk{
  color: #f09c4e;
}
a.lnk:hover{
  color: #e17714;
}
body {
  background: #f2f4f4;
}
main {
  max-width: 1200px;
  margin: 0 auto 0 auto;
}
header {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-bottom: 7px solid #1A1D24;
  margin-bottom: 5px;
  padding: 10px;
}
#header {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 0 auto;
}
.logo {
  display: block;
  width: 135px;
}
.logo-title {
  user-select: none;
  position: absolute;
  top: 5px;
  left: 1px;
  font-size: 10px;
  text-transform: uppercase;
  color: #1A1D24;
}
#title {
  width: fit-content;
  margin: 0 auto 0 auto;
  padding: 0.2rem 1rem 0.2rem 1rem;
  border-radius: 1.5rem;
  background: #333;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
}
nav a, nav a:visited {
  list-style-type: none;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #777;
  margin-left: 25px;
}
.nav:hover {
  color: #333;
  border-bottom: 2px solid #f09c4e;
}
.nav-current {
  color: #000;
}
h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
}

.button{
  cursor: pointer;
}
.button-grey, .button-orange, .button-blue, .button-purple, .button, #filter, .button-blue:visited {
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
  color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.button-blue {
  background-color: #00a7ed;
}
.button-blue:hover {
  background: #00aeef
}
.button-dark-blue {
  background-color: #2e3192;
}
.button-dark-blue:hover {
  background: #292c8a;
}
.button-orange {
  background-color: #f09c4e;
}
.button-orange:hover {
  background-color: #e17714;
}
.button-grey {
  background-color: #a0afbb;
}
.button-grey:hover {
  background-color: #667c8f;
}
.button-red {
  background-color: #e33636;
}
.button-red:hover {
  background-color: #ff0000;
}

#sign-out {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
}
div.sign-in-box {
  width: 100%;
  max-width: 400px;
  margin: 1rem auto 0 auto;
}
form {
  margin: 2rem 0 0 0;
  display: block;
}
.input-box, .input-box:valid, select {
  background: #e5e7eb;
  color: #374151;
  border: 1px solid #d1d5db;
  line-height: 1.25;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
}
.input-box:focus {
  border: 1px solid #bfc5d1;
  background: #d1d5db;
}
#sign-in-form > input {
  display: block;
  width: 100%;
  margin: 0.5rem 0 1rem 0;
}
canvas#photo {
  width: 400px;
  height: 400px;
  background: #e5e7eb;
  border: 3px solid #f09c4e;
}
canvas:hover {
  cursor:move;
}
#app {
  display: flex;
}
label.top {
  display: block;
  letter-spacing: .025em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .75rem;
  line-height: 1rem;
  margin: 1.5rem 0 0.5rem 0;
  color: #374151;
}
label.top::after {
  content: ":";
}
select {
  appearance: none;
  width: 100%;
}
select option {
  line-height: 1.25;
}
.display-none {
  display: none;
}
.hidden {
  visibility: hidden;
}

.image-action {
  padding: 10px 0 10px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);
  background-color: #f09c4e;
  cursor: pointer;
}
.image-action-buttons {
  margin: 8px 0 0 0;
  display: grid;
  grid-template-columns:
    minmax(50px, 1fr)
    minmax(50px, 1fr)
    minmax(50px, 1fr)
    minmax(50px, 1fr)
    minmax(50px, 1fr);
  width: 100%;
  column-gap: 8px;
}
.image-action > img {
  display: block;
  width: 30px;
  margin: 0 auto 0 auto;
}
.image-action:hover {
  background: #e17714;
}
label.question {
  margin: 0 20px 0 8px;
}
.flex-spacer {
  display:flex;
  margin-top: 20px;
}
.right-margin {
  margin-right: 40px;
}
.component {
  width: 350px;
}

.image-info {
  margin-top: 25px;
  border-top: 1px solid #ccc;
  padding-top: 25px;
  padding-bottom: 25px;
}
.image-info .gcp-address {
  display: flex;
  align-items: center;
}
.image-info .gcp-address button{
  flex-shrink: 0;
  margin-left: 15px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
div.loading {
  width: 100px;
  height: 100px;
  margin: 100px auto 0 auto;
  padding: 0;
  border-radius: 100%;
  background-color: #a0afbb;
  opacity: 0.7;
}
#loading-message {
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 1rem;
}
img.loading {
  display: block;
  height: 100px;
  width: 100px;
  margin: 0 auto 0 auto;
  animation: rotation 3s infinite linear;
}

#app-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  background: #f09c4e;
}

@keyframes popup {
  from {
      top: 0;
  }
  to {
      top: -200px;
  }
}

.message-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
  animation-name: popup;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  z-index: 1000;
}

#error-box {
  background: #e02424;
}
#alert-box {
  background: #f09c4e;
}

.message-box img {
  width: 40px;
  height: 40px;
}

.inline-block {
  display: inline-block;
}

.message-title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.message-text-box {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-size: 1rem;
}
#save-and-next {
  font-weight: bold;
  margin: 50px 0 0 0;
  padding: 15px;
  cursor: pointer;
  text-align: center;
}
.text-center {
  text-align: center;
}
.cover {
  position: fixed;
  display: table;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #000000cc;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.full-screen-controls {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.full-screen-cover {
  display: grid;
  color: #fff;
  width: 100%;
  height: 100%;
  grid-template-rows: 
    100px
    auto;
  grid-template-columns: 100%;
  row-gap: 0;
}
.full-screen-header {
  display: flex;
  justify-content: space-between;
}
.full-screen-main {
  display: grid;
  grid-template-columns: 
    auto
    60px;
  column-gap: 8px;
  height: 100%;
}
#full-screen-image-title {
  padding: 24px 0 0 10px;
  font-size: 32px;
  font-weight: bold;
}
#full-screen-close {
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
  margin: 10px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  border: 2px solid #f09c4e;
  background-color: #f09c4e;
  color: #fff;
  cursor: pointer;
}
#full-screen-close:hover {
  border: 2px solid #e17714;
  background-color: #e17714;
}
#full-screen-next-image{
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin: 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 300px;
  top: 35px;
}
#full-screen-next-image:hover{
  color: #f09c4e;
}
#full-screen-next-image.hidden{
  display: none;
}
#full-screen-photo {
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
}
.bold {
  font-weight: bold;
}