@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap");
:root {
  --color-first: #c21c1c;
  --color-border: #dfe0e0;
  --color-alert: #ff3c32; }

:root {
  --z-doubleback: -20;
  --z-back: -10;
  --z-middleback: -5;
  --z-normal: 1;
  --z-positivenormal: 5;
  --z-tooltip: 10;
  --z-doubletooltip: 20;
  --z-fixed: 100;
  --z-modal: 1000; }

header {
  width: 100%;
  height: 8rem;
  background: #c21c1c;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media screen and (max-width: 400px) {
    header {
      height: 7rem; } }

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8rem; }
  @media screen and (max-width: 640px) {
    .logo-container {
      margin-left: 2rem; } }

.logo {
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 4rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); }
  @media screen and (max-width: 770px) {
    .logo {
      font-size: 3rem; } }
  @media screen and (max-width: 400px) {
    .logo {
      font-size: 2rem; } }

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8rem; }
  @media screen and (max-width: 640px) {
    .navigation {
      margin-right: 2rem; } }

.item-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 30rem; }
  @media screen and (max-width: 770px) {
    .item-container {
      width: 20rem; } }
  @media screen and (max-width: 640px) {
    .item-container {
      position: fixed;
      height: 100vh;
      width: 100vw;
      background: #c21c1c;
      top: -100vh;
      left: 0;
      flex-direction: column;
      justify-content: flex-start;
      padding: 3rem;
      transition: top 0.3s; } }

.show-mobile-menu {
  top: 0; }

.navigation-item {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  height: 4rem;
  width: 12rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  .navigation-item :hover {
    color: #f0f0f0;
    text-decoration: underline; }
  @media screen and (max-width: 770px) {
    .navigation-item {
      font-size: 1.75rem;
      height: 3rem;
      width: 12rem; } }
  @media screen and (max-width: 640px) {
    .navigation-item {
      margin-bottom: 2rem;
      font-size: 2rem; } }

.hidden-item {
  display: none; }
  @media screen and (max-width: 640px) {
    .hidden-item {
      display: flex; } }

.menu {
  display: none; }
  @media screen and (max-width: 640px) {
    .menu {
      display: flex; } }

.menu-icon {
  height: 4rem;
  width: 4rem; }
  @media screen and (max-width: 400px) {
    .menu-icon {
      height: 3rem;
      width: 3rem; } }

.close-item {
  position: absolute;
  top: 3rem;
  left: 3rem; }

.close-icon {
  height: 2rem;
  width: 2rem; }

main {
  background: #0a1016;
  width: 100%; }

.searcher-container {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem; }
  @media screen and (max-width: 640px) {
    .searcher-container {
      height: 6rem; } }

.searcher-input {
  height: 6rem;
  width: 60%;
  font-size: 3rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 1rem;
  background-color: #2c2c2c;
  border: #f0f0f0 1px solid;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  color: #f0f0f0;
  outline: none; }
  .searcher-input:focus {
    border: #f0f0f0 2px solid;
    /*     .searcher-btn {
      border: $color-white 2px solid;
    } */ }
  @media screen and (max-width: 640px) {
    .searcher-input {
      height: 4rem;
      width: 70%;
      font-size: 2rem; } }
  @media screen and (max-width: 400px) {
    .searcher-input {
      font-size: 1.75rem; } }

.searcher-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c21c1c;
  height: 6rem;
  width: 6rem;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border: #f0f0f0 1px solid;
  outline: none;
  cursor: pointer; }
  .searcher-btn:hover {
    background-color: #f0f0f0; }
  @media screen and (max-width: 640px) {
    .searcher-btn {
      height: 4rem;
      width: 4rem; } }

.searcher-icon {
  height: 2rem;
  width: 2rem; }
  @media screen and (max-width: 640px) {
    .searcher-icon {
      height: 1.5rem;
      width: 1.5rem; } }

.no-results-container {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 640px) {
    .no-results-container {
      height: 6rem; } }

.load-more-container {
  width: 100%;
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 640px) {
    .load-more-container {
      height: 8rem; } }

.billboard-title-container {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 640px) {
    .billboard-title-container {
      height: 6rem; } }

.billboard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; }

