html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  height: 100%;
  /* Margin bottom by footer height */
  display: flex;
  flex-direction: column;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

a {
  text-decoration: none;
  color: #57A8FF;
}

.navbar_design {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

a:hover {
  text-decoration: none;
  color: #57A8FF;
}

.title_colors {
  color: #111B47;
}

.text_colors {
  color: #505F98;
}

.nav_color {
  color: #fff;
}

.nav_color:hover {
  color: #c2bfbf;
}

.hidden_text {
  font-size: 1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}

.search_bar_alignment {
  display: flex;
  align-items: center;
  max-width: 80%;
}

.search_bar_style {
  background-color: #423268;
  color: white;
  border-color: #211838;
  border-radius: 3px;
}

.search_bar_style:focus {
  background-color: #423268;
  color: white;
  /* Firefox */
}



.search_bar_style::placeholder {
  color: #ededed;
  opacity: 1;
  /* Firefox */
}

/* Custom Modal Styles */

/* Show/Hide Desktop vs Mobile */

.desktop_show {
  display: block;
}

.mobile_show {
  display: none;
}

@media (max-width: 768px) {

  .search_bar_style {
    background-color: #423268;
    color: white;
    border-color: #211838;
    border-radius: 3px;
    margin-right: 15px;
  }

  .desktop_show {
    display: none;
  }

  .mobile_show {
    display: flex;
  }

  .mobile_padding {
    margin-top: 30px;
  }
}

/* Sticky footer styles
-------------------------------------------------- */

.footer {
  margin-top: auto;
}

.container {
  width: auto;
  padding: 0 15px;
}

.container .text-muted {
  margin: 20px 0;
}

.sm_images {
  width: 30px;
  height: 30px;
}

.masthead {
  height: 100vh;
  min-height: 500px;
  /* background-image: url('/images/movie_background.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home_masthead {
  height: 100vh;
  min-height: 100vh;
  background-image: url('/images/movie_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header_text {
  background-color: #ffffff;
  border-radius: 10px;
  padding-top: 2%;
  padding-bottom: 5%;
  padding-left: 10%;
  padding-right: 10%;
  width: 75%;
  margin-top: 40px
}

.desc_text {
  /* margin-left: 10%;
  margin-right: 10%; */
  margin-bottom: 30px
}

.custom_heading {
  font-weight: bold;
  font-size: 60px;
}

.sub_heading {
  font-weight: bold;
  font-size: 35px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.minor_heading {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

  .custom_heading {
    font-weight: bold;
    font-size: 50px;
  }

  .sub_heading {
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .masthead {
    min-height: 100vh;
    background-image: url('/images/movie_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .home_masthead {
    min-height: 100vh;
    background-image: url('/images/movie_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .header_text {
    background-color: #ffffff;
    border-radius: 10px;
    padding-top: 0%;
    padding-bottom: 4%;
    padding-left: 0%;
    padding-right: 0%;
    width: 90%;
    margin-top: 50px;
  }

  .home_title {
    display: none;
  }

  .sidebar_collapse {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 992px) {
  .header_text {
    background-color: #ffffff;
    border-radius: 10px;
    padding-top: 0%;
    padding-bottom: 4%;
    padding-left: 0%;
    padding-right: 0%;
    width: 90%;
    margin-top: 50px;
  }
}

/* Style for footer */

.footer_style {
  /* background: rgba(231, 236, 255, .5); */
  background: #030000;
  padding-top: 20px;
}

.copy {
  margin-left: 0%;
  margin-right: 0%;
  padding: 10px;
  border-top: 1px solid #CDD1D4;
}

.footer_paragraph {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer_link {
  list-style: none;
  padding-left: 0;
}

.footer_link a {
  color: #c2bfbf;
}

.footer_link li:hover a {
  color: #646464;
}

.sm_row::after {
  content: "";
  clear: both;
  display: table;
}

.sm_column {
  float: left;
  width: 30%;
  padding: 5px;
}

.sm_images {
  width: 30px;
  height: 30px;
}

/* button style */

.custom_button {
  background-color: #423268;
  color: #ffffff;
}

.custom_button:hover {
  background-color: #505F98;
  color: #ffffff;
}

.alt_button {
  background-color: #FFD166;
  color: #505F98;
}

.alt_button:hover {
  background-color: #A178CF;
  color: #ffffff;
}

/* CSS for login form */

.login_form {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-radius: 5px;
}

.login_form img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.register_form {
  padding-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-radius: 5px;
}

/* .register_form img {
  display: block;
  margin-left: auto;
  margin-right: auto;
} */

@media screen and (max-width: 768px) {

  .login_form {
    margin-top: 5%;
  }

  .register_form {
    margin-top: 75px;
  }

  .form_row {
    padding-top: 20px;
  }

}

/* css for registration form and errors*/

.form-registration {
  /* max-width: 330px; */
  padding-top: 5px;
  margin: 0 auto;
}

.form-registration {
  display: flex;
  flex-wrap: wrap;
}

.form-registration input {
  width: 100%;
  margin: 0px 0 10px;
}

.form-registration .btn {
  flex: 1 0 100%;
}

.registration_input {
  background-color: #333333;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  border-color: #333;
}

.sub_text {
  color: #dbdbdb;
  padding-top: 0px;
  padding-bottom: 5px;
}

.my-errors {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #333;
  font-size: 1.2rem;
  display: table;
}

.my-errors li {
  margin: 0 0 1rem;
}

.my-errors li:before {
  content: "! Error : ";
  color: #f00;
  font-weight: bold;
}

.password_error {
  position: relative;
  top: 10px;
  color: #eb4034;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

.success_message {
  position: relative;
  top: 10px;
  color: green;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}


.forgot_password {
  text-align: center;
  display: block;

}

.password_error {
  position: relative;
  top: 10px;
  color: #eb4034;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}


/* Loading Spinner */

#loader_base {
  position: absolute;
  left: 50%;
  top: 1%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@media screen and (max-width: 768px) {

  #loader_base {
    top: 10%;
  }

}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }

  to {
    bottom: 0px;
    opacity: 1
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}


/*
    DEMO STYLE
*/

#sidebar a,
#sidebar a:hover,
#sidebar a:focus {
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 10px;
  background: #030000;
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.search_button {
  /* border: 1px solid #c5c5c5; */
  background-color: #423268;
  color: white
}

.search_button:hover {
  border: 1px solid #c5c5c5;
  background-color: #A178CF;
  color: white
}

.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
}

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #030000;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 1px 0 5px -2px #888
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #030000;
  border-bottom: 1px solid #423268;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #423268;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: #fff
}

#sidebar ul li a:hover {
  background: #423268;
  color: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #fff;
  background: #6d7fcc;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #6d7fcc;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: #7386D5;
}

a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  transition: all 0.3s;
}

#welcome_content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  transition: all 0.3s;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 1018px) {
  #sidebar {
    margin-left: -250px;
  }

  #sidebar.active {
    margin-left: 0;
  }

  #sidebarCollapse span {
    display: none;
  }
}


