/*====================== BASE ======================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #212529;
  max-height: 100vh;
  overscroll-behavior: contain;
  overflow-y: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

div {
  display: block;
}

/*====================== REUSABLE CSS CLASSES ======================*/
.content {
  background: linear-gradient(to bottom, #f4f4f4 0 10%, #ffffff 15% 80%, #f4f4f4 85% 100%);
  min-height: 100vh;
  width: 100%;
}

.button-base {
  color: white;
}

.icon {
  color: #000;
}
.icon:hover {
  color: #555;
  cursor: pointer;
}

.hyper-button {
  color: #808080;
}
.hyper-button:hover {
  color: #616161;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 20px;
}

.logo img {
  max-width: 7.8vw;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 40%;
}
.nav-links li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0 10px;
  line-height: 8vh;
  vertical-align: middle;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  font: 0.8vw "Roboto", sans-serif;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0 0.1em;
  background-position-y: 100%;
  background-position-x: 0;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out;
}
.nav-links a:hover {
  background-size: 100% 0.1em;
}

.other-page {
  background-color: #445469;
}

.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 2px;
  background-color: rgb(226, 226, 226);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Dropdown Button */
.dropbtn {
  cursor: pointer;
  background-color: RGBA(0, 0, 0, 0);
  position: relative;
  color: #fff;
  font: 0.8vw "Roboto", sans-serif;
  border: none;
  letter-spacing: 3px;
  padding: 0;
  line-height: 8vh;
  vertical-align: middle;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  top: 100%;
  display: none;
  position: absolute;
  background-color: #f4f4f4;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #d5d5d5;
}

/* Links inside the dropdown */
/* Change color of dropdown links on hover */
/* Show the dropdown menu on hover */
.dropbtn:hover {
  color: rgb(58, 118, 187);
}
.dropbtn:hover .dropdown-content {
  display: block;
}

/* Smaller screen navbar settings */
@media screen and (max-width: 1200px) {
  .nav-links {
    width: 50%;
  }
}
@media screen and (max-width: 872px) {
  body {
    overflow-x: hidden;
  }
  .burger {
    display: block;
  }
  .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: rgb(226, 226, 226);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    opacity: 0;
  }
  .front_page {
    background: rgba(0, 0, 0, 0) url("../images/ToolsFront.mp4") no-repeat;
    background-size: 100%;
    width: 100%;
    height: 40vh;
    object-fit: contain;
    background-blend-mode: darken;
    color: rgb(226, 226, 226);
  }
}
.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/*Footer settings_page */
.footer {
  padding-top: 40px;
  text-align: center;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #445469;
}
.footer a, .footer p {
  color: rgb(226, 226, 226);
  letter-spacing: 3px;
  font-size: 9px;
}

/*Front Page */
.front_page {
  background: rgba(0, 0, 0, 0) url("../images/ToolsFront.mp4") no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-blend-mode: darken;
  color: rgb(0, 0, 0);
}

#front_background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.front_page h1 {
  font-size: 3.2vw !important;
  color: white;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.front_page p {
  font-size: 1.2vw;
  font-weight: bold;
  color: white;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
}

/* Dc overview */
.dc_overview {
  height: 92vh;
}
.dc_overview form {
  padding-top: 30px;
  width: 90%;
  margin: 0 auto;
}
.dc_overview select {
  width: 300px;
  height: 40px;
}

.container-table {
  width: 90%;
  margin: 0 auto 25px auto;
}

.wrap-table {
  width: 100%;
}

.table {
  overflow: hidden;
  overflow-y: scroll;
  height: 750px;
}
.table table {
  display: table;
  text-indent: initial;
  border-spacing: 2px;
  border-color: grey;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.table td {
  display: table-cell;
  vertical-align: inherit;
  text-align: left;
}
.table th {
  text-align: left;
}
.table table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}
.table table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.table tbody tr:nth-of-type(odd) {
  background-color: rgba(227, 227, 227, 0.5);
}
.table tbody tr:hover {
  background-color: rgba(227, 227, 227, 0.7);
}
.table table thead tr {
  height: 40px;
  background: #d2c3b6;
  color: white;
}

.table-head th {
  font-size: 18px;
  line-height: 1.2;
  font-weight: unset;
}

.table tbody tr {
  font-size: 15px;
  color: #808080;
  line-height: 1.2;
  font-weight: unset;
  height: 50px;
}

