@charset "UTF-8";
body {
  background: #171717 url("/resources/css/images/bg-dark-grain.png") repeat scroll left top;
  color: lightgray;
  min-height: 100vh;
}
/* Gallery */
.loaded {
  opacity: 0;
  transition: .3s ease-in 1s;
}
.poster-container {
  width:250px;
  height:250px;
  overflow:hidden;
  display: block;
  padding: .5rem;
}
@media only screen and (max-width: 991px) {
  .poster-container {
    width:200px;
    height:200px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .poster-container {
    width:150px;
    height:150px;
    padding:.25rem;
    font-size: 13px;
  }
}
.poster {
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: lightgray;
}
.poster-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(31, 38, 49, 0.8);
}
#login-form-container {
  width: 300px
}
@media only screen and (max-width: 575px) {
  #login-form-container {
    width: 100%;
  }
}
/* Order Buttons */
.orderbtn:focus {
    color:#fff;
    background-color:#6c757d;
    border-color:#6c757d;
    box-shadow: none;
    outline: 0;
}
.order-btn-container {
  position: fixed;
  bottom: 0;
  right: auto;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1040;
}
/* View Page */
#vid {
  min-width: 30vw;
  max-width: 90vw;
  max-height: 70vh;
}
#view-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tag-container .btn-group-sm > .btn {
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
}
/*dark modal*/
.modal-content {
    background-color: #343a40 !important;
}
.modal-content .close {
    color:lightgray;
    text-shadow: 0 1px 0 #000;
}
.modal-header {
    border-bottom: 1px solid #454d55;
}
.modal-footer {
    border-top: 1px solid #454d55;
}
.redlink {
  color: firebrick !important;
  -webkit-transition: all 200ms ease-in;
     -moz-transition: all 200ms ease-in;
       -o-transition: all 200ms ease-in;
          transition: all 200ms ease-in;
}
.firelink {
  color: lightgray;
  -webkit-transition: all 200ms ease-in;
     -moz-transition: all 200ms ease-in;
       -o-transition: all 200ms ease-in;
          transition: all 200ms ease-in;
}
.firelink:hover {
  color: firebrick;
  -webkit-transition: all 200ms ease-in;
     -moz-transition: all 200ms ease-in;
       -o-transition: all 200ms ease-in;
          transition: all 200ms ease-in;
}