/* Movie home links styling */

.poster_image {
  max-width: 75%;
  max-height: 75%;
  border-radius: 5px;
}

.poster_box {
  background-size: cover;
  min-height: 400px;
  margin-bottom: 30px;
  border-radius: 10px;
  color: #fff
}

.poster_text {
  background-color: #111B47;
  bottom: 20px;
}

@media (max-width: 768px) {}


/* ------------------------------ */

.product {
  margin-bottom: 25px;
  transform: translate(-0%, -0.1%);
  min-height: 250px;
  max-height: 400px;
  box-shadow:
    5px 3px 200px 30px rgba(255, 255, 255, 0.2),
    2px 1px 10px 10px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  background: #0e0e0f;
  overflow: hidden
}

.product .imgbox {
  height: 100%;
  box-sizing: border-box
}

.product .imgbox img {
  display: block;
  width: 80%;
  margin: 10px auto 0
}

.specifies {
  position: absolute;
  width: 100%;
  bottom: -125px;
  background: #0e0e0f;
  padding: 10px;
  box-sizing: border-box;
  transition: .5s
}

.specifies h2 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  width: 100%
}

.specifies h2 span {
  font-size: 15px;
  color: #fff;
  font-weight: bold
}

.specifies .price {
  position: absolute;
  top: 12px;
  right: 25px;
  font-weight: bold;
  color: #000;
  font-size: 30px
}

.product label {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-size: 15px
}

.product ul {
  display: flex;
  margin: 0;
  padding: 0
}

.product ul li {
  list-style: none;
  margin: 5px 5px 0;
  font-size: 15px;
  font-style: normal;
  color: #000
}

