﻿@charset "UTF-8";
@media (max-width: 767px) {
  .pay-radio-row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .pay-radio-row > div {
    padding: 0 5px;
  }
}

.jconfirm .jconfirm-box {
  color: white;
  background-color: #020d18 !important;
  padding: 10px 15px;
  border: 2px solid #0f2133 !important;
  border-radius: 5px;
}
.jconfirm .your-seat h6 {
  margin-bottom: 8px;
}
.jconfirm .your-seat ul li {
  display: inline-block;
  padding: 1px 6px;
  color: white;
  border-radius: 4px;
  border: 1px solid white;
  font-size: small;
  line-height: 20px;
  height: 20px;
  margin-right: 5px;
}

.seat-qty {
  margin-bottom: 15px;
}
.seat-qty .form-wrapper {
  background-color: #020d18;
  padding: 15px 15px 10px;
  border: 2px solid #0f2133;
  border-radius: 5px;
}
.seat-qty .form-wrapper .qty {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.seat-qty .form-wrapper .qty h4 {
  color: white;
}
.seat-qty .form-wrapper .qty label {
  position: relative;
}
.seat-qty .form-wrapper .qty label:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  pointer-events: none;
}
.seat-qty .form-wrapper .qty label select {
  height: auto;
  background: transparent;
  border: 2px solid white;
  border-radius: 5px !important;
  color: white;
  padding: 4px 20px 5px 6px;
  min-width: 46px;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 0.15s;
}
.seat-qty .form-wrapper .qty label select option {
  color: black;
  background-color: white;
}
.seat-qty .form-wrapper .qty .call-load-function {
  margin-left: 5px;
  background-color: #dd003f;
  border: none;
  outline: none;
}

.summary-box {
  padding: 15px;
  border-radius: 5px;
  border: 3px solid #0f2133;
  background-color: #0b1a2a;
  color: white;
}
.summary-box h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
.summary-box h2 small {
  display: block;
  color: white;
  margin-top: 5px;
}
.summary-box table {
  border: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}
.summary-box table tr:last-child td {
  padding-bottom: 0px;
}
.summary-box table tr:first-child td {
  padding-top: 0px;
}
.summary-box table tr td {
  padding: 5px 0;
  border: none;
}
.summary-box table tr td:last-child {
  text-align: right;
  width: 90px;
}
.summary-box table tr td .remove-btn {
  font-size: small;
  border-radius: 2px;
  color: white;
  padding: 2px 6px;
  margin-left: 5px;
  border: 1px solid white;
}
.summary-box table tr td .remove-btn:hover {
  background-color: #dd003f;
}
.summary-box table tr td .remove-btn span {
  font-size: smaller;
  margin-left: 5px;
}
.summary-box ul {
  margin-bottom: 0;
}
.summary-box ul li {
  display: flex;
  justify-content: space-between;
}
.summary-box ul li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid white;
}
.summary-box ul li.sub-total {
  font-weight: bold;
}
.summary-box ul li.total {
  font-weight: bold;
  font-size: large;
}
.summary-box ul li.total .total-price {
  color: #dd003f;
}
.pay-radio {
  display: block;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.pay-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  display: block;
  padding: 15px;
  text-align: center;
  background-color: #020d18;
  border: 4px solid #0f2133;
  border-radius: 5px;
  transition: 0.15s;
}
.checkmark img {
  max-width: 100px;
}
.checkmark h4 {
  color: white;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .checkmark {
    padding: 10px;
    border-width: 2px;
  }
  .checkmark img {
    max-width: 50px;
  }
  .checkmark h4 {
    font-size: small;
  }
}

/* On mouse-over, add a grey background color */
.pay-radio:hover input ~ .checkmark {
  background-color: #f7931d;
}

/* When the radio button is checked, add a blue background */
.pay-radio input:checked ~ .checkmark {
  background-color: #dd003f;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 35px !important;
  cursor: pointer;
  font-size: 16px;
  color: white;
  line-height: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox:hover input ~ .checkbox-checkmark {
  background-color: #932990;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox input:checked ~ .checkbox-checkmark {
  background-color: #32cd32;
}
.checkbox input:checked ~ .checkbox-checkmark:after {
  display: block;
}
.checkbox .checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 5px;
  border: 2px solid #0f2133;
  transition: 0.2s;
}
.checkbox .checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.individual-seat {
  margin-bottom: 10px !important;
  background-color: #020d18;
  padding: 10px 15px !important;
  border: 2px solid #0f2133;
  border-radius: 5px;
}
.individual-seat .checkbox {
  margin-top: 0;
  margin-bottom: 0;
}
.individual-seat .checkbox .checkbox-checkmark {
  border-color: white;
}

