body, html {
  height: 100%;
}

.logo {
    font-family: "TASA Orbiter", sans-serif;
    font-size: 70px;
}

.tasa-font {
  font-family: "TASA Orbiter", sans-serif;
}

.title {
    text-align: center;
}

.bg-image {
    background-image: url('/static/img/home-bg.png');
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 100%; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */

    filter: blur(6px);
    -webkit-filter: blur(6px);
}

/* Btns */
.btn-primary {
  background: linear-gradient(#fa2626, #e66465);
  border-width: 0px !important;
  border-color: #f7eded !important;
  border-top-width: .08rem !important;
  border-bottom-color: #e09d9d !important;
  border-bottom-width: .01rem !important;
  font-family: "TASA Orbiter", sans-serif !important;
  transition: 0.3s !important;
}

.btn-primary:hover {
  background: linear-gradient(#fa2626, #f30f0f);
  box-shadow: 0px 0px 33px 5px rgba(250,38,38,0.25) !important;
}

.submit_button {
    margin-left: 10px;
}

.search_field {
    appearance: menulist-button;
    background-image: none !important;
    background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: fieldtext !important;
}

/* Glass related */
.glass {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
  color: fieldtext !important;
}

.dark-glass {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(41, 38, 38, 0.486)) !important;
  color: fieldtext !important;
}

.dark-strong-glass {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(41, 38, 38, 0.801)) !important;
  color: fieldtext !important;
  transition: 0.3s;
}

.glass-card {
  border-width: 0px !important;
  border-color: var(--bs-border-color-translucent) !important;
  border-top-width: 1px !important;
  border-bottom-width: 1px !important;
  border-left-color: #42424249 !important;
  border-left-width: 1px !important;
  border-right-color: #42424249 !important;
  border-right-width: 1px !important;
}

.dark-strong-glass:hover {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(126, 70, 70, 0.4)) !important;
  color: fieldtext !important;
}

.black-glass {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(32, 30, 30, 0.74)) !important;
  color: fieldtext !important;
  transition: 0.3s;
}

.glass-warning {
  appearance: menulist-button;
  background-image: none !important;
  background-color: light-dark(rgb(232, 240, 254), rgba(126, 107, 70, 0.4)) !important;
  color: fieldtext !important;
}

.form-control:focus {
        border-color: #ffffff57 !important;
        box-shadow: 0 0 0 0 !important;
}

.glass-border {
  border-color: var(--bs-border-color-translucent) !important;
  border-top-width: 1px !important;
  border-bottom-width: 1px !important;
  border-left-color: #42424249 !important;
  border-left-width: 1px !important;
  border-right-color: #42424249 !important;
  border-right-width: 1px !important;
}

.search-container {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .search-container {
    margin-left: 10%;
    margin-right: 10%;
 }
}

.search-result-text {
    padding-left: 5px;
    padding-top: 10px;
}

ul.movie-results {
  list-style: none;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


li.movie-results {
  flex: 0 0 calc(50% - 10px);
  background: #f0f0f0;
  text-align: center;
  padding: 10px;
}

/* Small screens: 2 per row */
@media (min-width: 600px) {
  li.movie-results {
    flex: 0 0 calc(33.333% - 10px);
  }
}

/* Medium screens: 4 per row */
@media (min-width: 992px) {
  li.movie-results {
    flex: 0 0 calc(25% - 10px);
  }
}

/* Large screens: 5 per row */
@media (min-width: 1200px) {
  li.movie-results {
    flex: 0 0 calc(20% - 10px);
  }
}

/* Extra large: 6 per row */
@media (min-width: 1600px) {
  li.movie-results {
    flex: 0 0 calc(16.666% - 10px);
  }
}

.search-body {
    background-image: url(/static/img/bg.jpg); /* https://i.ibb.co/4032XpT/image-6.png */
    background-position: center; /* Center the image */
    background-repeat: repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.footer-text {
    text-align: center;
}

.movie-title {
    text-align: center;
    margin-top: 10px;
}

.popup-warning {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 1%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .popup-warning {
    margin-left: 10%;
    margin-right: 10%;
 }
}

/* Movie page bg image */
.movie-content {
  background-image: url(/static/img/bg.jpg);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

.movie-container {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 1%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .movie-container {
    margin-left: 10%;
    margin-right: 10%;
 }
}

/* Extra large: 6 per row */
/* @media (min-width: 1600px) {
  iframe {
    width: 90%;
    height: 800px;
  }
} */

/* Large screens: 5 per row */
/* @media (min-width: 1200px) {
  iframe {
    width: 80%;
    height: 600px;
  }
} */

.movie-info {
    margin-top: 2%;
    margin-bottom: 2%;
}

.movie-info-titles {
  color: #fff;
  font-family: "TASA Orbiter", sans-serif;
  
}

.no-effect {
  text-decoration: none;
  color: inherit
}

.logo-img {
  max-width: 420px !important;
}

@media screen and (max-width: 850px) {
  .logo-img {
    width: 100% !important;
  }
}

@media screen and (max-width: 550px) {
  .logo-img {
    width: 300px !important;
  }
}

ul.default-list {
  list-style: disc;
  padding: 0px 0px 0px 20px !important;
  text-align: left;
  display: block;
}

.default-list > li {
  background-color: transparent;
  padding: 0px !important;
  text-align: left;
}

.form-check-input:checked {
  background-color: #9f484899 !important;
  border-color: #9f4848 !important;
  box-shadow: none;
}

.form-check-input:focus {
  box-shadow: none !important;
}

button:focus {
  outline-width: 0px !important;
  border-width: 0px;
}

button:focus:not {
  outline-width: 0px !important;
  border-width: 0px;
}

button {
  outline-width: 0px !important;
  border-width: 0px;
}

.video-container {
    position: relative;
     width: 100%;
     height: 0;
     padding-bottom: 56.25%;
     max-width: 750px;
 }
 .video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

.box-glass-border {
  border-color: var(--bs-border-color-translucent) !important;
  border-top: 1px solid !important;
  border-bottom: 1px solid !important;
  border-left-color: #42424249 !important;
  border-left: 1px solid !important;
  border-right-color: #42424249 !important;
  border-right: 1px solid !important;
}

/* Select server buttons */
.server-btn {
  padding: 8px 15px 8px 15px;
}

.selected-server {
  background: linear-gradient(#fa2626, #e66465) !important;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 33px 5px rgba(250,38,38,0.25) !important;
}