.product ul li:first-child {
  margin-left: 0
}

.product ul.colors li {
  width: 15px;
  height: 15px
}

.product .btn {
  display: block;
  margin-top: 20px;
  padding: 5px;
  color: #fff;
  margin: 10px 0 0;
  width: 100%;
  font-size: 13px;
  border-radius: 2px
}

#product-desktop {
  display: block;
}

#product-mobile {
  display: none;
}

@media (min-width: 768px) {
  .product:hover .specifies {
    bottom: 0
  }
}

a#product-mobile {
  text-decoration: none !important;
  color: #111B47;
}

#product-mobile a:hover {
  text-decoration: none !important;
}

#product-mobile a:visited {
  text-decoration: none !important;
}

@media (max-width: 768px) {

  #product-desktop {
    display: none;
  }

  #product-mobile {
    display: block;
  }

  .product {
    margin-bottom: 25px;

    border-radius: 5px;
    background: #0e0e0f;
    box-shadow:
      5px 3px 200px 30px rgba(255, 255, 255, 0.2),
      2px 1px 10px 10px rgba(0, 0, 0, 0.4);
  }

  .specifies {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background: #0e0e0f;
    padding: 10px;
    box-sizing: border-box;
  }

  .specifies h2 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    width: 100%;
    color: #fff;
  }

  .specifies h2 span {
    font-size: 13px;
    color: #fff;
    font-weight: bold
  }
}


.profile_scroll_button {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.filter_genre_row {
  border-radius: 5px;
  padding: 10px;
  background-color: #030000;
}

/* MOVIE PAGE STYLING */

#movie-desktop {
  display: flex;
}

#movie-mobile {
  display: none;
}

.movie_header_image {
  border-radius: 10px;
  min-height: 600px;
  max-height: 60%;
  background-size: cover;
}

.movie_darken {
  border-radius: 10px;
  max-height: 60%;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.movie_figure {
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
}

.movie_figure_caption {
  padding-top: 10px;
  font-size: 20px;
  text-align: center;
}

.movie_poster_image {
  max-height: 75%;
  max-width: 75%;
}

.movie_text {
  color: #fff;
}

.movie_small_heading {
  color: #fff;
  font-weight: bold;
}

.movie_interact_container {
  /* background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/concrete-texture.png"); */
  background-color: #030000;
}

.emoji-wrapper::before {
  background-color: #030000;
}

.movie_interact_box {
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding-top: 10px
}

.rating_column {
  padding-top: 30px;
  padding-bottom: 30px;
}

.additional_options {

  background-color: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
}

.icon-background {
  color: #111B47;
}

@media (max-width: 768px) {

  #movie-desktop {
    display: none;
  }

  #movie-mobile {
    display: flex;
  }

  .movie_poster_image {
    max-height: 75%;
    max-width: 75%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .movie_interact_box {
    margin-top: 0px;
    margin-bottom: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding-top: 10px
  }

  .additional_options {

    background-color: #fff;
    width: 100%;
    padding: 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
  }


}


/* Color Variables */
/* Social Icon Mixin */
/* Social Icons */
.social-icons {
  display: flex;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.15s ease;
}

.social-icon_profile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.15s ease;
}


.social-icon:hover,
.social-icon_profile:hover {
  color: #fff;
  text-decoration: none;
}

.social-icon:hover .tooltip,
.social-icon_profile:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -150%);
}

.social-icon:active,
.social-icon_profile:active {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}

.social-icon--codepen {
  background: #111B47;
  color: #fff;
}

.social-icon--codepen .tooltip {
  background: #111B47;
  color: currentColor;
}

.social-icon--codepen .tooltip:after {
  border-top-color: #111B47;
}

.social-icon i {
  position: relative;
  top: 1px;
}

