/* Notes: https://docs.google.com/document/d/1qcxhOlanNLK_eR1jfoDPzvPO0UntNwJFl8u8fDxYDps/edit */

@import 'layouts/header.css';
@import 'layouts/nav.css';

@import 'shared/variables.css';
@import 'shared/tables.css';
@import 'shared/buttons.css';
@import 'shared/kebab.css';
@import 'shared/filters.css';
@import 'shared/forms.css';

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

body {
  background-color: #edf3f7;
}

.page {
 padding-top: var(--nav-height);
 margin-left: var(--nav-width);
 display: flex;
 justify-content: center;
}

.content {
  padding: 1rem 2rem;
  text-align: center;
  width: 100%;
  z-index:0;
}

a {
  cursor: pointer;
  color: blue;
}

img {
  cursor: pointer;
}

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

.img {
  cursor: pointer;
  color: black;
  text-decoration: none;
}

.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;
}

.pagetitle {
  display:inline-block;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #6fa8dcff;
}

.hidden {
  display: none !important;
}

.errorMessage {
  color: red;
}

.nonErrorRedText {
  color: red;
}

#errorMessage {
  color: red;
}

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

.arrow {
  height: 1.5rem;
}

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

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

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

.link {
  text-decoration: underline;
}

.strikethrough {
  text-decoration: line-through;
}

.miniimg {
  height: 0.5rem;
}

.tinyimg {
  height: 0.7rem;
}

.smallimg {
  height: 1rem;
}

.mediumimg {
  height: 1.2rem;
  padding-right: 0.1rem;
  padding-bottom: 0.3rem;
}

.standardimg {
  height: 2rem;
}

.uploadimg {
  max-height: 20rem;
  margin: 1rem;
}

.viewOnly {
  display: none;
}

.editicon {
  height: 0.7rem
}

.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;
}

.alignleft {
  text-align: left;
  width: 62%
}

.alignright {
  text-align: right;
  width: 35%
}

.menuitem {
  display: block;
  width: 100%;
  padding: 1rem 0.2rem;
  text-align: center;
  background: none;
  border: none;
  text-decoration: none;
  color: black;
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
  transition: background-color 1s;
}

.kebab-dropdown .menuitem {
  display: none;
}

.selectedmenuitem {
  background-color: #6eb06e;
  cursor:  wait;
}

.menuitem:hover {
  background-color: #a4c2f4
}

.preservewhitespace {
  min-height: 1rem;
}

.infoBox {
  margin-top: 1rem;
  border: 3px solid #6fa8dcff;
  padding: 1rem;
}

@media only screen and (max-width: 750px) {
  body, html{
    overflow-x: hidden;
  }

  .page {
     margin: 0 0.2rem;
  }

  .hidemobile {
    display: none !important;
  }

  .mobilemargins {
    width: 90%;
    margin: auto;
  }

  .todayheader {
    border-left: 1px solid black;
  }

  .singlemobilecell {
    border-left: 1px solid black;
  }

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

}

@media only screen and (min-width: 750px) {
  .mobileonly {
    display: none;
  }
}