footer {
  width: 100%;
  height: 20rem;
  background: #2c2c2c;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.movie-container {
  padding: 5rem 10rem 5rem 10rem;
  display: flex;
  width: 100%; }
  @media screen and (max-width: 1024px) {
    .movie-container {
      flex-wrap: wrap;
      display: flex;
      justify-content: center; } }
  @media screen and (max-width: 770px) {
    .movie-container {
      padding: 5rem 5rem 5rem 5rem; } }
  @media screen and (max-width: 640px) {
    .movie-container {
      padding: 3rem 3rem 3rem 3rem; } }
  @media screen and (max-width: 640px) {
    .movie-container {
      padding: 3rem 2rem 0rem 2rem; } }

.movie-poster-container {
  width: 30%; }
  @media screen and (max-width: 1024px) {
    .movie-poster-container {
      height: 30rem;
      width: 20rem; } }

.movie-poster {
  height: 100%;
  width: 100%;
  object-fit: cover; }

.movie-info-container {
  padding: 3rem;
  width: 70%; }
  @media screen and (max-width: 1024px) {
    .movie-info-container {
      width: 100%; } }

@media screen and (max-width: 1024px) {
  .movie-title-container {
    width: 100%;
    display: flex;
    justify-content: center; } }

.movie-title {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  margin-bottom: 2rem; }
  @media screen and (max-width: 1024px) {
    .movie-title {
      font-size: 4rem;
      margin-bottom: 1.5rem; } }
  @media screen and (max-width: 640px) {
    .movie-title {
      font-size: 3rem; } }

.movie-buttons-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem; }
  @media screen and (max-width: 1024px) {
    .movie-buttons-container {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      .movie-buttons-container > .middle-button {
        width: 100%;
        margin-bottom: 1.5rem; } }

.movie-data-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem; }

.movie-data {
  color: #f0f0f0;
  margin-right: 2rem;
  font-size: 1.5rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif; }
  @media screen and (max-width: 640px) {
    .movie-data {
      font-size: 1.25rem; } }

.movie-description-title {
  width: 100%;
  font-size: 2rem;
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem; }
  @media screen and (max-width: 640px) {
    .movie-description-title {
      font-size: 1.5rem; } }

.movie-description-container {
  width: 100%;
  font-size: 1.5rem;
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif; }
  @media screen and (max-width: 640px) {
    .movie-description-container {
      font-size: 1.25rem; } }

.my-user-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 30rem; }

.my-user-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50rem; }
  @media screen and (max-width: 640px) {
    .my-user-container {
      width: 90%; } }

.my-user-container > * {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem; }
  @media screen and (max-width: 640px) {
    .my-user-container > * {
      height: auto; } }

.my-user-title-container {
  display: flex;
  justify-content: center;
  align-items: center; }

.my-user-title {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  margin: 4rem 0 2rem 0; }
  @media screen and (max-width: 400px) {
    .my-user-title {
      font-size: 3rem; } }

.my-user-inputs-container {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 640px) {
    .my-user-inputs-container {
      flex-wrap: wrap; } }

.my-user-name-container {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 1rem 0; }
  @media screen and (max-width: 640px) {
    .my-user-name-container {
      width: 100%; } }

.my-user-save-changes-container {
  padding-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; }
  @media screen and (max-width: 640px) {
    .my-user-save-changes-container {
      padding-bottom: 2rem; } }

.my-user-buttons-container {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 640px) {
    .my-user-buttons-container {
      flex-wrap: wrap;
      justify-content: center; } }

.my-user-buttons-container > button {
  width: 20rem; }
  @media screen and (max-width: 640px) {
    .my-user-buttons-container > button {
      margin: 1rem; } }

.my-user-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding-top: 1rem; }

.my-user-info-container > p {
  height: 3rem;
  font-size: 2rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 0.5rem;
  color: #f0f0f0; }
  @media screen and (max-width: 400px) {
    .my-user-info-container > p {
      font-size: 1.5rem; } }

.info-title {
  font-weight: 700; }

.login-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20rem;
  min-height: 70vh; }

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50rem; }
  @media screen and (max-width: 640px) {
    .login-container {
      width: 90%; } }

.login-container > * {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem; }
  @media screen and (max-width: 640px) {
    .login-container > * {
      height: auto; } }

.login-title-container {
  display: flex;
  justify-content: center;
  align-items: center; }

.login-title {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  margin: 4rem 0 2rem 0; }
  @media screen and (max-width: 400px) {
    .login-title {
      font-size: 3rem; } }

.login-inputs-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.login-name-container {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 1rem 0;
  width: 100%; }

.login-container > * {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto; }

.forgot-container {
  padding-left: 1rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; }
  @media screen and (max-width: 640px) {
    .forgot-container {
      padding-bottom: 2rem; } }

