@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*.hidden {
  display: none;
}

html, body {
  font-family: "Roboto", sans-serif;
  color: white;
  width: 100%;
  height: 100%;
  font-size: 16px;
  background: black url(/images/background.jpg) no-repeat top center fixed;
  background-size: cover;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  background: black url(/images/background.jpg) no-repeat top center fixed;
  background-size: cover;
}

#browse {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100%;
}

footer {
  margin: 0 auto;
  flex: 0;
  padding: 3rem 15vw 4.5rem 15vw;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  font-size: 1rem;
  color: white;
  text-align: center;
  line-height: 1.33;
}

.btn {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  display: block;
  padding: 1rem 2.25rem;
  border-radius: 0rem;
  border: 0;
  outline: 0;
  font-size: 1.5rem;
  background: #3F4B81;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  background: #666BB3;
}

.loginForm {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-width: 180px;
  gap: 1rem;
}

.button-bar {
  flex: 1;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.button-column {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: center;
}

.login-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input[type=text], input[type=password], input[type=email] {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: "Open Sans";
  font-size: 1.25rem;
}

body::-webkit-scrollbar-thumb {
  background-color: red; /* Set thumb color for Chrome and Safari */
}

body::-webkit-scrollbar-track {
  background-color: green; /* Set track color for Chrome and Safari */
}

.browse-header {
  margin: 0 0 0 0;
  padding: 3rem 5vw 1rem 5vw;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: black url(/images/background.jpg) no-repeat top center;
  background-size: cover;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 0.5rem 0.3rem rgba(10, 10, 33, 0.6);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.browse-header a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  gap: 1rem;
  text-decoration: none;
}
.browse-header .logo-icon, .browse-header .logo-text {
  height: 36px;
}
.browse-header input {
  position: relative;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.033);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.browse-header input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.browse-header input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.shows {
  flex: 1;
  /*min-width: 75%;   */
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.25rem;
  margin: 0 auto;
  padding: 1rem;
  padding-top: 8.5rem;
  justify-content: stretch;
}

.assetlink {
  position: relative;
  overflow: hidden;
  background: rgba(200, 200, 220, 0.1) no-repeat center center;
  background-size: cover;
  padding: 1rem 1.33rem;
  border-radius: 0rem;
  border: 0;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 1.66rem;
  line-height: 1.2;
  vertical-align: baseline;
  color: #eee;
  text-shadow: 0 0 0.5rem black;
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
.assetlink .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  height: auto;
  opacity: 0.66;
  transition: all 0.5s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
.assetlink.hidetiletext .bg {
  opacity: 0.8;
}
.assetlink .title {
  position: relative;
  z-index: 1;
}
.assetlink:hover .bg {
  opacity: 1;
}

#cover {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 25);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  opacity: 0.77;
}

#showpop {
  transition: all 0.5s ease-in-out;
  position: fixed;
  z-index: 102;
  top: 50%;
  left: 50%;
  width: 66%;
  height: auto;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 44, 0.8) url(/images/background.jpg) no-repeat center center fixed;
  background-size: cover;
  border-radius: 0rem;
  padding: 4rem 2rem;
  border: 0px solid rgba(220, 220, 210, 0.8);
  box-shadow: 0 0 1rem 0.5rem rgba(60, 60, 99, 0.8);
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 2rem;
  align-items: center;
}
#showpop.hidden {
  display: none;
}
#showpop button.close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  width: 2rem;
  color: #aaa;
  cursor: pointer;
  background: transparent;
  outline: 0;
  border: 0;
}
#showpop .assetlink {
  width: 320px;
  height: 202px;
}
#showpop .assetlink .bg {
  opacity: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#showpop #showinfo {
  display: flex;
  flex-direction: column;
}
#showpop #showinfo h2 {
  padding: 0;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
}
#showpop #showinfo .meta-info {
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
#showpop #showinfo .meta-info .year {
  color: #aaa;
}
#showpop #showinfo .meta-info .rating {
  display: flex;
  gap: 1rem;
}
#showpop #showinfo .meta-info .ratingreason {
  color: #888;
}
#showpop #showinfo .description {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.33;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}
#showpop #showinfo button {
  max-width: 60%;
  outline: 0;
  border: 0;
  background-color: #dedede;
  color: rgb(0, 0, 28);
  font-weight: light;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
}
#showpop #showinfo button:hover {
  background-color: #ccc;
}
#showpop #showinfo button:active {
  background-color: #bbb;
}

