.mm_scroll, #dash_body_cont div#page_body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important; }
  .mm_scroll::-webkit-scrollbar, #dash_body_cont div#page_body::-webkit-scrollbar {
    width: 8px;
    height: 8px; }
  .mm_scroll::-webkit-scrollbar-button, #dash_body_cont div#page_body::-webkit-scrollbar-button {
    width: 0px;
    height: 0px; }
  .mm_scroll::-webkit-scrollbar-thumb, #dash_body_cont div#page_body::-webkit-scrollbar-thumb {
    background: #f00c5e;
    background: linear-gradient(165deg, #f00c5e 0%, #f00c5e 64%);
    border: 0px none rgba(255, 255, 255, 0);
    border-radius: 0px; }
  .mm_scroll::-webkit-scrollbar-thumb:hover, #dash_body_cont div#page_body::-webkit-scrollbar-thumb:hover {
    background: #f00c5e;
    background: linear-gradient(90deg, #f00c5e 0%, #f00c5e 64%); }
  .mm_scroll::-webkit-scrollbar-thumb:active, #dash_body_cont div#page_body::-webkit-scrollbar-thumb:active {
    background: #f00c5e;
    background: linear-gradient(90deg, #f00c5e 0%, #f00c5e 64%); }
  .mm_scroll::-webkit-scrollbar-track, #dash_body_cont div#page_body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    border: 0px none rgba(255, 255, 255, 0);
    border-radius: 0px; }
  .mm_scroll::-webkit-scrollbar-track:hover, #dash_body_cont div#page_body::-webkit-scrollbar-track:hover {
    background: rgba(255, 255, 255, 0); }
  .mm_scroll::-webkit-scrollbar-track:active, #dash_body_cont div#page_body::-webkit-scrollbar-track:active {
    background: rgba(255, 255, 255, 0); }
  .mm_scroll::-webkit-scrollbar-corner, #dash_body_cont div#page_body::-webkit-scrollbar-corner {
    background: transparent; }

.mm_scroll_horizontal {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important; }
  .mm_scroll_horizontal::-webkit-scrollbar {
    width: 8px;
    height: 8px; }
  .mm_scroll_horizontal::-webkit-scrollbar-button {
    width: 0px;
    height: 0px; }
  .mm_scroll_horizontal::-webkit-scrollbar-thumb {
    background: #f00c5e;
    background: linear-gradient(165deg, #f00c5e 0%, #f00c5e 64%);
    border: 0px none rgba(255, 255, 255, 0);
    border-radius: 0px; }
  .mm_scroll_horizontal::-webkit-scrollbar-thumb:hover {
    background: #f00c5e;
    background: linear-gradient(90deg, #f00c5e 0%, #f00c5e 64%); }
  .mm_scroll_horizontal::-webkit-scrollbar-thumb:active {
    background: #f00c5e;
    background: linear-gradient(90deg, #f00c5e 0%, #f00c5e 64%); }
  .mm_scroll_horizontal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    border: 0px none rgba(255, 255, 255, 0);
    border-radius: 0px; }
  .mm_scroll_horizontal::-webkit-scrollbar-track:hover {
    background: rgba(255, 255, 255, 0); }
  .mm_scroll_horizontal::-webkit-scrollbar-track:active {
    background: rgba(255, 255, 255, 0); }
  .mm_scroll_horizontal::-webkit-scrollbar-corner {
    background: transparent; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0rem;
  overflow: hidden;
  height: 100vh;
  background: #191b1d;
  color: white; }

ul {
  padding: 0;
  margin: 0; }
  ul li {
    list-style: none; }

#dash_popup {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; }

ul.omdb_search_results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: calc(24px/2); }
  ul.omdb_search_results li button {
    background: none;
    border: none;
    border-radius: 0; }

#dash_body_cont {
  width: 100vw;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: calc(24px*2) 1fr;
  grid-template-areas: "header" "body"; }
  #dash_body_cont nav#dash_navigation {
    grid-area: header;
    background: #1e1f23; }
    #dash_body_cont nav#dash_navigation ul li {
      display: inline-block; }
  #dash_body_cont div#page_body {
    grid-area: body;
    height: 100%; }

div#my_movies ul.movies_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: calc(24px/2);
  padding: 24px; }
  div#my_movies ul.movies_list li {
    height: 250px; }
    div#my_movies ul.movies_list li img {
      display: block;
      height: 100%;
      width: 100%;
      object-fit: cover;
      margin: auto;
      border-radius: calc(24px/3); }

/*# sourceMappingURL=styles.css.map */
