@charset "utf-8";

/* =====================================
          UNIVERSAL RULES
===================================== */

/* Default Absolute Positioning Properties */
div.vf > div,
div#vMenu,
ul#vList > li > div,
div.vThumb > div, 
ul#vList > li > a,
ul#vList > li[data-status="1"] span.np,
div#subBox,
div#subBox > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* Default Flex Box Properties */
ul#vList,
ul#vList > li > div,
div#subBox > div {
  margin: 0px;
  padding: 0px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
}










/* =====================================
          VIDEO GALLERY
===================================== */

section.header {
  background: #222222;
  position: relative;
  display: block;
  width: 100%;
  margin: 0px auto;
  padding: 1% 0px;
  height: auto;
  overflow-x: hidden;
}
section#videoGallery {
  background: #000000;
  width: 100%;
}
h1#vTitle {
  position: relative;
  padding: 0px 5%;
  font-family: 'midnight';
  color: var(--primary-lighter);
  display: block;
  width: 90%;
  max-width: 1440px;
  margin: auto;
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: 400;
}
@media screen and (min-width: 1601px) {
  section.header {
	padding: 16px 0px;
  }
  h1#vTitle {
    padding: 0px 80px;
    font-size: 30px;
    line-height: 39px;
  }
}









/* ===== Video Galery ===== */

div.vf {
  font-family: Trebuchet MS;
  color: #FFFFFF;
  width: 100%;
  max-width: 1600px;
  padding: 39.5% 0px 0px 0px;
  height: 0px;
  margin: 0px auto;
  position: relative;
  background: #222222;
  overflow: hidden;
}
div#vid {
  position: relative;
  padding: 0px 0px 56.25% 0px;
  height: 0;
}
div#vid iframe, div#vid object, div#vid embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  z-index: 1;
}
div#vMenu {
  bottom: 12.5%;
  padding-left: 70%;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 1601px) {
  div.vf {
    padding: 632px 0px 0px 0px;
  }
  div#vid {
    padding: 900px 0px 0px 0px;
  }
  div#vid iframe, div#vid object, div#vid embed {
    width: 1120px;
    height: 630px;
  }
  div#vMenu {
    bottom: 79px;
    padding-left: 1120px;
  }
}










/* ===== VIDEO LINKS  ===== */

ul#vList {
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-size: 0.8vw;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
ul#vList > li {
  width: 100%;
  padding: calc(19.5% + 3px) 0px 0px 0px;
  position: relative;
}
ul#vList > li > div {
  margin: 1% 0px;
  padding: 0px 0px 0px 2%;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
ul#vList > li > div > div:nth-child(1) {
  position: relative;
  -webkit-order: 0;
  order: 0;
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
  -webkit-align-self: auto;
  align-self: auto;
}
div.vThumb {
  width: calc(100% - 6px);
  padding: 56.25% 0px 0px 0px;
  position: relative;
  overflow: hidden;
  border: 3px solid;
  border-color: var(--primary);
}
div.vThumb > div img {
  height: 100%;
  width: auto;
  object-position: 50% 50%;
  object-fit: cover;
}
ul#vList > li > div > div:nth-child(2) {
  padding: 0px 2%;
  -webkit-order: 0;
  order: 0;
  -webkit-flex: 1 1 70%;
  flex: 1 1 70%;
  -webkit-align-self: auto;
  align-self: auto;
}
ul#vList > li > div > div:nth-child(2) h1 {
  color: var(--primary-lighter);
  font-size: 1.1em;
  padding: 0px 0px 0.14em 0;
  margin: 2.5px 0px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
ul#vList > li > div > div:nth-child(2) > span {
  font-size: 1em;
  line-height: 1em;
  margin: 2.5px 0px;
  color: var(--primary-light);
  font-weight: 100;
  font-style: italic;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
ul#vList > li > div > div:nth-child(2) > span > p {
  margin: 0px;
  padding: 0px;
}
ul#vList > li:hover {
  background: var(--primary-dark);
  cursor: pointer;
}

ul#vList > li:hover div.vThumb > div {
  border-color: var(--primary-light);
}

