body {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif
}
.loadingImage {
  background: url('/images/loading.gif') 50% no-repeat;
}
.screenshot {
  background: url('/images/loading.gif') 50% no-repeat;
  margin: 2px;
  cursor: pointer;
}
.screenshotLarge {
  background: url('/images/loading.gif') 50% no-repeat;
}
.screenshotDiv {
  padding: 12px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.commentsDiv {
  padding: "24px";
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.contentDiv {
  padding: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.contentDivRow {
  padding: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contentDivColumn {
  padding: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.listEntry {
  margin: 5pt;
}
.listText {
  padding-left: 8px;
  padding-top: 6px;
  font-size: 20px;
}
.listIcon {
  padding-top: 5px;
}
.chip {
  border-color: darkgrey;
  border-radius: 30px;
  display: flex;
  padding: 6px;
  background-color: lightgrey;
}
.chiptext {
  padding: 2px;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
     bottom: 0;
      opacity: 0;
 }
  to {
     bottom: 30px;
      opacity: 1;
 }
}
@keyframes fadein {
  from {
     bottom: 0;
      opacity: 0;
 }
  to {
     bottom: 30px;
      opacity: 1;
 }
}
@-webkit-keyframes fadeout {
  from {
     bottom: 30px;
      opacity: 1;
 }
  to {
     bottom: 0;
      opacity: 0;
 }
}
@keyframes fadeout {
  from {
     bottom: 30px;
      opacity: 1;
 }
  to {
     bottom: 0;
      opacity: 0;
 }
}
.mp-button {
  background-color: #1d85b1;
  color: white;
  border-radius: 20px;
  border-color: 1d85b1;
  padding: 8px;
  margin: 4px;
  border-style: none;
  cursor: pointer;
}
.mp-button:hover {
  background-color: #156080;
}
.mp-button-disabled {
  background-color: rgba(128, 128, 128, 0.174) !important;
  cursor: default;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #156080;
  border-radius: 4px;
  box-sizing: border-box;
}
.divbox {
  margin: 0 auto;
  margin-top: 24px;
  width: fit-content;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  box-shadow: 2px 2px lightgray;
}
.cardbox {
  margin-left: 10px;
  margin-right: 10px;
}
.projectbox {
  min-width: 300px;
  max-width: 300px;
}

.projectdetailbox {
  width: 70%;
}

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  border-radius: 20px;
}

.titleText {
  color: white;
  padding-top: 13px;
  font-size: 20px;
}

.topnav {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  background-color: #1d85b1;
  background: linear-gradient(90deg, #1d85b1 0%, #85d7fa 100%);
  cursor: pointer;
}

.topnav #links {
  display: none;
}

.topnav i {
  color: white;
  padding: 14px 16px;
  font-size: 20px;
  display: block;
  text-decoration: none;
}

.topnav i.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav:hover {
  background-color: #156080;
}

.active {
  background-color: #1d85b1;
  color: white;
}
.dialogbuttons {
  display: flex;
}

.filterDiv {
  margin: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.listgroup {
  border: solid thin black;
  border-radius: 5px;
  position: absolute;
  background-color: white;
  z-index: 10000;
  width: 200px;
}

.ratingbar {
  cursor: pointer;
}

.uploadbutton {
  cursor: pointer;
}

.gameoflifediv {
  margin: 20px auto;
  width: 300px;
  height: 300px;
}

.captcha {
  margin: 20px auto;
  width: 300pt;
}

.infodiv {
  text-align: center;
  padding: 10px;
}

.register {
  display: flex;
  justify-content: center;
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-color: #ccc;
  border-style: dashed;
}

.checkboxtext {
  padding-top: 6px;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #1d85b1;
  border-color: #1d85b1;
  border-style: solid;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.blogentries {
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  max-width: 50%;
}

.blogback {
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
}

.blockbutton {
  min-width: 150pt;
}

.defaultBlog {
  max-width: 600pt;
  margin: 0 auto;
  padding: 10px;
}

.links {
  position: absolute;
  width: 100%;
  background-color:#1d85b1;
  background: linear-gradient(90deg, #1d85b1 0%, #85d7fa 100%);
  top: 48px;
  left: 0;
  display:flex;
  flex-direction: column;
  z-index: 100000;
}

.link {
  font-size: 24px;
  padding: 5px;
  color: white;
  display: flex;
  flex-direction: row;
}
.link:hover {
  background-color: #156080;
}