@media (max-width: 700px) {
  .browse-header {
    width: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0rem auto 0 auto;
    padding: 1rem 1rem;
    gap: 1.5rem;
  }
  .browse-header .logo-icon, .browse-header .logo-text {
    height: 32px;
  }
  .browse-header input {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
  }
  .shows {
    width: 90%;
    padding-top: 9.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .assetlink {
    width: 100%;
  }
  #showpop {
    width: 90%;
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
  }
  #showpop h2 {
    font-size: 1.75rem;
  }
  #showpop .assetlink {
    width: 100%;
    height: auto;
  }
}
.vidwrap .vidControls {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  /*background: rgba(0, 0, 0, 0.5);*/
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.vidwrap .vidControls.on {
  width: 100%;
  height: 100%;
  opacity: 0.88;
}
.vidwrap .vidControls .logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  height: 2.5rem;
}
.vidwrap .vidControls .assetTitle {
  position: absolute;
  top: 1.5rem;
  left: 5rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: white;
  text-shadow: 0 0 0.4rem black;
  max-width: 70vw;
  text-overflow: ellipsis;
  overflow: hidden;
}
.vidwrap .vidControls .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
  background: transparent;
  outline: 0;
  border: 0;
}
.vidwrap .vidControls .extraControls {
  position: absolute;
  top: 1.5rem;
  right: 5rem;
  display: flex;
  flex-flow: row nowrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #dedede;
}
.vidwrap .vidControls .controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2.25rem;
  justify-content: center;
  align-items: center;
}
.vidwrap .vidControls .controls button {
  color: white;
  font-size: 3rem;
  background: transparent;
  outline: 0;
  border: 0;
  text-shadow: 0 0 0.5rem black;
}
.vidwrap .vidControls .controls button.playtoggle {
  width: 7rem;
  font-size: 6.5rem;
}
.vidwrap .vidControls .progress {
  position: absolute;
  bottom: 2.75rem;
  left: 1.5rem;
  right: 1.5rem;
  background: transparent; /* rgba(255, 255, 255, 0.5); */
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.vidwrap .vidControls .progress .times {
  width: 80vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  color: white;
  text-shadow: 0 0 0.5rem black;
}
.vidwrap .vidControls .progress .progress-bar {
  height: 1rem;
  background: linear-gradient(to right, rgb(140, 140, 150) 0%, rgb(140, 140, 150) 100%);
  width: 80vw;
}
.vidwrap .vidControls[itemType=ident] .close {
  display: none;
}
.vidwrap .vidControls[itemType=ident] .logo {
  display: none;
}
.vidwrap .vidControls[itemType=ident] .assetTitle {
  display: none;
}
.vidwrap .vidControls[itemType=ident] .controls {
  display: none;
}
.vidwrap .vidControls[itemType=ident] .progress {
  display: none;
}

body .vidwrap {
  position: fixed;
  width: 0px;
  height: 0px;
  top: -100px;
  left: -100px;
  overflow: hidden;
}
body #mainVideo {
  /*
  position: fixed;
  display: block;
  width: 0px;
  height: 0px;
  top: -100px;
  left: -100px;
  z-index: 888;
  */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 888;
}
body.player {
  overflow: hidden;
  /*
  #mainVideo {
      display: block;

      height: 1px;
      width: 1px;
      top: -100px;
      left: -100px;

  }
  */
}
body.player .vidwrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 801;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  background: black;
  opacity: 1;
}
body.player video::-webkit-media-controls {
  display: none !important;
}
body.player #cover {
  display: block;
  background: black url(/images/background.jpg) no-repeat top center fixed;
  background-size: cover;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  opacity: 1;
  z-index: 800;
}/*# sourceMappingURL=main.css.map */