ul#vList > li:hover div.vThumb > div img {
  transform: scale(1.1);
  transition-duration: 0.25s;
  transition-timing-function: ease;
}
@media screen and (min-width: 1601px) {
  ul#vList {
    width: 463px;
    font-size: 13px;
  }
  ul#vList > li {
    padding: 93px 0px 0px 0px;
  }
  ul#vList > li > div {
    padding: 0px 0px 0px 9.25px;
  }
  div.vThumb {
    width: 130px;
    padding: 76.5px 0px 0px 0px;
  }
  ul#vList > li > div > div:nth-child(2) {
    padding: 0px 9px;
  }
  ul#vList > li > div > div:nth-child(2) h1 {
    font-size: 14px;
    margin: 3px 0px;
  }
  ul#vList > li > div > div:nth-child(2) > span {
    font-size: 13px;
    margin: 5px 0px 0px 0px;
  }
}











/* ===== Video Gallery Active  ===== */

ul#vList > li[data-status="1"] {
  background: var(--primary-lighter);
}
ul#vList > li[data-status="1"] > div > div h1 {
  color: var(--primary-dark);
}
ul#vList > li[data-status="1"] > div > div > span {
  color: var(--primary-darker);
}
ul#vList > li[data-status="1"]  div.vThumb > div > div {
  border-color: var(--primary-lighter);
}
ul#vList > li[data-status="0"] span.dur {
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  padding: 2px 5px;
  margin: 3px;
  position: absolute;
  bottom: 0;
  right: 0;
}
ul#vList > li[data-status="1"] span.dur {
  display: none;
}
ul#vList > li[data-status="0"] span.np {
  display: none;
}
ul#vList > li[data-status="1"] span.np {
  display: inline-block;
  text-align: center;
  z-index: 5;
  background: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  padding: 22% 0px 0px 0px;
  margin: 0;
}











/* ===== YouTube Link  ===== */

div#subBox {
  background-color: #353535;
  top: 87.5%;
  left: 70%;
  display: -webkit-flex;
  display: flex;
}
div#subBox > img {
  float: left;
  object-fit: contain;
  height: auto;
  padding: 1% 2%;
  border-radius: 50%;
}
div#subBox > div {
  margin: auto 0px;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
}
div#subBox > div > span {
  font-size: 1vw;
  display: inline-block;
  margin: 0px;
  font-weight: bold;
}
div#subBox > div > a {
  font-size: 1vw;
  background-color: #ff3700;
  border-radius: 7.5px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 2% 6%;
  margin: 3px 0px 3px 0px;
  text-shadow: 0px 1px 0px #854629;
  text-decoration: none;
  position: relative;
  width: 40%;
  border: 2px solid #b31e00;
  color: #ffffff !important;
}
div#subBox > div > a > span {
  font-size: 1vw;
  line-height: 1em;
  background-color: #FFFFFF;
  display: inline-block;
  color: #ff3700;
  text-shadow: none;
  box-shadow: 0px 1px 0px #854629;
  padding: 1% 0px 1% 2%;
  margin: 0px 5px 0px 0px;
  border-radius: 3px;
  width: 20%;
}
div#subBox > div > a:hover {
  background-color: #b31e00;
}
div#subBox > div > a:hover > span {
  color: #b31e00;
}
div#subBox > div > a:active {
  top: 2px;
}
@media screen and (min-width: 1601px) {
  div#subBox {
    top: 553px;
    left: 1120px;
  }
  div#subBox > img {
    padding: 5px 10px;
    border-radius: 50%;
  }
  div#subBox > div > span {
    font-size: 16px;
  }
  div#subBox > div > a {
    font-size: 16px;
    padding: 5.5px 17px;
    width: 115.5px;
  }
  div#subBox > div > a > span {
    font-size: 16px;
    padding: 1px 0px 1px 2px;
    width: 23px;
  }
}










/* ===== Description ===== */

