.eselect {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 0 20px 0 0;
    overflow: hidden;
    background-color: #E0E0E0;
    transition: box-shadow 0.25s ease;
    z-index: 2;
}
.eselect:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #000000ad;
    top: 15px;
    right: 10px;
    cursor: pointer;
    z-index: -2;
}
.eselect select {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.eselect select:focus {
    outline: none;
}

#packselect input[type="checkbox"]:checked + label{
    color: black;
    background: #E0E0E0;
    border: double;
    padding: 4.5px 3px;
}

#packselect input[type="checkbox"] + label{
    position: relative;
    vertical-align: middle;
    padding: 5.5px 5px;
    margin: 0px 2px;
    display: inline-block;
    font-size: 13px;
    color: #E0E0E0;
    border: 1px solid #E0E0E0;
    width: 16px;
    text-align: center;
    cursor: pointer;
}

#packselect input[type="checkbox"]{
    display: none;
}
body {
  display: flex;
  font-size: .99vw;
  flex-direction: column;
  align-items: center;
  background-color: #333333;
  font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
  color: #EAEAEA;
}
table {
  display: block;
  max-height: 70vw;
  overflow: scroll;
}
thead {
  display: table-header-group;
  position: sticky;
  top: 0;
  z-index: 1;
}
tbody {
  display: table-row-group;
}
tr {
  display: table-row;
}
th, td {
  padding: 8px 6px;
  position: relative;
}
th {
  vertical-align: middle;
}

#thisdiv {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#campaignchose, #mapsetdiv {
  width: 100%; 
}
.mapsetbtncontainer {
  display: inline-block;
  margin: 3px 20px 3px 0;
}
.mapsetbtn {
  margin: 2px 0;
}
header {
  margin: 20px;
}
header > h1 {
  margin-block-start: 0;
  margin-block-end: 0;
  display: inline-block;
  color: rgb(244, 196, 48);
  font-size: 5rem;
  margin-right: 10px;
}
header .textboxcontainer {
  display: inline-block;
  margin: -5px 0;
}
header .textbox {
  margin: 5px 0;
  border: 1px solid rgb(234, 234, 234);
  padding: 5px 10px;
  background-color: rgb(244, 196, 48);
  color: black;
}
#enemyposition {
  width: 100%;
}
#teleportshow, #buildingshow, #missionshow, #enemyshow {
  max-width: 100%;
  overflow-x: auto;
}
.note {
  margin: 10px 0;
  width: 1200px;
}

.mission-spawn-separator {
  border-bottom: 2px solid rgba(244, 196, 48, 0.2);
  background-color: rgba(244, 196, 48, 0.8);
  color: black;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  body {
    display: flex;
    font-size: 28px;
  }
  .note {
    width: 100%;
    font-size: 24px;
  }
  #thisdiv, #missiondrawing, .staticbottomtext {
    width: 100% !important;
  }
  #otherthing div, .staticbottomtext div {
    font-size: 28px;
  }
}

