@charset "utf-8";
/* CSS Document
@font-face {
  font-family: 'Helvetica Neue';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Helvetica65Medium_22443.woff) format("woff")
}
@font-face {
  font-family: 'Helvetica Neue';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/HelveticaNeueBold.woff) format("woff")
}*/
html {
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-family: "Helvetica", Calibri, Helvetica, Arial, sans-serif
}
img {
  max-width: 100%;
  height: auto
}
header {
  height: 350px;
  position: relative;
  padding-bottom: 64px
}
header > .picture {
  text-align: center;
  /*  This is for the old header design with the banner broken into 3 pieces
  background: url(../images/Header_Background_Image.jpg) no-repeat center center;
  background-size: cover
  */

  /* background: none; */
  background-color: #000000;
  width: 100%;
}
header > .picture > img {
  object-fit: cover;
  object-position: center;
  height: 350px
}
header > .logo-img {
  border: solid #fff 5px;
  border-radius: 50%;
  position: absolute;
  width: 134px;
  height: 134px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10
}
.navbar {
  background: #000;
  background: linear-gradient(180deg, #000 0, rgba(25, 25, 25, .877171) 72%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 12px 21px 15px 28px
}
.navbar > .login {
  font-size: 18px;
  color: #fff;
  font-weight: 700
}
.navbar > .login > a:hover {
  color: #e6e6e6
}
.navbar .logout {
  color: #fc0;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px
}
.navbar .logout:hover {
  color: #cca300
}
.navbar .logoutwrap {
  font-size: 14px;
  font-weight: 400;
  padding-left: 5px;
  vertical-align: middle
}
.btn {
  display: inline-block;
  font-weight: 700;
  background: 0 0;
  border: 0;
  outline: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  padding: 10px 18px 14px;
  border-radius: 2px
}
.btn.joinbtn {
  color: #fff;
  background-color: #ee1329
}
.btn.joinbtn:hover {
  background-color: #f14354
}
h1 {
  font-size: 2.5rem;
  margin-top: 38px;
  text-align: center;
  margin-bottom: 30px
}
.episode-item {
  padding: 12px 20px 24px;
  max-width: 640px;
  height: 387px;
  width: 100%;
  border: solid 2px #ebebeb;
  border-radius: 4px;
  display: inline-block
}
.episode-item.-overlay .media > .thumbnail {
  -webkit-filter: blur(4px);
  filter: blur(4px)
}
.episode-item.-overlay .media > .overlay {
  display: block
}
.episode-item > .media {
  position: relative
}
.episode-item > .media > .overlay {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .4);
  color: #fff
}
.episode-item > .media > .thumbnail {
  cursor: pointer
}
.episode-item.-loader > .mobile, .episode-item > .media > .thumbnail .mobile {
  display: none
}
.episode-item > .info {
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 11px;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between
}
.episode-item > .info > .name {
  color: #3c3c3c
}
.episode-item > .info > .date {
  color: #9d9d9d
}
.episode-item > .description {
  color: #fdf59a;
  font-size: 12px;
  background-color: #000;
  font-weight: 700;
  padding: 30px;
  height: 202px;
  box-sizing: border-box
}
.episode-item > .description > p {
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  line-height: 1.2em;
  max-height: 11.6em;
  text-align: justify;
  margin-right: -1em;
  padding-right: 1em
}
.episode-item > .description > p:before {
  content: '...';
  position: absolute;
  right: 0;
  bottom: 0
}
.episode-item > .description > p:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: .2em;
  background: #000
}
.episodes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 48px
}
.episodes > .episode-item {
  margin: 10px
}
.join-txt-link {
  font-size: 2rem;
  font-weight: 700;
  color: #ee1329;
  text-decoration: underline;
  text-align: center;
  padding: 90px 5px 85px
}
.join-txt-link > a:hover {
  color: #f5727f
}



/* ||||||||||||||||||||||||
          Login Box
||||||||||||||||||||||||||||||||||||||*/


.login-box {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0);
  width: 300px;
  margin: 0 auto;
}
.login-box label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
.login-box input[type="text"],
.login-box input[type="password"],
.login-box input[type="submit"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
}

.login-box input[type="submit"] {
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;

}
.login-box input[type="submit"]:hover {
  background-color: #333333;
  }

.login-boxbutton {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;
}
.login-box button:hover {
  background-color: #333333;
}




footer {
  color: #767676;
  font-size: 15px;
  text-align: center;
  padding-bottom: 100px
}
footer > .copyright {
  margin-top: 25px
}
.footer-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0
}
.footer-nav > li {
  display: inline-block;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  position: relative
}
.footer-nav > li:hover {
  color: #363636
}
.footer-nav.with-separator > li:after {
  content: '|';
  display: inline-block;
  position: absolute;
  right: -3px
}
.footer-nav.with-separator > li:last-child:after {
  content: none
}
@media screen and (max-width:900px) {
  .episode-item {
    max-width: 460px;
    height: 487px
  }
}
@media screen and (max-width:768px) {
  html {
    font-size: 14px
  }
  .episode-item {
    height: auto
  }
  .main-footer {
    padding-left: 5px;
    padding-right: 5px
  }
  .main-footer > .copyright {
    margin-bottom: 25px
  }
}
@media screen and (max-width:425px) {}