.column1 {
  width: 260px;
  padding-left: 40px;
}

.column2, .column3, .column4, .column5 {
  padding-left: 10px;
}

.buttons {
  margin-left: 50px;
  margin-right: auto;
  margin-top: 30px;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  display: flex;
  justify-content: space-between;
  width: 800px;
}

#checkbox_container {
  height: 100%;
  vertical-align: center;
}

/* for custom scrollbar for webkit browser */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.button {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}
.button:hover {
  background-color: #f7fafa;
}
.button:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  outline: 0;
}

.top_content_container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

#create_new_dc {
  width: 200px;
  line-height: 29px;
}

.top_content_container form {
  padding: 0;
  margin: 0;
}

#create_dc {
  margin-right: 0;
  margin-left: auto;
  width: 200px;
  line-height: 29px;
}

#create_footer {
  margin-left: 50px;
  margin-right: auto;
  margin-top: 30px;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  display: flex;
  justify-content: space-between;
  width: 800px;
}

#submitted {
  margin-left: 50px;
  color: green;
}

#error {
  margin-left: 50px;
  color: red;
}

.login-container {
  display: flex;
  text-align: center;
  background-size: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  background-blend-mode: darken;
  color: rgb(0, 0, 0);
}

#login_background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.login-form {
  display: inline-block;
  align-items: center;
  color: rgb(255, 255, 255);
  margin: auto;
  width: 400px;
  height: 300px;
  background-color: #445469;
  border-radius: 10px;
}
.login-form h1 {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 0 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.login-form input[type=text], .login-form input[type=password] {
  display: block;
  height: 40px;
  padding-left: 10px;
  margin: 10px auto;
  width: 90%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
}

.login-info {
  height: 250px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

#login-button {
  display: block;
  height: 32px;
  padding-left: 10px;
  margin: 10px auto;
  width: 90%;
}

.settings_view {
  height: 92vh;
  display: block;
  width: 100%;
}
.settings_view h1 {
  padding-left: 15px;
}

.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 84vh;
}
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}
.tab button:hover {
  background-color: #ddd;
}
.tab button.active {
  background-color: #ccc;
}
.tab a {
  text-decoration: none;
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}
.tab a:hover {
  background-color: #ddd;
}

.tabcontent {
  float: left;
  padding: 0 12px;
  border: 1px solid #ccc;
  width: 70%;
  border-left: none;
  height: 84vh;
}
.tabcontent p {
  padding: 10px 0;
}
.tabcontent p input {
  display: block;
  padding-left: 10px;
  height: 40px;
  width: 90%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
}
.tabcontent h4 {
  padding-top: 30px;
}
.tabcontent input[type=file] {
  margin-bottom: 10px;
}

#WebApp input[type=text] {
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 10px;
  height: 30px;
  width: 30%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
}
#WebApp a {
  text-decoration: none;
  color: #d2c3b6;
}
#WebApp a:hover {
  color: #e6dfdc;
}

#filter {
  display: none;
}

.filter_container {
  height: 100px;
}

#map {
  height: 92vh;
  width: 100%;
}

.map_view {
  height: 100vh;
  width: 100%;
}

.create_dc_table a {
  color: #6b6b6b;
  text-decoration: none;
}
.create_dc_table a:hover {
  color: #000;
}

.dc_name_in_create_table {
  font-weight: bold;
}

#caption_create_dc_table {
  background-color: #445469;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
  height: 40px;
  padding-top: 10px;
}

/*SINGULAR DC VIEW */
.dc_view {
  padding-top: 25px;
  padding-bottom: 25px;
  min-height: 92vh;
}
.dc_view h1 {
  text-align: left;
}

#dc_view_header {
  display: inline;
}

#MapViewButton {
  margin-left: 397.5px;
  margin-right: auto;
  font-size: 120%;
}