/* Tooltips */
.tooltip {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.tooltip:after {
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent;
  transform: translate(-50%, 100%);
}

/* Movie Page horizontal scrolling */

.lazy {}

.rec_movies {
  min-height: 350px;
  border-radius: 10px;
  margin-left: 5px;
  margin-right: 5px;
}

.dark_background {
  border-radius: 10px;
  min-height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.scrolling-wrapper {
  overflow-x: auto;
}

.rec_movies_hide {
  display: inline;
}

@media (max-width: 768px) {
  .rec_movies {
    min-height: 300px;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .rec_movies_hide {
    display: none;
  }
}



/* Style for animated titles */

.title_style_white {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: block;
  padding: 15px 20px;
  position: relative;
}

.title_style_white:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 20%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.title_style_white:hover:after {
  width: 20%;
  left: 40%;
}


.title_style {
  margin-left: auto;
  margin-right: auto;
  color: #111B47;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: block;
  padding: 15px 20px;
  position: relative;
}

.title_style:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 20%;
  position: absolute;
  background: #111B47;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.title_style:hover:after {
  width: 20%;
  left: 40%;
}


/* Movie Cast Styling */

/* The heart of the matter */
.testimonial-group>.row {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.testimonial-group>.row>.col-2 {
  display: inline-block;
}

/* Decorations */

.profile_photo {
  max-width: 80%;
  max-height: 80%;
  border-radius: 5px;
  margin-bottom: 20px
}

.details {
  padding-top: 10px;
}

.credit_details {
  color: #111B47;
  padding-top: 20px;
  padding-bottom: 0px;
  margin: 10px;
  border-radius: 10px;
}

#module {
  width: 100%;
}


#module #collapseExample.collapse:not(.show) {
  display: flex;
  /* height = lineheight * no of lines to display */
  height: 4.5em;
  overflow: hidden;
}

#module #collapseExample.collapsing {
  height: 4.5em;
}


/* Search Results page styling */

.img_poster {
  min-width: 94px;
  width: 94px;
  height: 141px;
  margin-right: 5px;
}

.search_text {
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  color: #fff
}

a#search_link {
  text-decoration: none !important;
  color: #111B47;
}

.search_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.search_poster {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}


.search_box {
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  display: flex;
  box-shadow:
    5px 3px 200px 30px rgba(255, 255, 255, 0.2), 2px 1px 10px 10px rgba(0, 0, 0, 0.4)
}

.no_results {
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
}


/* Welcome Page */

.welcome_message {
  padding: 50px;
  border-radius: 5px;
}

.welcome_icon {
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.welcome_list {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 400px
}

.movie_item:hover {
  background: rgba(141, 141, 141, 0.6);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: pointer;
}

.movie_select {
  background: rgba(66, 66, 66, 0.6);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  cursor: pointer;
}

.inspire_poster {
  max-width: 100%;
  border-radius: 5px;
  padding-bottom: 10px;
}

.poster_container:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -150%);
}

.poster_container:active {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}

.poster_container {
  color: #fff;
}

.poster_container .tooltip {
  background: #111B47;
  color: currentColor;
}

.poster_container .tooltip:after {
  border-top-color: #111B47;
}

@media (max-width: 768px) {

  .welcome_message {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
  }

  .movie_prompt_text {
    display: None;
  }

}


/* About page style */

.white_text {
  color: #fff
}

.parallax {
  /* The image used */

  /* Set a specific height */


  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {

  .mobile_padding {
    padding-bottom: 20px;
  }

}

/* Contact form */

.c_form_inputs {
  margin-top: 10px;
  background-color: #161122;
  color: white;
  border-color: #211838;
  border-radius: 3px;
}

.c_form_inputs:focus {
  background-color: #161122;
  /* Firefox */
}



.c_form_inputs::placeholder {
  color: #ededed;
  opacity: 1;
  /* Firefox */
}

.row_style {
  height: 100%;
  margin-top: 0%
}

.contact_button {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .row_style {
    height: 80%;
    margin-top: 8%;
  }
}


/* Watchlist Styling */

#watchlist-desktop {
  display: '';
}

#watchlist-mobile {
  display: none;
}

.watchlist_card {
  background-color: #030000;
  box-shadow:
    5px 3px 200px 30px rgba(255, 255, 255, 0.2),
    2px 1px 10px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1px solid #333;
}


@media (max-width: 768px) {

  #watchlist-desktop {
    display: none;
  }

  #watchlist-mobile {
    display: block;
  }

  .watchlist_header_image {
    border-radius: 10px;
    max-height: 60%;
    background-size: cover;
    padding: 0px;
  }

  .watchlist_box {
    border-radius: 5px;
    margin: 10px;
    margin-left: 0px;
    padding: 20px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  }

}

/* Custom styles for watchlist dropdown */

.dropdown-item {
  padding-left: 2.5rem;
}