.special-bg {
  background: linear-gradient(to right, #780000, #804500, #450843);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Dosis", sans-serif;
}

a.viewall {
  font-family: "Dosis", sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 15px;
  position: absolute;
  right: 0;
  z-index: 1;
}
a.viewall:hover {
  color: #dd003f;
}

.bar {
  background: linear-gradient(to right, red, #f7931d, #932990);
  height: 4px;
  width: 100%;
  display: block;
}

.not-slider .movie-item {
  margin-right: 0 !important;
  margin-bottom: 30px;
}

section.showtime {
  background: linear-gradient(to right, #780000, #804500, #450843);
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  section.quick-book {
    padding-top: 15px;
    background: linear-gradient(to right, #780000, #804500, #450843);
  }
}
@media (min-width: 992px) {
  section.quick-book {
    position: absolute;
    width: 100%;
    margin-top: -44px;
  }
}
section.quick-book .wrapper {
  padding: 20px;
  background: linear-gradient(to right, red, #f7931d, #932990);
  border-radius: 4px;
  box-shadow: 0 20px 15px -20px #000000a1;
}
@media (min-width: 992px) {
  section.quick-book .wrapper form {
    display: flex;
  }
  section.quick-book .wrapper form > div {
    width: 100%;
    margin-bottom: 0;
  }
  section.quick-book .wrapper form .btn {
    width: 100%;
    height: 100%;
  }
}
section.quick-book .wrapper .btn {
  background: #f7931d;
  color: white;
  font-weight: bold;
  transition: 0.2s;
}
section.quick-book .wrapper .btn:hover {
  background: #dd003f;
}
section.home-banner .carousel-indicators {
  display: none;
}
section.home-banner .item {
  padding: 60px 0 110px;
  height: 446px;
}
@media (max-width: 991px) {
  section.home-banner .item {
    padding: 30px;
  }
}
section.home-banner .item .more-detail-btn {
  display: inline-block;
  color: white;
  border: 2px solid white;
  background-color: transparent;
}
section.home-banner .item .more-detail-btn:hover {
  background-color: #dd003f;
  border-color: #dd003f;
}
@media (max-width: 767px) {
  section.home-banner .item .more-detail-btn {
    padding: 5px 15px;
    float: right;
    margin-top: 10px;
  }
}
section.home-banner .item .title-in h1 {
  margin-bottom: 15px;
  font-size: 50px;
  text-transform: uppercase;
}
section.home-banner .item .title-in h1 a {
  color: white;
}
@media (max-width: 767px) {
  section.home-banner .item .title-in h1 {
    font-size: 30px !important;
    margin-bottom: 20px !important;
    text-align: right;
  }
}
@media (max-width: 991px) {
  section.home-banner .item .title-in h1 {
    font-size: 50px;
    line-height: normal;
    margin-bottom: 0;
  }
  section.home-banner .item .title-in h1 a {
    font-size: inherit;
    line-height: inherit;
  }
  section.home-banner .item .title-in h1 a span {
    font-size: smaller;
  }
}
section.home-banner .item .title-in .social-btn {
  margin-bottom: 15px;
}
section.home-banner .item .title-in .social-btn .parent-btn {
  margin-bottom: 0;
}
section.home-banner .item .title-in .social-btn .parent-btn i {
  border: 2px solid white;
  color: white;
  transition: 0.2s;
  width: 35px;
  height: 35px;
  line-height: 33px;
  padding: 0;
  display: inline-block;
}
section.home-banner .item .title-in .social-btn .parent-btn span {
  color: white;
}
section.home-banner .item .title-in .social-btn .parent-btn:hover i {
  color: white;
  background-color: #dd003f;
}
@media (max-width: 992px) {
  section.home-banner .item .title-in .social-btn .parent-btn {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  section.home-banner .item .title-in .social-btn {
    margin-top: 15px;
    flex-direction: row-reverse;
    padding-right: 40px;
  }
  section.home-banner .item .title-in .social-btn span {
    display: none;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt .hvr-item {
    right: auto !important;
    left: -60px;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt .hvr-item:before {
    width: 0px;
    height: 0px;
    right: -10px;
    left: auto !important;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid #dd003f;
    border-right: 0 !important;
  }
}
@media (min-width: 768px) {
  section.home-banner .item .title-in .social-btn .parent-btn {
    position: relative;
    padding-left: 55px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  section.home-banner .item .title-in .social-btn .parent-btn i {
    width: 45px;
    height: 45px;
    line-height: 43px;
    padding: 0;
    position: absolute;
    left: 0;
  }
  section.home-banner .item .title-in .social-btn .parent-btn span {
    line-height: 45px;
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  section.home-banner .item .title-in .social-btn {
    margin-top: 15px;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt {
    align-items: unset;
    position: relative;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt > a {
    margin-right: 15px;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt .hvr-item {
    position: absolute;
    right: -30px;
    top: -7px;
    text-align: center;
    z-index: 1;
  }
  section.home-banner .item .title-in .social-btn .hover-bnt .hvr-item a {
    display: block;
    margin-right: 0;
  }
}
section.home-banner .item .title-in .mv-details {
  margin-bottom: 15px;
}
section.home-banner .item .title-in .mv-details img {
  max-width: 40px;
}
@media (min-width: 768px) {
  section.home-banner .item .title-in .mv-details {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  section.home-banner .item .title-in .mv-details {
    position: relative;
    margin-top: 20px;
  }
  section.home-banner .item .title-in .mv-details img {
    position: absolute;
    right: 0;
    top: -57px;
  }
}
section.home-banner .item .title-in .mv-details ul {
  margin: 0;
  font-family: "Dosis";
  font-size: 14px;
  font-weight: bold;
  list-style-type: none;
}
section.home-banner .item .title-in .mv-details ul li {
  color: white;
}
@media (min-width: 768px) {
  section.home-banner .item .title-in .mv-details ul {
    margin-left: 15px;
    display: flex;
  }
  section.home-banner .item .title-in .mv-details ul li {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid;
  }
  section.home-banner .item .title-in .mv-details ul li:last-child {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  section.home-banner .item .title-in .mv-details ul {
    margin-left: 15px;
    text-align: right;
  }
}
section.promo .item {
   position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    border: 2px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
section.promo .item:after {
    box-shadow: inset -5px -50px 100px -15px #000000;
    -webkit-box-shadow: inset -5px -50px 100px -15px #000000;
    -moz-box-shadow: inset -5px -50px 100px -15px #000000;
    -o-box-shadow: inset -5px -50px 100px -15px #000000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.promotion-entry .hvr-inner {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.58);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    display: flex;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}



.promotion-entry .hvr-inner a {
    display: block;
    padding: 10px 15px;
    background-color: transparent;
    border: 2px solid white;
    width: 80%;
    margin: 0 auto;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
    color: #ffffff;
}


.promotion-entry .hvr-inner a:hover {
    background-color: #dd003f;
    border-color: #dd003f;
}

.promotion-entry:hover .hvr-inner {
    opacity:1;
}
@media (max-width: 767px) {
  section.promo .item {
    height: 300px;
  }
}
section.movie-details-page, section.select-showtime {
  padding: 60px 0;
}
@media (max-width: 767px) {
  section.movie-details-page, section.select-showtime {
    padding: 15px 0;
  }
}
section.contact-us {
  padding: 0 0 60px;
}
section.contact-us iframe {
  display: block;
}
section.contact-us .content {
  padding-top: 60px;
}
section.news-promotion, section.user-profile {
  padding: 60px 0;
}
section.news-detail {
  padding: 60px 0;
}
section.news-detail .sidebar {
  margin-left: 0;
}
@media (min-width: 992px) {
  section.news-detail .sidebar {
    border-left: 1px solid #405266;
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  section.news-detail .sidebar {
    margin-top: 60px;
  }
}

.showtime .showtime-tab,
.single-showtime .showtime-tab {
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .showtime .showtime-tab .slick-arrow,
.single-showtime .showtime-tab .slick-arrow {
    display: none !important;
  }
}
.showtime .showtime-tab .slick-arrow.slick-next:before,
.single-showtime .showtime-tab .slick-arrow.slick-next:before {
  content: "";
  font-family: "fontawesome";
}
.showtime .showtime-tab .slick-arrow.slick-prev:before,
.single-showtime .showtime-tab .slick-arrow.slick-prev:before {
  content: "";
  font-family: "fontawesome";
}
.showtime .showtime-tab .day,
.single-showtime .showtime-tab .day {
  text-decoration: none !important;
  text-align: center;
  padding: 20px 0;
  position: relative;
  opacity: 0.4;
  border-radius: 4px;
  transition: 0.2s;
}
.showtime .showtime-tab .day:hover, .showtime .showtime-tab .day.active,
.single-showtime .showtime-tab .day:hover,
.single-showtime .showtime-tab .day.active {
  opacity: 1;
}
.showtime .showtime-tab .day.active,
.single-showtime .showtime-tab .day.active {
  background: white;
}
.showtime .showtime-tab .day.active h4,
.single-showtime .showtime-tab .day.active h4 {
  font-weight: bold;
  color: #dd003f;
}
.showtime .showtime-tab .day:after,
.single-showtime .showtime-tab .day:after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  display: block;
  left: 30px;
  right: 30px;
  background-color: white;
}
.showtime .showtime-tab .day h4,
.single-showtime .showtime-tab .day h4 {
  color: white;
  text-transform: uppercase;
}
.showtime .showtime-wrapper .movie-list,
.single-showtime .showtime-wrapper .movie-list {
  background-color: #071829;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .showtime .showtime-wrapper .movie-list,
.single-showtime .showtime-wrapper .movie-list {
    display: flex;
  }
}
@media (max-width: 767px) {
  .showtime .showtime-wrapper .movie-list .mv-img,
.single-showtime .showtime-wrapper .movie-list .mv-img {
    display: none;
  }
}
.showtime .showtime-wrapper .movie-list .mv-img,
.single-showtime .showtime-wrapper .movie-list .mv-img {
  border: 1px solid white;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.showtime .showtime-wrapper .movie-list .mv-img span,
.single-showtime .showtime-wrapper .movie-list .mv-img span {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 40px;
}
.showtime .showtime-wrapper .movie-list h3,
.single-showtime .showtime-wrapper .movie-list h3 {
  color: white;
}
.showtime .showtime-wrapper .movie-list hr,
.single-showtime .showtime-wrapper .movie-list hr {
  background-color: white;
}
.showtime .showtime-wrapper .movie-list .time-list,
.single-showtime .showtime-wrapper .movie-list .time-list {
  width: 100%;
  padding: 15px;
}
@media (min-width: 768px) {
  .showtime .showtime-wrapper .movie-list .time-list,
.single-showtime .showtime-wrapper .movie-list .time-list {
    margin-left: 15px;
  }
}
.showtime .showtime-wrapper .movie-list .time-list ul,
.single-showtime .showtime-wrapper .movie-list .time-list ul {
  margin-left: -15px;
  margin-bottom: 0;
}
.showtime .showtime-wrapper .movie-list .time-list ul li,
.single-showtime .showtime-wrapper .movie-list .time-list ul li {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 15px;
  position: relative;
  vertical-align: top;
}
.showtime .showtime-wrapper .movie-list .time-list ul li .seats,
.single-showtime .showtime-wrapper .movie-list .time-list ul li .seats {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, red, #f7931d, #932990);
  margin-bottom: 4px;
  display: none !important;
}
.showtime .showtime-wrapper .movie-list .time-list ul li a,
.single-showtime .showtime-wrapper .movie-list .time-list ul li a {
  text-decoration: none !important;
  display: block;
  background-color: white;
  padding: 20px 20px;
  border-radius: 4px;
  box-shadow: 0 10px 15px -15px black;
}
.showtime .showtime-wrapper .movie-list .time-list ul li a:hover,
.single-showtime .showtime-wrapper .movie-list .time-list ul li a:hover {
  background-color: #932990;
}
.showtime .showtime-wrapper .movie-list .time-list ul li a:hover h5,
.single-showtime .showtime-wrapper .movie-list .time-list ul li a:hover h5 {
  color: white;
}
.showtime .showtime-wrapper .movie-list .time-list ul li a h5,
.single-showtime .showtime-wrapper .movie-list .time-list ul li a h5 {
  color: #333;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.normal a,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.normal a {
  background-color: limegreen;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.sellfast a,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.sellfast a {
  background-color: #f7931d;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.fullseat .seats,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.fullseat .seats {
  background: #636363 !important;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a {
  pointer-events: none;
  box-shadow: none;
  cursor: not-allowed;
  background-color: #636363;
  padding: 27px 20px 13px;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a h5,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a h5 {
  position: relative;
  color: #333;
}
.showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a h5:before,
.single-showtime .showtime-wrapper .movie-list .time-list ul li.fullseat a h5:before {
  content: "FULL";
  position: absolute;
  font-size: small;
  top: -14px;
  text-align: center;
  width: 100%;
}

.select-showtime .bd-hd {
  font-size: 35px !important;
}
@media (max-width: 767px) {
  .select-showtime .bd-hd {
    font-size: 25px !important;
  }
}
.select-showtime .movie-img {
  margin-bottom: 15px !important;
}
@media (max-width: 767px) {
  .select-showtime .movie-img {
    max-width: 25%;
  }
}
.select-showtime .main-details > div {
  padding: 0 15px !important;
}
@media (max-width: 767px) {
  .select-showtime .main-details > div {
    margin-bottom: 5px;
    border-right: none !important;
  }
}
.select-showtime .main-details h4 {
  font-weight: bold !important;
  margin-bottom: 3px;
}
.select-showtime .main-details h5 {
  color: white;
  font-weight: normal;
}
.select-showtime .single-showtime {
  margin-top: 20px;
}
.select-showtime .single-showtime .slick-track {
  margin-left: 0;
}
.select-showtime .single-showtime .time-list {
  margin-left: 0 !important;
  padding: 5px 10px 0 !important;
}
.select-showtime .single-showtime .showtime-tab .day {
  padding: 5px 0;
}
@media (max-width: 767px) {
  .select-showtime .flex-mobile {
    display: flex;
    align-items: center;
  }
  .select-showtime .flex-mobile .movie-img {
    margin-bottom: 0 !important;
  }
  .select-showtime .flex-mobile .bd-hd {
    margin-left: 15px;
  }
}

.booked .mv-item-infor {
  margin: 0 0 10px;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 15px;
  border-radius: 5px;
  border: 3px solid #0f2133;
  background-color: #0b1a2a;
}
.booked .mv-item-infor > h4 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.booked .mv-item-infor > h4 span {
  color: white;
  text-transform: capitalize;
  font-size: small;
  font-weight: normal;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .booked .mv-item-infor > h4 span.first-child {
    margin-left: 0;
  }
}
.booked .mv-item-infor .main-details {
  display: flex;
}
@media (max-width: 767px) {
  .booked .mv-item-infor .main-details {
    display: block;
  }
  .booked .mv-item-infor .main-details > div {
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: none !important;
  }
  .booked .mv-item-infor .main-details > div:not(:last-child) {
    border-top: 1px solid white !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
}
.booked .mv-item-infor .main-details > div:not(:first-child) {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid white;
}
.booked .mv-item-infor .main-details h5, .booked .mv-item-infor .main-details h6 {
  color: white;
}
.booked .mv-item-infor .main-details h6 {
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
}
.booked .mv-item-infor .main-details .seat-booked {
  padding: 1px 6px;
  background-color: white;
  border-radius: 4px;
  color: #dd003f;
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}
.booked .mv-item-infor .booking-number {
  margin-top: 15px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
}
.booked .mv-item-infor .booking-number .seperator {
  height: 1px;
  background-color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.booked .mv-item-infor .booking-number h5 {
  z-index: 1;
  color: white;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 4px;
  float: left;
  background-color: #dd003f;
}
.booked .mv-item-infor .booking-number h5 span {
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .booked .mv-item-infor .additional-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .booked .mv-item-infor .additional-info .points {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .booked .mv-item-infor .additional-info .points > div {
    margin: 0 5px;
    width: 100%;
    text-align: center;
  }
}
.booked .mv-item-infor .additional-info .barcode {
  overflow: hidden;
  /*border-radius: 5px;*/
}
@media (min-width: 481px) and (max-width: 767px) {
  .booked .mv-item-infor .additional-info .barcode {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .booked .mv-item-infor .additional-info .barcode {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .booked .mv-item-infor .additional-info .barcode {
    width: 280px;
  }
}
.booked .mv-item-infor .additional-info [class*=points-] h3 {
  color: white;
}
.booked .mv-item-infor .additional-info [class*=points-] h3 small {
  color: inherit;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .booked .mv-item-infor .additional-info [class*=points-] {
    margin-top: 10px;
  }
  .booked .mv-item-infor .additional-info [class*=points-]:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
  }
}
.booked .mv-item-infor .additional-info .points-earned > div {
  background-color: #f7931d;
}
.booked .mv-item-infor .additional-info .points-balance > div {
  background-color: #932990;
}
.booked .mv-item-infor .additional-info .points-spent > div {
  background-color: #dd003f;
}
.booked .mv-item-infor .booked-date {
  margin-top: 10px;
}
.booked .mv-item-infor .booked-date h6 {
  color: white;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 4px;
  float: left;
}
.booked .mv-item-infor .time-left {
  margin-top: 15px;
  color: white;
}
.booked .mv-item-infor .time-left small {
  color: #888;
}

.book-now .nav-wrapper {
  margin-right: -5px;
  margin-left: -5px;
}
.book-now .nav {
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  .book-now .nav {
    display: flex !important;
    width: auto;
  }
  .book-now .nav li {
    display: block !important;
    width: 100%;
  }
  .book-now .nav li a {
    position: relative;
    padding: 5px !important;
  }
  .book-now .nav li a img {
    margin-right: 0 !important;
  }
  .book-now .nav li a i {
    position: absolute;
    top: -2px;
    right: 0px;
    padding: 2px;
    border-radius: 50%;
  }
}
.book-now .nav li {
  display: table-cell;
  float: none;
  text-align: center;
  padding: 0 5px;
}
.book-now .nav li a {
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
  pointer-events: none;
  background-color: #020d18;
  border: 2px solid transparent;
  color: white;
  font-weight: normal;
}
.book-now .nav li a img {
  max-height: 20px;
  vertical-align: top;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .book-now .nav li a span {
    display: none;
  }
}
.book-now .nav li.active a {
  background-color: #932990;
  color: white;
}
.book-now .nav li.done a {
  background-color: #dd003f;
  color: white;
}
.book-now .nav li.done a i {
  margin-left: 5px;
}
.book-now .tab-content {
  padding: 25px 0 0;
}
@media (max-width: 767px) {
  .book-now .tab-content {
    padding: 10px 0 0;
  }
}
.book-now .tab-content .next-panel {
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  border: 3px solid #0f2133;
  background-color: #020d18;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .book-now .tab-content .next-panel {
    position: fixed;
    z-index: 100;
    padding: 10px;
    display: block;
    border-radius: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .book-now .tab-content .next-panel .summary {
    display: block !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
  }
  .book-now .tab-content .next-panel .summary > div {
    padding: 0 10px !important;
    border-left: none !important;
  }
  .book-now .tab-content .next-panel .summary > div:not(:last-child) {
    height: 0px;
    overflow: hidden;
    transition: height 0.2s;
  }
  .book-now .tab-content .next-panel .summary > div:last-child {
    float: left;
  }
  .book-now .tab-content .next-panel .summary h6 {
    margin-bottom: 0 !important;
  }
  .book-now .tab-content .next-panel .summary .seat {
    margin-top: 5px;
  }
  .book-now .tab-content .next-panel a {
    float: right;
    padding: 8px 15px !important;
  }
  .book-now .tab-content .next-panel .view-summary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-size: smaller;
    border-radius: 4px;
    padding: 4px 10px;
    position: absolute;
    bottom: 15px;
    right: 60px;
  }
  .book-now .tab-content .next-panel .hide-summary {
    background-color: #dd003f;
    border: 1px solid white;
    color: white;
    font-size: smaller;
    border-radius: 4px;
    padding: 4px 10px;
    position: absolute;
    bottom: 15px;
    right: 60px;
    display: none;
  }
}
.book-now .tab-content .next-panel .summary {
  display: flex;
  margin-left: -20px;
}
.book-now .tab-content .next-panel .summary > div {
  padding: 0 20px;
}
.book-now .tab-content .next-panel .summary > div:not(:first-child) {
  border-left: 1px solid white;
}
.book-now .tab-content .next-panel .summary h6 {
  color: white;
  margin-bottom: 5px;
  font-weight: normal;
}
.book-now .tab-content .next-panel .summary .seat {
  margin-bottom: 0;
}
.book-now .tab-content .next-panel .summary .seat li {
  display: inline-block;
  padding: 1px 6px;
  color: white;
  border-radius: 4px;
  border: 1px solid white;
  font-size: small;
  line-height: 20px;
  height: 20px;
}
.book-now .tab-content .next-panel .summary .fnb {
  margin-bottom: 0;
  font-weight: bold;
  line-height: 20px;
}
.book-now .tab-content .next-panel .summary .total {
  color: #dd003f;
}
.book-now .tab-content .next-panel a {
  padding: 8px 10px;
  background-color: #dd003f;
  color: white;
  border-radius: 4px;
  display: inline-block;
  line-height: 25px;
}
.book-now .tab-content .next-panel a i {
  line-height: inherit;
}
@media (max-width: 767px) {
  .book-now .seat-proccess-panel {
    position: fixed;
    z-index: 100;
    padding: 10px;
    display: block;
    border-radius: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.book-now .fnb-list {
  margin-right: -5px;
  margin-left: -5px;
}
.book-now .fnb-list li {
  float: left;
  padding: 0 5px;
  text-align: center;
  color: white;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .book-now .fnb-list li {
    width: 50%;
  }
}
@media (min-width: 601px) and (max-width: 767px) {
  .book-now .fnb-list li {
    width: 33.33333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .book-now .fnb-list li {
    width: 33.33333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .book-now .fnb-list li {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .book-now .fnb-list li {
    width: 20%;
  }
}
.book-now .fnb-list li .fnb-img {
  overflow: hidden;
  border-radius: 5px;
  border: 3px solid #0f2133;
  position: relative;
}
.book-now .fnb-list li .fnb-img .price {
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 2px;
  padding: 5px 8px;
  background: #dd003f;
}
.book-now .fnb-list li .fnb-img img {
  width: 100%;
}
.book-now .fnb-list li .fnb-desc {
  margin-top: 5px;
  border: 3px solid #0f2133;
  background-color: #020d18;
  border-radius: 5px;
}
.book-now .fnb-list li .fnb-desc .fnb-name {
  color: inherit;
  margin: 8px 0 4px;
}
.book-now .fnb-list li .fnb-desc .fnb-name a {
  font-size: smaller;
}
.book-now .fnb-list li .fnb-desc .fnb-name a:hover {
  color: #dd003f;
}
.book-now .fnb-list li .fnb-desc .fnb-amount {
  padding: 0px 5px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.book-now .fnb-list li .fnb-desc .fnb-amount h6 {
  color: inherit;
}
.book-now .fnb-list li .fnb-desc .qty {
  display: flex;
  align-items: center;
  width: 100%;
}
.book-now .fnb-list li .fnb-desc .qty label {
  position: relative;
}
.book-now .fnb-list li .fnb-desc .qty label:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  pointer-events: none;
}
.book-now .fnb-list li .fnb-desc .qty select {
  height: auto;
  background: transparent;
  border: 2px solid white;
  border-radius: 5px !important;
  color: white;
  padding: 2px 20px 2px 6px;
  min-width: 46px;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 0.15s;
}
.book-now .fnb-list li .fnb-desc .qty select:hover, .book-now .fnb-list li .fnb-desc .qty select:focus {
  background-color: #dd003f;
}
.book-now .fnb-list li .fnb-desc .qty select option {
  color: black;
  background-color: white;
}
.book-now .fnb-list li .fnb-desc .qty button {
  width: 100%;
  border: 2px solid white;
  border-radius: 5px !important;
  color: white;
  padding: 0px 8px;
  background-color: transparent;
  margin-left: 5px;
  outline: none;
  font-size: small;
  line-height: 25px;
}
.book-now .fnb-list li .fnb-desc .qty button:hover {
  background-color: #dd003f;
}
.book-now .fnb-list li .fnb-desc .qty > span {
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: white;
  width: 20px;
  line-height: 20px;
  height: 20px;
  text-align: center;
  background-clip: padding-box;
  font-size: small;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.book-now .fnb-list li .fnb-desc .qty > span:hover {
  background-color: #dd003f;
}
.book-now .fnb-list li .fnb-desc .qty input::-webkit-outer-spin-button, .book-now .fnb-list li .fnb-desc .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.book-now .fnb-list li .fnb-desc .qty .count {
  color: white;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  padding: 0 2px;
  max-width: 35px;
  text-align: center;
  background-color: transparent !important;
  border: none;
}
.book-now .seat-selection {
  width: 100% !important;
  margin-top: 0;
}
@media (max-width: 767px) {
  .book-now .seat-selection {
    margin-top: 5px;
  }
}
.book-now .seat-selection .movie-screen {
  line-height: 25px;
  margin-top: -22px;
  height: 35px;
  border-top: 10px solid white;
  border-radius: 4px;
  box-shadow: inset 0px 30px 15px -20px #ffffff90;
  color: white;
}
.book-now .seat-selection .seat-area-desc {
  margin-bottom: 10px;
}
.book-now .seat-selection .seat-area-desc h4 {
  color: white;
}
.book-now .seat-selection .seat-proccess-panel {
  color: white;
  background-color: #020d18;
  padding: 10px 15px;
  border: 2px solid #0f2133;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-now .seat-selection .seat-proccess-panel .your-seat {
  text-align: left;
}
.book-now .seat-selection .seat-proccess-panel .your-seat h6 {
  margin-bottom: 5px;
}
.book-now .seat-selection .seat-proccess-panel .your-seat ul li {
  display: inline-block;
  padding: 1px 6px;
  color: white;
  border-radius: 4px;
  border: 1px solid white;
  font-size: small;
  line-height: 20px;
  height: 20px;
  margin-right: 5px;
}
.book-now .seat-selection .seat-proccess-panel button {
  padding: 8px 10px;
  background-color: #dd003f;
  color: white;
  border-radius: 4px;
}
.book-now .seat-selection .seat-proccess-panel button.layout-btn-cancel {
  background-color: transparent;
}
.book-now .seat-selection .seat-proccess-panel button.layout-btn-cancel:hover {
  background-color: #f7931d;
}
.book-now .seat-selection .seat-proccess-panel button.layout-btn-done {
  border-color: inherit;
}
.book-now .seat-selection .seat-area {
  background-color: #020d18;
  padding: 15px 15px 10px;
  border: 2px solid #0f2133;
  border-radius: 5px;
  margin-bottom: 10px;
}
.book-now .seat-selection .seat-area-row {
  display: flex;
  justify-content: space-between;
  margin-right: -5px;
  margin-left: -5px;
}
.book-now .seat-selection .seat-area-row .seat-row-seat {
  margin: 0 5px 10px;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent !important;
}
@media (max-width: 767px) {
  .book-now .seat-selection .seat-area-row .seat-row-seat {
    margin: 0 2px 4px;
  }
}
.book-now .seat-selection .seat-area-row .seat-row-seat span {
  width: 30px;
  height: 30px;
  border: none;
  margin: 0;
  font-weight: bold;
  line-height: 35px;
  color: white;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.15s;
  background-color: transparent !important;
  border-radius: unset;
}
@media (max-width: 767px) {
  .book-now .seat-selection .seat-area-row .seat-row-seat span {
    width: 23px;
  }
}
.book-now .seat-selection .seat-area-row .seat-row-seat.row-indicator {
  line-height: 35px;
  font-weight: bold;
  color: white;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.can-select span {
  background-image: url("../images/seat-available.png");
}
@media (min-width: 767px) {
  .book-now .seat-selection .seat-area-row .seat-row-seat.can-select:hover span {
    transform: scale(1.2);
  }
}
.book-now .seat-selection .seat-area-row .seat-row-seat.current-selected {
  position: relative;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.current-selected span {
  background-image: linear-gradient(black, black), url("../images/seat-selected.png");
  background-blend-mode: lighten;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.current-selected:before {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 10px;
  height: 20px;
  border: solid limegreen;
  border-width: 0 5px 5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}
.book-now .seat-selection .seat-area-row .seat-row-seat.sold {
  cursor: not-allowed;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.sold span {
  background-image: url("../images/seat-sold.png");
  color: transparent;
  pointer-events: none;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.unavailable {
  cursor: not-allowed;
}
.book-now .seat-selection .seat-area-row .seat-row-seat.unavailable span {
  background-image: url("../images/seat-unavailable.png");
  color: transparent;
}

@media (max-width: 767px) {
  .user-profile {
    padding: 30px 0 !important;
  }
}
.user-profile .user-title-name {
  color: white;
  background-color: #020d18;
  padding: 10px 15px;
  border: 3px solid #0f2133;
  border-radius: 5px;
  text-transform: uppercase;
}
.user-profile .user-title-name span {
  text-transform: capitalize;
}
.user-profile .user-information {
  margin-right: 0;
  margin-top: 0;
}
@media (max-width: 991px) {
  .user-profile .user-information {
    margin-bottom: 30px !important;
  }
}
.user-profile .user-information .user-img {
  margin-bottom: 10px;
}
.user-profile .user-information .user-img a {
  display: block;
}
.user-profile .user-information .user-img .avatar-wrapper {
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 4px solid #dd003f;
  position: relative;
}
.user-profile .user-information .user-img .avatar-wrapper img {
  margin-bottom: 0;
}
.user-profile .user-information .user-name {
  color: white;
  text-transform: capitalize;
  padding: 0 10px;
}
.user-profile .user-information .user-fav {
  padding: 25px 0 0;
}
 
.user-profile .user-fav-list {
  padding-top: 20px;
  max-width: 100%;
}
@media (max-width: 480px) {
  .user-profile .user-fav-list {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.user-profile .user-fav-list > div {
  flex-direction: inherit;
  overflow: unset;
  align-items: normal;
  width: 100%;
}
.user-profile .user-fav-list > div:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
@media (max-width: 480px) {
  .user-profile .user-fav-list > div {
    display: block;
    margin-right: 0;
  }
  .user-profile .user-fav-list > div .mv-poster {
    margin-right: 0 !important;
  }
  .user-profile .user-fav-list > div .mv-poster img {
    max-width: 100% !important;
    width: 100%;
  }
}
.user-profile .user-fav-list > div .mv-poster {
  position: relative;
  margin-right: 20px;
}
.user-profile .user-fav-list > div .mv-poster img {
  max-width: 120px;
  margin-right: 0;
}
.user-profile .user-fav-list > div .mv-poster .mv-rated {
  max-width: 35px !important;
  margin: 0;
  position: absolute;
  top: -7px;
  right: -10px;
}
.user-profile .user-fav-list > div .mv-item-infor {
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.user-profile .user-fav-list > div .mv-item-infor > h4 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.user-profile .user-fav-list > div .mv-item-infor > h4 span {
  color: white;
  text-transform: capitalize;
  font-size: small;
  font-weight: normal;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .user-profile .user-fav-list > div .mv-item-infor > h4 span.first-child {
    margin-left: 0;
  }
}
.user-profile .user-fav-list > div .mv-item-infor .main-details {
  display: flex;
}
.user-profile .user-fav-list > div .mv-item-infor .main-details > div:not(:first-child) {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid white;
}
.user-profile .user-fav-list > div .mv-item-infor .main-details h5, .user-profile .user-fav-list > div .mv-item-infor .main-details h6 {
  color: white;
}
.user-profile .user-fav-list > div .mv-item-infor .main-details h6 {
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
}
.user-profile .user-fav-list > div .mv-item-infor .main-details .seat-booked {
  padding: 1px 6px;
  background-color: white;
  border-radius: 4px;
  color: #dd003f;
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}
.user-profile .user-fav-list > div .mv-item-infor .booking-number {
  margin-top: 15px;
}
.user-profile .user-fav-list > div .mv-item-infor .booking-number h5 {
  color: white;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 4px;
  float: left;
}
.user-profile .user-fav-list > div .mv-item-infor .booking-number h5 span {
  letter-spacing: 1px;
}
.user-profile .user-fav-list > div .mv-item-infor .booked-date {
  margin-top: 10px;
}
.user-profile .user-fav-list > div .mv-item-infor .booked-date h6 {
  color: white;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 4px;
  float: left;
  background-color: #dd003f;
}
.user-profile .user-fav-list > div .mv-item-infor .time-left {
  margin-top: 15px;
  color: white;
}
.user-profile .user-fav-list > div .mv-item-infor .time-left small {
  color: #888;
}

header {
  position: relative;
}
header:after {
  content: "";
  background: linear-gradient(to right, red, #f7931d, #932990);
  height: 4px;
  width: 100%;
  display: block;
}
header .navbar {
  padding: 10px 0 !important;
}
header .navbar .navbar-header img.logo {
  width: 150px;
}
@media (max-width: 991px) {
  header .navbar .navbar-header img.logo {
    width: 115px;
  }
}
@media (max-width: 767px) {
  header .navbar .navbar-collapse {
    padding: 15px 0 0;
    margin: 15px -15px 0;
    width: unset;
    border-top: 1px solid #e5e5e5 !important;
  }
  header .navbar .navbar-collapse ul li a {
    padding: 10px 15px !important;
    text-align: left;
  }
}
header .navbar .navbar-nav li a {
  border: none !important;
  color: #333;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .navbar .navbar-nav li a {
    padding: 10px 8px;
  }
}
header .navbar .navbar-nav li.signupLink {
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .navbar .navbar-nav li.signupLink {
    border: none;
    padding: 0;
  }
  header .navbar .navbar-nav li.signupLink a {
    padding: 10px 8px;
  }
}
header .navbar .navbar-nav li.signupLink a {
  background-color: transparent;
  color: #dd003f;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .navbar .navbar-nav li.signupLink a {
    padding: 10px 8px;
  }
}
header .navbar .navbar-nav li.signupLink a:hover {
  color: #932990 !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .navbar .navbar-nav.menu-right {
    float: right;
  }
}
header .navbar .navbar-toggle {
  background-color: #dd003f;
  border-radius: 4px;
}
header .navbar .navbar-toggle:hover {
  background: #dd003f !important;
}
header.sticky {
  top: -100px;
  transform: translateY(100px);
}
header.sticky .navbar {
  padding: 5px 0 !important;
}
header.sticky .navbar .navbar-header img.logo {
  width: 115px;
}

@media (max-width: 767px) {
  .sticky-1 {
    top: 0 !important;
  }
}
@media (min-width: 768px) {
  .sticky-1 {
    position: sticky;
  }
}

.movie-single {
  margin-top: 0;
}
.movie-single .movie-img {
  margin-bottom: 0;
}
.movie-single .movie-img .movie-btn {
  margin-top: 15px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.movie-single .bd-hd {
  margin-top: 0px;
  color: white;
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.movie-single .bd-hd small {
  text-transform: none;
}
.movie-single .director {
  color: white;
  margin-bottom: 15px;
}
.movie-single .social-btn {
  margin-bottom: 20px;
  flex-direction: unset !important;
  align-items: center;
}
.movie-single .social-btn img {
  max-width: 42px;
  margin-right: 15px;
}
.movie-single .social-btn .parent-btn {
  margin-bottom: 0;
}
.movie-single .main-details {
  margin-left: -15px;
}
@media (min-width: 768px) {
  .movie-single .main-details {
    display: flex;
  }
}
.movie-single .main-details > div {
  padding: 10px 15px;
  border-right: 1px solid white;
}
.movie-single .main-details > div:last-child {
  border-right: none;
}
.movie-single .main-details > div h3, .movie-single .main-details > div h4 {
  color: white;
}
.movie-single .main-details > div h3 {
  margin-bottom: 5px;
}
.movie-single .main-details > div h4 {
  font-weight: normal;
}
.movie-single .sypnosis {
  padding-top: 30px;
}
.movie-single .sypnosis h1 {
  color: white;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 15px;
}
.movie-single .sypnosis h1:after {
  content: "";
  height: 4px;
  background-color: white;
  width: 8rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.movie-single .title-hd-sm {
  border-color: white;
}
.movie-single .mvcast-item h5 {
  color: white;
}

.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
}
.custom-select select:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #932990 transparent transparent transparent;
}
.custom-select .select-selected {
  background-color: white;
  border-radius: 4px;
  color: #932990;
  padding-right: 30px !important;
  white-space: nowrap;
}
.custom-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #932990 transparent;
  top: 10px;
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #932990 transparent transparent transparent;
}
.custom-select .select-items {
  border-radius: 4px;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  transform: scaleY(1) translate(0, 5px);
  transform-origin: top;
  transition: all 0.3s;
  box-shadow: 0 5px 10px -5px #00000070;
}
.custom-select .select-items.select-hide {
  transform: scaleY(0) translate(0);
}
.custom-select .select-items div,
.custom-select .select-selected {
  padding: 8px 15px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.sliderv2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .sliderv2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.news-promotion .tab-links li {
  margin-bottom: 0;
}
.news-promotion .tab-links li a {
  display: block;
  border-bottom: 4px solid transparent;
  padding-bottom: 10px;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .news-promotion .tab-links li a {
    padding-bottom: 20px !important;
    font-size: 20px !important;
  }
}
.news-promotion .tab-links li.active a {
  padding-bottom: 10px;
  border-bottom: 4px solid white;
  color: white !important;
}
.news-promotion .tab-content {
  border-top: 2px solid white;
  margin-top: 0;
  padding-top: 30px;
  padding-left: 0;
}
.news-promotion .tab-content .tab.active {
  margin-left: 0;
}
.news-promotion .tab-content .tab > div, .news-promotion .tab-content .tab .promo-item {
  border-radius: 4px;
}
.news-promotion .tab-content .tab > div img, .news-promotion .tab-content .tab .promo-item img {
  border-radius: 0;
}
.news-promotion .tab-content .tab .promo-item {
  display: block;
  overflow: hidden;
  transition: 0.15s;
  margin-bottom: 30px;
}
.news-promotion .tab-content .tab .promo-item:hover {
  opacity: 0.8;
}

.movie-items .slick-multiItem2 .slick-list {
  z-index: 1;
}
.movie-items .slick-multiItem2 .slick-dots {
  position: absolute;
  right: 15px;
  top: -35px;
  margin-top: 0;
  margin-bottom: 0;
}
.movie-items .tabs .tab-links li a {
  text-decoration: none !important;
}
.movie-items .tabs .tab-links li.active a {
  padding-bottom: 10px;
  border-bottom: 4px solid;
  color: white !important;
}
.movie-items .tabs .tab-content {
  padding-left: 0;
  margin-top: 30px;
}
.movie-items .tabs .tab-content .tab.active {
  margin-left: 0;
}
@media (max-width: 991px) {
  .movie-items .movie-item {
    margin-right: 15px;
  }
}
.movie-items .movie-item:hover .mv-img:after {
  background: black;
  opacity: 0.5;
}
.movie-items .movie-item .mv-img {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid white;
}
.movie-items .movie-item .hvr-inner {
  background-color: transparent;
  top: 50%;
  left: 50%;
  width: 100%;
  height: unset;
  bottom: auto;
  transform: translate(-50%, -50%);
}
.movie-items .movie-item .hvr-inner a {
  display: block;
  padding: 10px 15px;
  background-color: transparent;
  border: 2px solid white;
  width: 80%;
  margin: 0 auto;
  border-radius: 4px;
  white-space: nowrap;
}
.movie-items .movie-item .hvr-inner a:hover {
  background-color: #dd003f;
  border-color: #dd003f;
}
.movie-items .movie-item .hvr-inner a:first-child {
  margin-bottom: 15px;
}
.movie-items .movie-item .title-in {
  margin: 0 0 15px 15px;
}
.movie-items.allmovies .tab-links li {
  margin-bottom: 0;
}
.movie-items.allmovies .tab-links li a {
  display: block;
  border-bottom: 4px solid transparent;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .movie-items.allmovies .tab-links li a {
    padding-bottom: 20px !important;
    font-size: 20px;
  }
}
.movie-items.allmovies .tab-content {
  border-top: 2px solid white;
  margin-top: 0;
  padding-top: 30px;
}
.movie-items.allmovies .tab-content .movie-item {
  box-shadow: 0 20px 20px -20px black;
}
.movie-items.allmovies .tab-content .movie-item .mv-img {
  border: 2px solid white;
}

.carousel-control {
  background: none !important;
}

#back-to-top {
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #dd003f;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  border-radius: 4px;
  /* Rounded corners */
  font-size: 15px;
  /* Increase font size */
  transition: 0.2s;
  opacity: 0;
  line-height: 0;
  padding: 10px;
}
#back-to-top:hover, #back-to-top:focus {
  background-color: #932990;
}
#back-to-top i {
  height: 15px;
  width: 15px;
}

footer {
  padding: 15px 0 0;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer p {
  color: white;
}
footer hr {
  background-color: white;
}
@media (min-width: 768px) {
  footer > .container {
    display: flex;
    align-items: center;
  }
}
footer ul li a:hover {
  color: white;
}
@media (min-width: 768px) {
  footer ul {
    display: flex;
    align-items: center;
  }
  footer ul li {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  footer ul li.img {
    margin-bottom: 15px;
  }
}
footer ul.social-media {
  display: flex;
  align-items: center;
}
footer ul.social-media li {
  margin-right: 15px;
}
footer .ft-copyright {
  padding: 15px 0;
}

@media (min-width: 768px) {
  .view-summary,
.hide-summary {
    display: none !important;
  }
}

/*# sourceMappingURL=custom.css.map */

.active-nav {
    color: #dd003f !important;
}

.login-content .login-form-errors {
    color: #eb0f0f;
    padding-bottom: 10px;
    display: none;
    font-size: 13px;
    font-weight: 400;
}


.login-content .validateerr {
    color: red !important;
    padding-top: 10px;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: initial !important;
}

.form-style-1.activate-account, .form-style-1.reset-account {
    margin-bottom: 30px;
    margin-top: 30px;
    color: #dad7d7;
    text-align: center;
}

#resend-verification {
    color: #ff9f28;
}

#resend-verification.failed, #resend-verification.success {
    cursor: text;
}
 
.nav .user-img {
    width: 40px;
}
user-profile .user-pro {
    border-radius: 5px;
    padding: 0;
}
.user-profile .user-pro .movie-item-style-2 {
    background: #0F152C;
    padding: 20px;
    border-radius: 6px;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    flex-direction: inherit;
    overflow: unset;
    align-items: normal;
    width: 100%;
    margin-bottom: 0;
}

.user-profile .user-pro .movie-item-style-2:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.user-profile .user-pro .movie-item-style-2 .booking-number>span {
    content: "";
    position: absolute;
    background: white;
    height: 1px;
    right: 0;
    width: 100%;
    margin-left: 15px;
    top: 18px;
    clear: both;
    z-index: 1;
}

.user-profile .user-pro .mv-item-infor {
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.user-profile .user-pro .mv-item-infor > h4 {
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 20px;
}
.user-profile .user-pro .mv-item-infor > h4 span {
    color: white;
    text-transform: capitalize;
    font-size: small;
    font-weight: normal;
    margin-left: 10px;
}
.user-profile .user-pro .main-details {
    display: flex;
}

.user-profile .user-pro .mv-item-infor .main-details h5, .user-profile .user-pro .mv-item-infor .main-details h6 {
    color: white;
}

.user-profile .user-pro .mv-item-infor .main-details h6 {
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 0;
}

.user-profile .user-pro .main-details .seat-booked {
    padding: 1px 6px;
    background-color: white;
    border-radius: 4px;
    color: #dd003f;
    font-weight: bold;
    margin-bottom: 4px;
    display: inline-block;
}

.user-profile .user-pro .mv-item-infor .main-details > div:not(:first-child) {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid white;
}

.user-profile .user-pro .booking-number {
    margin-top: 15px;
    position: relative;
}

.user-profile .user-pro .mv-item-infor .booking-number h5 {
    color: white;
    padding: 8px 15px;
    border: 1px solid white;
    border-radius: 4px;
    float: left;
    background: #e71c2f;
    z-index: 38;
    display: block;
    overflow: hidden;
    position: relative;
}
.user-profile .user-pro .codebar {
    margin-top: 10px;
}

.user-profile .user-pro .mv-item-infor .booking-number h5 span {
    letter-spacing: 1px;
}
