@media (max-width: 650px) {
   form#searchform  {
      display: none;
    }
}

html {
  touch-action: manipulation;
  overscroll-behavior: none;
}

* {
  padding: 0;
  margin: 0;
}

body {
  background: #b0b0b0;
  height: 100vh;
  color: white;
  overflow: hidden;
}

body * {
  overflow: initial;
}

header {
  width: 100%;
}

header h1 {
  color: #000000;
  font-family: Poppins;
  font-weight: bolder;
  font-size: 3em;
  padding: 0 8%;
}

.flex1 {
  width: 100vw;
  height: calc(28vh + 4px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 5px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.flexitem1 {
  background: #616161;
  color: white;
  width: 40vw;
  height: 28vh;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.flexitem1 p {
  width: 100%;
  height: 3vh;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: black;
  background-size: cover;
  font-family: Poppins;
}

.flexitem1:not(:last-child) {
  margin-right: 3%;
}

.flexitem1:first-child {
  margin-left: 8vw;
}

.flexitem1:last-child {
  margin-right: 4vw;
}

h3 {
  color: black;
  font-family: Public Sans;
  font-weight: 400;
  padding: 0 8vw;
}

.navfoot {
  width: 100%;
  height: 5vh;
  display: flex;
  background: #858585;
  position: fixed;
  margin-top: 5vh;
  bottom: 0;
  justify-content: space-evenly;
  align-items: center;
  z-index: 100;
}

.navfoot > * {
  width: 4.5vh;
  height: 4.5vh;
  background: none;
  border: none;
  border-radius: 5px;
}

.navfoot > * img {
  background-size: cover;
  border: none;
  background-repeat: no-repeat;
  height: 3.5vh;
  width: auto;
  margin: auto;
}

#infonotification {
  height: 22vh;
  width: 85%; 
  z-index: 2;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background: #a1a1a1;
  padding: 1% 0;
  color: black;
  margin-left: 4vh;
  backdrop-filter: blur(15px);
  user-select: none;
  transition: height 0.5s;
}

#inpulley {
  background: url('/images/VertPulley.png');
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  right: -3.75%;
  bottom: calc(50% - 10vh);
  height: 20vh;
  width: 7.5vw;
  z-index: 100;
  transition: bottom 0.5s;
  border: none;
}

.loading-screen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
}

.loading-screen div {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #000;
  border-radius: 50%;
  animation: loading 0.8s infinite;
}

.loading-screen div:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-screen div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loading {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

#not-supported-div {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    font-size: 2em;
    text-align: center;
    padding-top: 20%;
    z-index: 999;
}

#incontent {
  display: block;
  font-family: Public Sans, sans-serif;
  padding: 0.5em;
  width: 85%;
}

hr {
  border: 1px solid #3d3d3d;
}