.forgot {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  text-decoration: underline;
  cursor: pointer; }
  @media screen and (max-width: 640px) {
    .forgot {
      font-size: 1.5rem; } }
  @media screen and (max-width: 400px) {
    .forgot {
      font-size: 1.25rem; } }

.login-buttons-container {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 640px) {
    .login-buttons-container {
      flex-wrap: wrap;
      justify-content: center; } }

.login-buttons-container > button {
  width: 20rem; }
  @media screen and (max-width: 640px) {
    .login-buttons-container > button {
      margin: 1rem; } }

.login-info-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem; }

.login-social-title-container {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  padding: 2rem; }
  @media screen and (max-width: 640px) {
    .login-social-title-container {
      font-size: 1.75rem;
      text-align: center; } }

.login-social-container {
  display: flex; }

.social-container {
  width: 7.5rem;
  height: 7.5rem;
  margin: 1.5rem; }
  @media screen and (max-width: 640px) {
    .social-container {
      width: 5.5rem;
      height: 5.5rem;
      margin: 1.25rem; } }
  @media screen and (max-width: 400px) {
    .social-container {
      width: 4.5rem;
      height: 4.5rem;
      margin: 1rem; } }

.social-icon {
  height: 100%;
  width: 100%; }

.social-container {
  outline: none;
  border: 0px;
  margin: 0 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff0;
  line-height: 80px !important;
  text-align: center;
  color: snow;
  font-size: 40px !important;
  box-shadow: 1px 1px 1px -1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease; }
  .social-container:hover {
    opacity: 1; }
  @media screen and (max-width: 640px) {
    .social-container {
      margin: 0 10px;
      width: 60px;
      height: 60px;
      line-height: 60px !important;
      font-size: 30px !important; } }
  @media screen and (max-width: 400px) {
    .social-container {
      margin: 0 10px;
      width: 50px;
      height: 50px;
      line-height: 50px !important;
      font-size: 25px !important; } }

.social-container:before {
  position: relative;
  z-index: 1; }

.social-container:nth-of-type(1) {
  background: #ea4335; }

.social-container:nth-of-type(2) {
  background: #4867aa; }

.after-span {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.75s ease-in; }

/* .social-container:hover {
} */
.social-container:hover .after-span.ripple {
  transform: scale(1);
  transition: transform 1s ease-out; }

.verification-message-container {
  display: flex;
  justify-content: center;
  align-items: center; }

.verification-message-container > p {
  color: #f0f0f0;
  font-style: italic;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  margin: 0 0 1rem 0; }
  @media screen and (max-width: 640px) {
    .verification-message-container > p {
      font-size: 1.5rem; } }
  @media screen and (max-width: 400px) {
    .verification-message-container > p {
      font-size: 1.4rem; } }

.my-lists-main {
  display: flex;
  align-items: center;
  justify-content: center; }

.my-lists-container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 0 10rem 0; }
  @media screen and (max-width: 770px) {
    .my-lists-container {
      width: 80%; } }
  @media screen and (max-width: 400px) {
    .my-lists-container {
      width: 85%; } }

.my-lists-info-container {
  width: 100%;
  height: 60rem;
  background-color: #dedede;
  border-radius: 15px;
  padding: 3rem;
  overflow: auto; }

.my-lists-title-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem; }

.my-lists-title-container > .middle-button {
  width: 20rem; }
  @media screen and (max-width: 770px) {
    .my-lists-title-container > .middle-button {
      width: auto; } }

.my-lists-title-container > .login-title {
  margin: 0; }

.list-select {
  width: 100%;
  height: 6rem;
  margin: 0.75rem;
  background: #c4c4c4;
  border-radius: 15px;
  outline: none;
  border: 1px solid #000000;
  cursor: pointer; }
  .list-select:hover {
    background: #f0f0f0; }
  @media screen and (max-width: 640px) {
    .list-select {
      height: 4rem; } }

.list-select > p {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 2.5rem;
  margin: 0 2rem 0 2rem;
  font-weight: 700; }
  @media screen and (max-width: 770px) {
    .list-select > p {
      font-size: 2rem; } }
  @media screen and (max-width: 640px) {
    .list-select > p {
      font-size: 1.5rem; } }
  @media screen and (max-width: 400px) {
    .list-select > p {
      font-size: 1.25rem; } }

.list-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 400px) {
    .list-buttons-container {
      flex-wrap: wrap; } }

.list-buttons-container > button {
  margin: 2rem; }
  @media screen and (max-width: 400px) {
    .list-buttons-container > button {
      width: 15rem;
      margin: 1rem; } }

