@media screen and (min-width: 2001px) {
  body {
    font-size: 1.2em;
  }
  .value {
    font-size: 1.2em;
  }
  input {
    font-size: 1.2em;
  }
  .label {
    font-size: 1.2em;
  }
  .button {
    font-size: 1.2em;
  }
  #lookupForm Span {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 2000px) {
  body {
    font-size: 1.5em;
  }
  .value {
    font-size: 1.5em;
  }
  input {
    font-size: 1.5em;
  }
  .label {
    font-size: 1.5em;
  }
  .button {
    font-size: 1.5em;
  }
  #lookupForm Span {
    font-size: 1.5em;
  }
}

:root {
  --arrow-bg: rgba(237, 28, 36, 0.9);
  --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
  --option-bg: white;
  --select-bg: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
    font-family: helvetica neue,Helvetica,Arial,sans-serif;
    /* font-size: 16px; */
    font-weight: 400;
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    display: flex;
    justify-content: center;
    align-items: center;
}

td {
    text-align: center;
}

tr {
    height: 32px;
}

input {
  background: 0;
  border: 0;
  outline: none;
  width: 80vw;
  max-width: 500px;
  /* font-size: 1.5em; */
  transition: padding 0.3s 0.2s ease;
}
input:focus {
  padding-bottom: 5px;
}
input:focus + .line:after {
  transform: scaleX(1);
}

select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  /* Personalize */
  width: 80vw;
  max-width: 500px;
  padding: 1rem 4rem 1rem 1rem;
  background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, var(--arrow-bg) 3em, var(--select-bg) 3em);
  color: black;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  /* Remove IE arrow */
  &::-ms-expand {
    display: none;
  }
  /* Remove focus outline */
  &:focus {
    outline: none;
  }
  /* <option> colors */
  option {
    color: inherit;
    background-color: var(--option-bg);
  }
}

li {
  display: list-item;
  margin-bottom: 1.5em;
}

.label {
	/* font-size: 1.5em; */
	text-align: left;
}
.value {
	/* font-size: 1.5em; */
	text-align: right;
}
.field {
  position: relative;
}
.field .line2 {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -8px;
  background: #bdc3c7;
}

.field .line {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -8px;
  background: #7092be;
}

.field .line:after {
  content: " ";
  position: absolute;
  float: right;
  width: 100%;
  height: 3px;
  transform: scalex(0);
  transition: transform 0.3s ease;
  background: #ed1c24;
}

.field .help {
	position: absolute;
	left: 45vh;
	cursor: pointer;
	width: 1.2em;
	height: 1.2em;
}

.button {
  background-color: #ed1c24;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  /* font-size: 1.5em; */
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.sbutton:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.discordBanner {
	margin-left:auto;
	margin-right:auto;
	position: relative;
	top: 5px;
	max-width: 25vw;
	width: 50%;
	height: auto;
	
}

.closeOverlay {
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
}

#mainPanel {
    max-width: 700px;
    min-width: 256px;
	padding-right: 24px;
	padding-bottom: 24px;
    width: 50vh;
    height: 100vh;
    overflow: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#logo {
    background-image: url('img/MMS.svg');
    background-size: contain;
    width: 50vh;
    height: 20vh;
    max-width: 640px;
    min-width: 256px;
    position: fixed;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    left: 0px;
    top: 0px;
}

#lookupForm {
    position: fixed;
    width: 50vh;
    height: 70vh;
    left: 0px;
    top: 20vh;
}

#lookupForm Span {
    display: flex;
    width: 32vh;
    text-align: center;
    /* font-size: 1.5em; */
    justify-content: space-around;
}

#verify {
    position: fixed;
    left: calc(50% - 85px);
}

#aboutDiscordOverlayShade {
	position: fixed;
	left: 0px;
	top: 0px;
	height: 100vh;
	width: 100vw;
	background: rgba(33,33,33,0.5);
}

#aboutDiscordOverlay {
	max-width: 50vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	background: #ffffff;
}

#aboutDiscordOverlayContent {
	left: 32px;
	max-width: 50vw;
	width: calc(100vh - 64px);
	margin-top: 64px;
	overflow: auto;
}

#footer {
  position: absolute;
  left: 0;
  bottom: 100vh;
  background-color: transparent;
  border: none;
  color: white;
  overflow: hidden;
  height: 1.5em;
  font-size: 0.5em;
  z-index: 5;
}