.dc_view table {
  text-align: left;
  width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-left: 50px;
  margin-right: auto;
  border-collapse: collapse;
}
.dc_view th, .dc_view td {
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgb(255, 255, 255);
  color: #fff;
}
.dc_view th {
  width: 50%;
  font-weight: bold;
  background-color: #d2c3b6;
}
.dc_view tr {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.dc_view td {
  width: 50%;
  vertical-align: middle;
  font-weight: 300;
  font-size: 15px;
  color: #000000;
}
.dc_view h1 {
  margin-left: 50px;
}
.dc_view table input {
  display: inline-block;
  width: 90%;
  height: 28px;
  border-radius: 5px;
  border: #aaa solid 1px;
}
.dc_view select {
  width: 90%;
  height: 28px;
}
.dc_view textarea {
  width: 90%;
  border-radius: 5px;
  border: #aaa solid 1px;
}
.dc_view a {
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  color: #000;
}

.table_create_view {
  min-height: 92vh;
}

#searchbar_overview {
  margin: 20px 5% 2px 5%;
  width: 90%;
  /* Full-width */
  font-size: 16px;
  /* Increase font-size */
  padding: 4px 20px 3px 20px;
  /* Add some padding */
  border: 1px solid #ddd;
  /* Add a grey border */
}

.post_overview {
  height: 100vh;
}

.post_container {
  background: #d2c3b6;
  width: 80%;
  height: 95%;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 0 2px #0f1111;
  overflow: scroll;
}
.post_container h1 {
  margin-left: 20px;
  color: #fff;
}
.post_container hr {
  height: 3px;
  background-color: #fff;
}

.post_body {
  background-color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 2px #0f1111;
}

.post-author-date {
  margin-left: 10%;
  position: relative;
  top: 50%;
  color: #212121;
  font-style: italic;
  font-size: 16px;
}

.post-text {
  font-size: 12px;
  margin-bottom: 10px;
}

.read-button {
  text-decoration: none;
  color: #000;
}

.post {
  min-height: 92vh;
  width: 100%;
  margin: 0 auto 20px auto;
}

.post-header {
  width: 100%;
  height: 50vh;
  background: rgba(68, 84, 105, 0.56);
  background: linear-gradient(157deg, rgba(68, 84, 105, 0.76) 0%, rgba(130, 133, 147, 0.56) 27%, rgb(157, 221, 231) 100%);
}

.post-body-text {
  display: inline-block;
  position: relative;
  width: 50%;
  margin-left: 10%;
  margin-top: 40px;
}
.post-body-text p {
  font-size: 1.1em;
  border-spacing: 10px;
  line-height: 1.5;
}
.post-body-text h2 {
  font-size: 3rem;
}
.post-body-text table, .post-body-text th, .post-body-text td {
  border: 1px solid #000000;
  border-collapse: collapse;
}
.post-body-text th, .post-body-text td {
  padding: 20px;
}
.post-body-text ul {
  padding-left: 40px;
}
.post-body-text a {
  text-decoration: none;
  color: rgba(68, 84, 105, 0.56);
}
.post-body-text a:hover {
  color: rgba(130, 133, 147, 0.56);
}

.post-header h1 {
  color: #fff;
  position: relative;
  top: 50%;
  font-size: 72px;
  text-align: left;
  margin-left: 10%;
}
.post-header hr {
  border-color: rgba(255, 255, 255, 0.4);
  position: relative;
  top: 50%;
  margin-left: 10%;
  width: 40%;
}

#trailing-link {
  margin-left: 10%;
  color: #fff;
  text-decoration: none;
}

.link-path {
  position: relative;
  top: 45%;
}

#active-post {
  color: #6e6e6e;
}

.post-author-date_overview {
  color: #cccccc;
  font-style: italic;
  font-size: 16px;
}

.alert {
  padding: 20px;
  color: white;
  margin-bottom: 15px;
  opacity: 1;
  transition: opacity 0.6s;
  /* 600ms to fade out */
}

.alert-success {
  background-color: #77c66e;
  /*green */
}

.alert-danger {
  background-color: #f44336;
  /* Red */
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: black;
}

/* When moving the mouse over the close button */
.database {
  min-height: 92vh;
}

#db_chooser {
  width: 300px;
  height: 40px;
}

.map-filter {
  background-color: #ffffff;
  z-index: 1;
  position: absolute;
  width: 0;
  /*400 */
  height: 92vh;
  overflow-x: hidden;
  transition: 0.5s;
}
.map-filter h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.map-filter p {
  margin-top: 15px;
  margin-bottom: 15px;
}
.map-filter label {
  margin-left: 10px;
  width: 130px;
  display: inline-block;
}
.map-filter label[for=id_types] {
  width: 134px;
}

#id_turbines_0, #id_turbines_1, #id_capacity_0, #id_capacity_1, #id_megawatt_0, #id_megawatt_1 {
  width: 24%;
}