.big-button-only-info {
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c21c1c;
  border-radius: 15px;
  outline: none;
  border: 0px;
  /*   @include mq(400) {
    font-size: 1.75rem;
  } */ }
  @media screen and (max-width: 640px) {
    .big-button-only-info {
      height: 4rem; } }

.big-button-only-info > p {
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 2rem;
  margin: 0 2rem 0 2rem; }
  @media screen and (max-width: 640px) {
    .big-button-only-info > p {
      font-size: 2rem; } }
  @media screen and (max-width: 400px) {
    .big-button-only-info > p {
      font-size: 1.75rem; } }

.big-button {
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c21c1c;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  border: 0px;
  /*   @include mq(400) {
    font-size: 1.75rem;
  } */ }
  .big-button:hover {
    background-color: #f0f0f0; }
  @media screen and (max-width: 640px) {
    .big-button {
      height: 4rem; } }

.big-button > p {
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 2rem;
  margin: 0 2rem 0 2rem; }
  @media screen and (max-width: 640px) {
    .big-button > p {
      font-size: 2rem; } }
  @media screen and (max-width: 400px) {
    .big-button > p {
      font-size: 1.75rem; } }

.middle-button {
  height: 4.5rem;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c21c1c;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  border: 0px;
  /*   @include mq(400) {
    font-size: 1.75rem;
  } */ }
  .middle-button:hover {
    background-color: #f0f0f0; }
  @media screen and (max-width: 640px) {
    .middle-button {
      height: 3rem; } }

.middle-button > p {
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 1.75rem;
  margin: 0 2rem 0 2rem; }
  @media screen and (max-width: 640px) {
    .middle-button > p {
      font-size: 1.5rem; } }
  @media screen and (max-width: 400px) {
    .middle-button > p {
      font-size: 1.25rem; } }

.little-button {
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c21c1c;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  border: 0px; }
  .little-button:hover {
    background-color: #f0f0f0; }

.little-button > p {
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 1.75rem;
  margin: 0 2rem 0 2rem; }
  @media screen and (max-width: 400px) {
    .little-button > p {
      font-size: 1.25rem; } }

.white-button {
  background-color: #2c2c2c;
  border: 1px solid #f0f0f0; }
  .white-button:hover {
    background-color: #c21c1c; }

.white-button > p {
  color: #f0f0f0; }

.movie {
  margin: 2rem;
  width: 15.6rem; }
  @media screen and (max-width: 640px) {
    .movie {
      margin: 1rem;
      width: 10.3rem; } }
  @media screen and (max-width: 640px) {
    .movie {
      margin-left: 0.5rem;
      margin-right: 0.5rem; } }
  .movie:hover .poster-container {
    border: 2px solid red; }
  .movie:hover .movie-text {
    color: #f0f0f0; }

.poster-container {
  height: 23.6rem;
  width: 15.6rem;
  margin-bottom: 0.75rem;
  cursor: pointer; }
  @media screen and (max-width: 640px) {
    .poster-container {
      height: 15.58rem;
      width: 10.3rem;
      margin-bottom: 0.75rem; } }

.poster-image {
  height: 100%;
  width: 100%;
  object-fit: cover; }

.movie-text-container {
  display: flex;
  height: 5rem;
  padding: 0.3rem; }
  @media screen and (max-width: 640px) {
    .movie-text-container {
      height: 3rem; } }

.movie-text {
  color: #d6d6d6;
  font-size: 1.5rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  cursor: pointer; }
  @media screen and (max-width: 640px) {
    .movie-text {
      font-size: 1rem; } }

.modal-container {
  background: radial-gradient(50% 50% at 50% 50%, #c4c4c4 0%, rgba(0, 0, 0, 0.833333) 0.01%, rgba(0, 0, 0, 0.92) 100%);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center; }

.big-modal {
  width: 50%;
  height: 80%;
  background: #0a1016;
  border-radius: 15px;
  border: 1px solid #f0f0f0; }
  @media screen and (max-width: 1024px) {
    .big-modal {
      width: 90%; } }

.modal-searcher-container {
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem; }

.modal-searcher-input {
  height: 4rem;
  width: 80%;
  font-size: 2rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 1rem;
  background-color: #2c2c2c;
  border: #f0f0f0 1px solid;
  border-radius: 15px;
  color: #f0f0f0;
  outline: none;
  /*   @include mq(640) {
    height: 4rem;
    width: 70%;
    font-size: 2rem;
  }
  @include mq(400) {
    font-size: 1.75rem;
  } */ }
  .modal-searcher-input:focus {
    border: #f0f0f0 2px solid;
    /*     .searcher-btn {
        border: $color-white 2px solid;
      } */ }

.modal-list-results {
  width: 100%;
  height: 85%;
  padding: 2rem 7rem 1rem 7rem;
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  overflow: auto; }
  @media screen and (max-width: 640px) {
    .modal-list-results {
      font-size: 1.5rem;
      padding: 2rem 4rem 1rem 4rem; } }
  @media screen and (max-width: 400px) {
    .modal-list-results {
      font-size: 1.5rem;
      padding: 2rem 2rem 1rem 2rem; } }

.modal-list-results > * {
  margin-bottom: 2rem; }

.checkbox {
  margin-right: 2rem; }

.little-modal {
  width: 50%;
  height: 45%;
  background: #0a1016;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; }
  @media screen and (max-width: 1024px) {
    .little-modal {
      width: 90%; } }

.little-modal-inside-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  height: 100%; }

.little-modal-inside-container > * {
  width: 100%; }

.title-little-modal {
  color: #f0f0f0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  margin: 4rem 0 2rem 0; }
  @media screen and (max-width: 640px) {
    .title-little-modal {
      font-size: 3rem; } }
  @media screen and (max-width: 400px) {
    .title-little-modal {
      font-size: 2rem; } }

.input-little-modal-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem; }

.btn-little-modal-container {
  display: flex;
  justify-content: center; }

.btn-little-modal-container > button {
  width: 15rem; }

.input-big-half {
  height: 4rem;
  font-size: 2rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 1rem;
  background-color: #2c2c2c;
  border: #f0f0f0 1px solid;
  border-radius: 15px;
  color: #f0f0f0;
  outline: none; }
  .input-big-half:focus {
    border: #f0f0f0 2px solid; }
  @media screen and (max-width: 400px) {
    .input-big-half {
      font-size: 1.5rem; } }

.input-label {
  height: 3rem;
  font-size: 2rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  padding: 0.5rem;
  color: #f0f0f0;
  margin-bottom: 0.5rem; }
  @media screen and (max-width: 400px) {
    .input-label {
      font-size: 1.5rem; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 10px; }

ul,
li {
  list-style: none; }

a {
  text-decoration: none;
  color: black; }

h4 {
  text-align: center;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  color: #c21c1c;
  font-family: "Racing Sans One", Arial, Helvetica, sans-serif;
  font-size: 3rem; }
  @media screen and (max-width: 640px) {
    h4 {
      font-size: 2rem; } }

.no-show {
  display: none; }

.show-flex {
  display: flex; }

.justify-flex-start {
  justify-content: flex-start;
  padding-left: 5rem; }

.center {
  display: flex;
  align-items: center;
  justify-content: center; }

.padding-10 {
  padding: 2rem; }

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
  font-size: 1.5rem; }

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s; }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 30px;
    opacity: 1; } }

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 30px;
    opacity: 1; } }

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

.loaderContainer {
  width: 100%;
  height: 400px;
  padding-top: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden; }

.loader {
  width: 75px;
  height: 75px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #c21c1c;
  border-right: 4px solid transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.background-color-main {
  background: #c21c1c; }

.unchecked {
  background: transparent;
  border: 1.5px solid #f0f0f0; }
  .unchecked:hover {
    background-color: #c21c1c;
    border: 1.5px transparent solid; }

.unchecked > p {
  color: #f0f0f0; }

.unchecked:hover > p {
  color: black; }

.unchecked-custom {
  background: transparent;
  border: 1.5px solid #f0f0f0; }
  .unchecked-custom:hover {
    background-color: #c21c1c;
    border: 1.5px transparent solid; }

.unchecked-custom > p {
  color: #f0f0f0; }

.unchecked-custom:hover > p {
  color: black; }

.checked {
  background-color: #c21c1c;
  border: 1.5px transparent solid; }
  .checked:hover {
    background: transparent;
    border: 1.5px solid #f0f0f0; }

.checked > p {
  color: black; }

.checked:hover > p {
  color: #f0f0f0; }

.checked-custom {
  background-color: #c21c1c;
  border: 1.5px transparent solid; }
  .checked-custom:hover {
    background: transparent;
    border: 1.5px solid #f0f0f0; }

.checked-custom > p {
  color: black; }

.checked-custom:hover > p {
  color: #f0f0f0; }

.min-height-main {
  min-height: 70vh; }

.margin-1rem {
  margin: 1rem; }
