* {
  margin: 0;
  padding: 0;
  cursor: default;
  -webkit-user-drag: none;
  font-family: 'Times New Roman';
}

body {
  position: relative;
}

.page {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
  min-height: 90vh;
}

header {
  position: relative;
  z-index: 1;
}
 
.content {
  text-align: center;
  width: 100%;
  position: relative;
  position: relative;
}

.hidden {
  display: none !important;
}

img {
  cursor: pointer;
}

img:hover {
  filter: brightness(110%) drop-shadow(1px 1px 1px blue);
  -webkit-filter: brightness(110%) drop-shadow(1px 1px 1px blue);
}

.staticimg {
  cursor: default;
}

.staticimg:hover {
  filter: none;
  -webkit-filter: none;
}

.popup {
  position: fixed;
  min-width: 40rem;
  max-width: 80vw;
  max-height: 75vh;
  padding: 0 1rem;
  top: 15%;
  left: 50%;
  transform: translate(-43%, 0%);
  background-color: white;
  border: 1px solid black;
  z-index: 1000;
  box-shadow:2px 3px 5px #999;
  overflow-y: auto;
}

.popupexitDiv {
  height: 1.5rem;
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0rem;
  background-color: white;
}

.popupexit {
  height: 1.5rem;
  position: absolute;
  right: 0;
}

#errorMessage {
  color: red;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; 
}

.flippedimage {
  transform: rotate(180deg);
}

.button {
  background-color: #6fa8dcff;
  padding: 5px;
  margin: 0.5rem;
  border: 1px solid black;
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  transition: filter 300ms;
  text-wrap: nowrap;
  display: inline-block;
}

.button:hover {
  cursor: pointer;
  filter: brightness(120%);
  -webkit-filter: brightness(120%);
}

.errorMessage {
  color: red;
}

.mobileonly {
  display: none;
}

a {
  word-wrap: break-word;
  cursor: pointer;
}

.tablelist {
  width: 70vw;
  margin: auto;
}

.tooltip {
  position: absolute;
  display: none;
  background-color: white;
  padding: 0.3rem;
  border: 1px solid black;
  color: black;
  text-align:center;
  z-index: 500;
}

button:disabled {
  background-color: #efefef !important;
  cursor: not-allowed !important;
}

@media only screen and (max-width: 750px) {

  .hidemobile {
    display: none !important;
  }

  .mobileonly {
    display: revert;
  }

  .fullviewonly {
    display: none;
  }

  .content {
    width: 95vw;
  }

  .mobileflexcolumn {
    display: flex;
    flex-direction: column;
  }

  .popup {
    min-width: 80vw;
    left: 45%;
  }

  .tablelist {
    width: initial;
    margin: auto;
  }
}