.map-filter select {
  width: 50%;
  height: 28px;
}
.map-filter input {
  width: 50%;
  height: 28px;
  border-radius: 5px;
  border: #aaa solid 1px;
}

.submit-filter {
  display: block;
  margin-right: auto;
  margin-left: 145px;
}

#filter-img {
  width: 25px;
  height: 25px;
}

.filter-button {
  margin: 10px;
  padding: 5px 5px 2px;
  border-radius: 5px;
  position: fixed;
  z-index: 1;
  background-color: white;
  border: none;
  cursor: pointer;
}

.filter-closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  text-decoration: none;
  color: black;
}

#dcs {
  display: block;
  width: 100px;
}

.table-fill {
  background: white;
  border-radius: 3px;
  border-collapse: collapse;
  height: 320px;
  margin: auto;
  max-width: 600px;
  padding: 5px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}

.marker {
  width: 300px;
  margin: 0;
  padding: 0;
}

.marker-table {
  border-collapse: collapse;
}

.marker-title {
  background-color: #4E5066;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}

.marker-table th {
  width: 150px;
}

.marker-undertitle {
  background-color: #9ea7af;
  color: #fff;
  text-align: left;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: capitalize;
}

.marker-body td {
  padding: 10px;
  width: 150px;
}

.marker-key {
  background-color: #d3d3d3;
  font-weight: bold;
  text-align: left;
}

.marker-value {
  text-align: center;
}

.marker-body tr {
  border-bottom: 1pt solid #E5E4E2;
  border-right: 1pt solid #E5E4E2;
}

.base_label {
  padding: 0 6px;
  display: inline-block;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.labels {
  margin-left: 10%;
  position: relative;
  top: 50%;
}

.TBR {
  background-color: #0075ca;
  border: 1px solid #0075ca;
  color: white;
}

.BI {
  background-color: #ff0097;
  border: 1px solid #ff0097;
  color: white;
}

.Imp {
  background-color: #00b140;
  border: 1px solid #00b140;
  color: white;
}

.CNIS {
  background-color: #ed9121;
  border: 1px solid #ed9121;
  color: white;
}

.create_issue {
  height: 92vh;
}
.create_issue p {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  padding-top: 10px;
  padding-left: 10px;
}
.create_issue p label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 200%;
  color: white;
}
.create_issue p input {
  display: block;
}
.create_issue form {
  background-color: #4E5066;
  margin-left: 50px;
  width: 40%;
  padding-right: 20px;
}
.create_issue h1 {
  margin-top: 20px;
  margin-left: 50px;
}
.create_issue input {
  display: inline-block;
  width: 100%;
  height: 28px;
  border-radius: 5px;
  border: #aaa solid 1px;
}
.create_issue select {
  width: 100%;
  height: 28px;
}
.create_issue textarea {
  width: 100%;
  height: 10vh;
  border-radius: 5px;
  border: #aaa solid 1px;
}
.create_issue a {
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  color: #000;
}

#create_issue {
  margin: 20px 0 20px 10px;
  width: 200px;
  line-height: 29px;
}

.feedback_overview_header {
  display: inline-block;
}

.top_feedback_container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-left: 5%;
  margin-right: 5%;
  width: 80%;
}

.btns-and-table {
  display: inline-block;
}

.back_btn {
  margin-right: 20px;
  margin-bottom: auto;
  margin-top: auto;
}

.back-btn, .MapView-btn {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 20%;
  margin-left: 50px;
  margin-bottom: 20px;
}