section#description {
  width: 100%;
  padding: 2.5% 0px;
  background-color: #151515;
  color: #CCCCCC;
}
section#description > div {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}
section#description h1, section#description h2 {
  width: 90%;
  max-width: 1440px;
  display: block;
}
section#description h1 {
  color: var(--primary-light);
  padding: 0px 0px 0px 3%;
  margin: 2% auto 0px auto;
  font-family: 'blackout';
  font-size: 2.75vw;
  line-height: 2.75vw;
  text-decoration: none;
}
section#description h2 {
  color: #151515;
  padding: 0px 0px 0px 4%;
  margin: 0px auto 2% auto;
  font-size: 1.81vw;
  line-height: 1.81vw;
  text-shadow: 2px 2px 0 var(--primary-light), 2px -2px 0 var(--primary-light), -2px 2px 0 var(--primary-light), -2px -2px 0 var(--primary-light), 2px 0px 0 var(--primary-light), 0px 2px 0 var(--primary-light), -2px 0px 0 var(--primary-light), 0px -2px 0 var(--primary-light);
}
span.date {
  font-style: italic;
  display: inline-block;
  width: 100%;
  font-size: 1.2em;
  margin: 0px 0px 10px 5px;
}
div.collumns {
  margin: 0px;
  padding: 2% 0px;
  width: 100%;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  -webkit-column-rule: 1px solid rgba(73, 66, 16, 0.39);
  -moz-column-rule: 1px solid rgba(73, 66, 16, 0.39);
  column-rule: 1px solid rgba(73, 66, 16, 0.39);
}
section#description a, 
section#description a:visited {
	color: #3F51BB;
}
section#description a:hover {
	color: #4B5ED0;
}
@media screen and (min-width: 1601px) {
  section#description {
    padding: 20px 0px 80px 0px;
  }
  section#description h1 {
    padding: 0px 0px 0px 48px;
    margin: 32px auto 0px auto;
    font-size: 44px;
    line-height: 44px;
  }
  section#description h2 {
    padding: 0px 0px 0px 48px;
    margin: 0px auto 32px auto;
    font-size: 29px;
    line-height: 29px;
  }
  span.date {
    font-size: 24px;
  }
  div.collumns {
    padding: 32px 0px;
  }
}










/* ===== VIDEO GALLARY MOBILE  ===== */

@media only screen and (max-width: 1000px) {
	
  div.vThumb > div > span {
    font-size: 1.5vw;
  }	
  div.vThumb > div img {
	height: auto;
    width: 100%;
  }
  div#subBox > div > a {
    font-size: 1.5vw;
  }
  div#subBox > div > a {
    font-size: 1.5vw;
    line-height: 1em;
  }
  ul#vList > li {
    font-size: 1.5vw;
  }
  div.vf {
    max-width: 1000px;
    padding: 130% 0px 0px 0px;
  }
  div#vid iframe, div#vid object, div#vid embed {
    width: 100%;
    height: 100%;
  }
  div#vMenu {
    padding: 0px;
    width: 100%;
    bottom: 5%;
    top: 43.2%;
    overflow-y: scroll;
  }
  ul#vList {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  ul#vList > li {
    padding: 29.5% 0px 0px 0px;
    width: 33%;
    -webkit-order: 0;
    order: 0;
    -webkit-flex: 0 1 33%;
    flex: 0 1 33%;
  }
  ul#vList > li > div {
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
	padding: 0px;
  }
  div.vThumb {
    width: calc(90% - 6px);
    padding: 47.81% 0px 0px 0px;
    margin: 5% auto 0px auto;
  }
  ul#vList > li > div > div:nth-child(1) {
    -webkit-flex: 0 0 60%;
    flex: 0 0 60%;
  }
  ul#vList > li > div > div:nth-child(2) {
    -webkit-flex: 0 0 40%;
    flex: 0 0 40%;
	padding: 0px 5%;
  }
  ul#vList > li > div > div:nth-child(2) h1 {
    font-size: 1.2em;
    margin: 2.5% 0px 1% 0px;
  }
  ul#vList > li > div > div:nth-child(2) span {
	margin: 0px;
  }
  div#subBox {
	bottom: 0;
    top: 95%;
    left: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
  }
  div#subBox > img {
    padding: 0.5% 1%;
  }
  div#subBox > div {
    width: 100%;
    -webkit-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-align-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  div#subBox > div > span {
    margin: auto 0px;
    font-size: 2vw;
  }
  div#subBox > div > a {
    font-size: 1.5vw;
    width: 12.5%;
    padding: 0.75% 2%;
    margin: auto 2.5% auto auto;
  }
  div#subBox > div > a > span {
    padding: 2% 0px 2% 0px;
    text-align: center;
  }
  div.vfTitleBox {
    font-size: 110%;
  }
  section#description h1 {
    font-size: 5vw;
    line-height: 5vw;
  }
  section#description h2 {
    font-size: 2.5vw;
    line-height: 2.5vw;
  }
  section#description p {
    font-size: 1.5em;
  }
  div.collumns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}










/* ===== BACKUP PALETTE  ===== */

ul#vList, section.header, section#description {
  --primary-lighter: #CDCDCD;
  --primary-light: #989898;
  --primary: #595959;
  --primary-dark: #353535;
  --primary-darker: #222222;
  --accent-lighter: #FFFFFF;
  --accent-light: #989898;
  --accent: #595959;
  --accent-dark: #353535;
  --accent-darker: #222222;
}