body {
  background-color: black;
  color: lime;
  margin: 0;
  padding: 0;
  margin: auto;
  background-size: cover;
  background: url(https://media.aeversole.com/Resources/Images/MovieTheater.png) center center fixed;
  font-size: 1em;
  /*Chrome Settings*/
  /*-webkit-background-size: cover;*/
  -webkit-background: url(https://media.aeversole.com/Resources/Images/MovieTheater.png) center center fixed;
  /*FireFox Settings*/
  -moz-background-size: cover;
  /*Opera Settings*/
  -o-background-size: cover;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 2em;
  /*color:white;*/
}

div.items {
  /*white-space: nowrap;*/
  flex-flow: row wrap;
  justify-content: space-between;
  overflow: hidden;
  display: flex;
  align-self: center;
}
div.items:hover .item {
  opacity: 0.3;
}
div.items:hover .item:hover {
  opacity: 1;
}
div.control-container {
  /*height: $container-height;
  position: absolute;
  width: $container-width;*/
  overflow: hidden;
  /*box-sizing: border-box;*/
}
div.container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-height: 300px;
  position: relative;
  width: 80%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
div.left-scroll {
  left: 0;
}
div.left-scroll i {
  transform: translate(-60%, -50%);
}
div.right-scroll {
  right: 0;
}
div.right-scroll i {
  transform: translate(-40%, -50%);
}
div.scroll {
  position: absolute;
  display: inline-block;
  color: lime;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid lime;
  border-radius: 30px;
  margin: 0 5px;
  z-index: 951;
}
div.scroll i {
  font-size: 15px;
  position: relative;
  left: 50%;
  top: 50%;
}

input[type=submit] {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

span.red {
  color: red;
}
span.green {
  color: green;
}

.item {
  position: relative;
  align-self: center;
  width: 200px;
  height: 200px;
  margin: 6px 3px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 899;
}
.item:hover {
  transform: scale(1.5);
  margin: 30px;
  opacity: 1;
  z-index: 950;
}
.item:hover .opacity-none {
  opacity: 1;
}
.item .item-load-icon {
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
}
.item .opacity-none {
  opacity: 0;
}
.item img.item-image {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.item .item-title {
  color: lime;
  position: absolute;
  margin: 5px 0;
  padding: 10px 0;
  width: 100%;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.item .item-year {
  color: lime;
  position: absolute;
  margin: 5px 0;
  padding: 10px 0;
  width: 100%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.item .item-description {
  color: lime;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: pre-wrap;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  margin: 5px 0;
  padding: 10px 0;
}

.button {
  position: absolute;
  color: lime;
  font-size: 15px;
  /*border: $border-size solid $font-color;*/
  width: 30px;
  height: 30px;
  border-radius: 30px;
  z-index: 950;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.button i {
  position: relative;
  top: 20%;
  left: 50%;
  transform: translate(-35%, -55%);
  z-index: 950;
}
.button:hover {
  box-shadow: 0px 0px 50px #FFFFFF;
}

.play-button {
  position: absolute;
  color: lime;
  font-size: 15px;
  border: 1px solid lime;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  z-index: 950;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}
.play-button i {
  position: relative;
  top: 20%;
  left: 50%;
  transform: translate(-35%, -55%);
  z-index: 950;
}
.play-button:hover {
  box-shadow: 0px 0px 50px #FFFFFF;
}

.video_counter {
  position: fixed;
  bottom: 0px;
  right: 0px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  color: black;
  overflow: hidden;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#video_filter {
  position: fixed;
  top: 5px;
  left: 5px;
}

/*Paragraph*/
p {
  margin: auto;
}
p.indent {
  text-indent: 5%;
  /*color:white;*/
  font-size: 1em;
}
p.contact {
  text-align: center;
  /*color:white;*/
  font-size: 1em;
}
p.condition {
  font-size: 0.75em;
  text-align: left;
}

/*Forms*/
form.contact {
  /*border-radius:25px;*/
  background-color: black;
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 50%;
}
form.contact input, form textarea {
  width: 90%;
}
form.user {
  /*border-radius:25px;*/
  background-color: black;
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 50%;
  position: absolute;
  top: 20%;
  left: 10%;
}

/*Divs*/
div.f5 {
  bottom: 2%;
  color: white;
  font-size: 0.5em;
  position: fixed;
  right: 1%;
}
div.f6 {
  bottom: 2%;
  color: white;
  font-size: 0.5em;
  position: fixed;
  left: 1%;
}
div.certifications {
  text-align: center;
}
div.payment_information input {
  margin-top: 5px;
  text-align: left;
}
div.payment_information button {
  margin-top: 5px;
}
div.contact_form label {
  /*display:block;*/
}
div.user_form label {
  /*display:block;*/
}
div.skyscraper_left {
  position: fixed;
  top: 1%;
  left: 1%;
  font-size: 0.5em;
}
div.skyscraper_right {
  /*width: 120px;*/
  position: fixed;
  top: 1%;
  right: 1%;
  font-size: 0.5em;
}
div.banner_ad {
  font-size: 0.5em;
  /*width: 80%;*/
  height: 90px;
}
div.contact_form {
  padding: 5px;
  background-color: black;
  /*border-radius: 25px;*/
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 50%;
  margin-top: 10%;
}
div.resources {
  /*border-radius:25px;*/
  background-color: black;
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 25%;
  position: absolute;
  top: 20%;
  right: 10%;
}
div.resources a {
  color: blue;
}
div.main {
  padding: 5px;
  background-color: black;
  /*border-radius: 25px;*/
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 50%;
  margin-top: 5%;
  margin-bottom: 5%;
}
div.payment {
  padding: 5px;
  background-color: black;
  /*border-radius: 25px;*/
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 50%;
  margin-top: 5%;
}
div.services {
  padding: 5px;
  background-color: black;
  /*border-radius: 25px;*/
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 50%;
  margin-top: 5%;
  margin-bottom: 10%;
}
div.bottom_buffer {
  position: relative;
  bottom: 0%;
  left: 25%;
  width: 50%;
  padding-top: 20%;
}
div.all_users {
  /*border-radius:25px;*/
  background-color: black;
  border: 2px solid;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 80%;
  position: absolute;
  top: 40%;
  left: 10%;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
           MOBILE STYLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 500px) {
  div.f5 {
    bottom: 2%;
    color: white;
    font-size: 0.5em;
    position: fixed;
    right: 1%;
  }
  div.f6 {
    bottom: 2%;
    color: white;
    font-size: 0.5em;
    position: fixed;
    left: 1%;
  }
  div.certifications {
    text-align: center;
  }
  div.payment_information input {
    margin-top: 5px;
    text-align: left;
  }
  div.payment_information button {
    margin-top: 5px;
  }
  div.contact_form label {
    /*display:block;*/
  }
  div.user_form label {
    /*display:block;*/
  }
  div.skyscraper_left {
    position: fixed;
    top: 1%;
    left: 1%;
    font-size: 0.5em;
  }
  div.skyscraper_right {
    /*width: 120px;*/
    position: fixed;
    top: 1%;
    right: 1%;
    font-size: 0.5em;
  }
  div.banner_ad {
    font-size: 0.5em;
    /*width: 80%;*/
    height: 90px;
  }
  div.contact_form {
    padding: 5px;
    background-color: black;
    /*border-radius: 25px;*/
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 95%;
    margin-top: 20%;
    margin-bottom: 20%;
  }
  div.resources {
    /*border-radius:25px;*/
    background-color: black;
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 25%;
    position: absolute;
    top: 20%;
    right: 10%;
  }
  div.resources a {
    color: blue;
  }
  div.main {
    padding: 5px;
    background-color: black;
    /*border-radius: 25px;*/
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 95%;
    margin-top: 20%;
    margin-bottom: 25%;
  }
  div.payment {
    padding: 5px;
    background-color: black;
    /*border-radius: 25px;*/
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 95%;
    margin-top: 20%;
    margin-bottom: 20%;
  }
  div.services {
    padding: 5px;
    background-color: black;
    /*border-radius: 25px;*/
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 95%;
    margin-top: 20%;
    margin-bottom: 30%;
  }
  div.bottom_buffer {
    position: relative;
    bottom: 0%;
    left: 25%;
    width: 50%;
    padding-top: 20%;
  }
  div.all_users {
    /*border-radius:25px;*/
    background-color: black;
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 80%;
    position: absolute;
    top: 40%;
    left: 10%;
  }
  /*Forms*/
  form.contact {
    /*border-radius:25px;*/
    background-color: black;
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 95%;
  }
  form.contact input, form textarea {
    width: 90%;
  }
  form.user {
    /*border-radius:25px;*/
    background-color: black;
    border: 2px solid;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 95%;
    position: absolute;
    top: 20%;
    left: 10%;
  }
}/*# sourceMappingURL=styles.css.map */