/*WDT Front */
.WDT {
  /* Set the background color */
  background: rgba(0, 0, 0, 0.3) url("../images/NJORD_front.jpeg") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  text-align: center;
  background-blend-mode: darken;
  color: #fff;
}
.WDT #start_wdt {
  display: block;
  font-size: 24px;
  border: 2px solid #fff;
  padding: 14px 50px;
  border-radius: 50px;
}
.WDT #continue_wdt {
  display: block;
  font-size: 20px;
  margin-top: 20px;
}
.WDT #wdt-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
}
.WDT #wdt_header {
  font-size: 80px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wdt-sim-editor .container {
  padding-top: 30px;
  display: flex;
}
.wdt-sim-editor header {
  text-align: left;
  margin-bottom: 20px;
}
.wdt-sim-editor header a, .wdt-sim-editor header h1 {
  display: inline-block;
}
.wdt-sim-editor .input-fields {
  flex: 1;
  padding-right: 20px;
  padding-left: 20px;
  width: 50%;
}
.wdt-sim-editor .tables {
  flex: 1;
  display: flex;
  width: 50%;
}
.wdt-sim-editor .tables .table {
  width: 50%;
  margin-right: 20px;
  height: 500px;
  overflow: hidden;
}
.wdt-sim-editor .tables h3 {
  background-color: #009FE3;
  text-align: center;
  color: #fff;
}
.wdt-sim-editor .tables .tbody {
  height: 250px;
  background-color: #A9C7CB;
  overflow: auto;
}
.wdt-sim-editor .tables .tbody p {
  height: 30px;
  margin-left: 20px;
  padding-top: 10px;
}

.add-method-input {
  margin-top: 10px;
}
.add-method-input:hover {
  cursor: pointer;
}

#cycles-container {
  height: 500px;
  overflow: auto;
}

.cycle-container {
  margin-top: 20px;
  border: 2px solid #555;
  border-radius: 10px;
  padding: 20px;
  cursor: move;
  max-height: 500px;
  overflow-y: auto;
}

.WDT-Tool td, .input-sheet td, .activity-sheet td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.input-sheet th, .activity-sheet th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  background-color: #4E5066;
  color: #fff;
}

.sim_data_p {
  margin-bottom: 10px;
  margin-top: 10px;
}

.wdt-sim-editor {
  max-height: calc(100vh - 100px);
  overflow-y: hidden;
  height: 92vh;
  overscroll-behavior: none;
}
.wdt-sim-editor .input {
  padding-left: 10px;
  height: 28px;
  width: 30%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  left: 0;
}
.wdt-sim-editor .label {
  display: inline-block;
  width: 50%;
  margin-right: 0;
}

.input-sheet {
  margin-left: 20px;
  margin-right: 20px;
  overflow: auto;
}
.input-sheet h2 {
  margin-top: 20px;
}
.input-sheet table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}
.input-sheet tr {
  height: 32px;
}
.input-sheet input {
  margin: 0;
  height: 30px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
}
.input-sheet .cycle-table-wrapper {
  max-height: 200px;
  overflow-y: auto;
}

.wdt-sim-editor .wdt_buttons {
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

#new_line_input_sheet {
  margin-left: 20px;
}

.wdt-sim-editor .wdt_buttons button {
  border: none;
  cursor: pointer;
  width: 200px;
}
.wdt-sim-editor .wdt_buttons button:hover {
  opacity: 0.8;
}

.class_methods {
  width: 300px;
  height: 30px;
}

.input-col-1 {
  width: 20%;
}

.input-col-2, .input-col-3 {
  width: 40%;
}

.MapView-btn {
  float: right;
}

.act_cell1 {
  width: 15%;
}

.act_cell2 {
  width: 10%;
}

.act_cell3 {
  width: 5%;
}
.act_cell3 input[type=checkbox] {
  margin-left: auto;
  margin-right: auto;
}

.act_cell4, .act_cell5, .act_cell6, .act_cell7, .act_cell8 {
  width: 10%;
}

.act_cell9 {
  width: 20%;
}

.activity-sheet {
  margin-left: 20px;
  margin-right: 20px;
}
.activity-sheet h2 {
  margin-top: 20px;
}
.activity-sheet table {
  border-collapse: collapse;
  width: 100%;
  max-height: 500px;
  overflow: auto;
}
.activity-sheet tr {
  height: 32px;
}
.activity-sheet input {
  margin: 0;
  padding-left: 5px;
  height: 30px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
}

.checkmark_input {
  margin-right: 20px;
}

#popup-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#popup {
  width: 40%;
  height: 40%;
  background: white;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#close-popup-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#popup-form h1 {
  color: black;
  margin-bottom: 20px;
}
#popup-form input {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
}
#popup-form button {
  padding: 10px 20px;
  margin-top: 20px;
}

.sp_menu {
  height: 92vh;
}

#SPMenu {
  width: 700px;
  margin-left: 2%;
  margin-top: 2%;
}
#SPMenu ul {
  list-style-type: none;
}
#SPMenu li {
  padding: 20px 20px 20px 30px;
  font-size: 18px;
  background-color: #b1b0b0;
}
#SPMenu li a {
  text-decoration: none;
  color: #0f1111;
}
#SPMenu h4 {
  padding: 10px;
  background-color: #4E5066;
  color: white;
}

.messages {
  margin-left: 20px;
  list-style-type: none;
  width: 20%;
  min-width: 200px;
  height: 32px;
  text-align: center;
}

.alert-success {
  border-width: 1px;
  border-style: solid;
  border-color: white;
  border-radius: 20px;
}

.sim_body {
  background-color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 2px #0f1111;
}

.sim_container {
  background: #d2c3b6;
  width: 80%;
  height: 95%;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 0 2px #0f1111;
  overflow: scroll;
}
.sim_container h1 {
  margin-left: 20px;
  color: #fff;
}
.sim_container hr {
  height: 3px;
  background-color: #fff;
}

.current_sims {
  height: 100vh;
}

#progress-bar {
  width: 1%;
  height: 30px;
  background-color: #445469;
}

.progress-wrapper {
  margin-top: 20px;
  width: 85vw;
  background-color: lightgrey;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

.progress_bar {
  height: 92vh;
  background-color: white;
}
.progress_bar h1 {
  margin-top: 20px;
  text-align: center;
}

#progress-bar-message {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.output {
  min-height: 92vh;
}
.output h1 {
  text-align: center;
  margin-top: 2%;
}
.output p {
  text-align: center;
  margin-top: 10%;
  font-size: 24px;
  font-weight: bold;
}

.p404 {
  background: rgba(0, 0, 0, 0.3) url("../images/404page.png") no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-blend-mode: darken;
  color: rgb(0, 0, 0);
}
.p404 h1 {
  font-size: 3.2vw !important;
  color: white;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p404 p {
  font-size: 1.2vw;
  font-weight: bold;
  color: white;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
}

.sp_body {
  padding: 50px;
  min-height: 92vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sp_inner_div {
  width: 600px;
  min-height: 500px;
}

.sp_form_titles {
  height: 50px;
  background-color: #445469;
  color: white;
  text-align: center;
  border-top: 1px solid #445469;
  border-left: 1px solid #445469;
  border-right: 1px solid #445469;
  border-radius: 10px 10px 0 0;
}
.sp_form_titles h2 {
  font-size: 32px;
}

.sp_form {
  border-right: 1px solid #445469;
  border-left: 1px solid #445469;
  padding-bottom: 20px;
}
.sp_form label {
  font-size: 18px;
  font-weight: bold;
  width: 40%;
  display: inline-block;
}
.sp_form p {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  justify-content: space-evenly;
}
.sp_form input {
  display: inline-block;
  height: 32px;
  width: 50%;
}

.sp_submit {
  height: 50px;
  background-color: #445469;
  color: white;
  font-size: 32px;
  width: 100%;
  border-bottom: 1px solid #445469;
  border-left: 1px solid #445469;
  border-right: 1px solid #445469;
  border-top: none;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}
.sp_submit:hover {
  background-color: #364354;
}

.sp_inner_table_div {
  width: 80%;
}
.sp_inner_table_div th, .sp_inner_table_div td {
  width: 25%;
  padding: 25px;
}
.sp_inner_table_div table, .sp_inner_table_div td, .sp_inner_table_div th {
  border: 1px solid grey;
  border-collapse: collapse;
}

.sp_folder_header {
  margin: 0;
  height: 50px;
  border: 1px solid grey;
}

.sp_access_header {
  margin: 0;
  height: 50px;
  border: 1px solid grey;
  font-size: 24px;
  text-align: left;
}

.sp_folder_header, .sp_folder {
  font-size: 24px;
  text-align: left;
  background-color: black;
  color: white;
}

.sp_form td input {
  display: inline-block;
  height: 32px;
  width: 70%;
  margin-bottom: 20px;
}
.sp_form label {
  font-size: 18px;
  font-weight: bold;
  width: 30%;
  display: inline-block;
}

.sp_inner_table_div #id_display_name, .sp_inner_table_div #id_department {
  display: block;
  width: 40%;
}
.sp_inner_table_div p label {
  display: block;
}

#sp_topform {
  margin-bottom: 20px;
}

.edit-btn {
  cursor: pointer;
  width: 22px;
  vertical-align: top;
}

/*# sourceMappingURL=style.css.map */
