* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a, a:hover {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.pop-play {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.pop-play.play {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.pop-play .play-wrap {
  max-width: 80%;
  width: 920px;
  max-height: 70%;
  height: 500px;
  position: relative;
}
.pop-play .play-wrap iframe {
  width: 100%;
  height: 100%;
}
.pop-play .play-wrap .pop-play-close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  background: transparent;
  outline: none;
  border: none;
}

.goOnTop {
  position: fixed;
  bottom: 16px;
  right: 10px;
  z-index: 5;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  display: none;
}
.goOnTop.active {
  visibility: visible;
  opacity: 1;
}
.goOnTop img {
  display: block;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 992px) {
  .goOnTop {
    display: block;
  }
}
header {
  padding: 0 5px 0 15px;
  background: #fff;
  position: sticky;
  opacity: 0.95;
  z-index: 50;
  top: 0;
  left: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.tixNav {
  padding: 0;
}
.tixNav .navbar-brand {
  width: 50px;
}
.tixNav .navbar-brand img {
  display: block;
  width: 100%;
}
.tixNav #navbarTixContent .navbar-nav {
  width: 100%;
  align-items: baseline;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown) {
  padding-left: 15px;
  padding-right: 15px;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).first {
  margin-left: auto;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown) .nav-link {
  font-size: 14px;
  padding: 0;
  color: #000;
  transition: all 0.5s;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown) .nav-link:hover {
  color: #fb4226;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).active .nav-link {
  color: #fb4226;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user {
  margin-left: auto;
  border-right: 1px solid #e9e9e9;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user img {
  display: inline-block;
  width: 30px;
  margin-right: 8px;
  border-radius: 50%;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user .nav-link {
  color: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user .nav-link:hover {
  color: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown {
  padding: 0 10px 0 10px;
  width: 150px;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .nav-link.user {
  border-right: 1px solid #e9e9e9;
  vertical-align: middle;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .nav-link.user img {
  display: inline-block;
  width: 30px;
  border-radius: 50%;
  margin-right: 8px;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .nav-link {
  display: inline-block;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .nav-link:hover {
  color: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown.show .nav-link {
  color: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  left: auto;
  right: 0;
  top: 190%;
  min-width: auto;
  width: 100%;
  height: 300px;
  overflow: auto;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #F5F5F5;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show::-webkit-scrollbar-thumb {
  background: #9b9b9b;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show a {
  font-size: 14px;
}
.tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show a:hover {
  background: #60c5ef;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .tixNav .navbar-collapse {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s;
  }

  .tixNav .navbar-collapse.show {
    display: flex;
    height: 100%;
    z-index: 10;
    opacity: 1;
  }

  .tixNav #navbarTixContent .navbar-nav {
    position: absolute;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    transition: all 0.3s;
  }

  .tixNav .navbar-collapse#navbarTixContent.show .navbar-nav {
    right: 0;
  }

  .tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).first {
    margin-left: 0;
  }

  .tixNav #navbarTixContent.navbar-collapse .navbar-nav .nav-item {
    padding: 20px;
  }
  .tixNav #navbarTixContent.navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: #000;
  }

  .tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user {
    margin-left: 0;
    order: -1;
    padding: 10px;
    border-right: none;
  }
  .tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user .nav-link {
    font-size: 14px;
    color: #000;
  }
  .tixNav #navbarTixContent .navbar-nav .nav-item:not(.dropdown).user img {
    width: 36px;
  }

  .tixNav #navbarTixContent .navbar-nav .nav-item.dropdown.show::before {
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background: #fff;
    transform: translate(-50%, -50%);
    padding: 25px 10px 0 10px;
  }

  .tixNav #navbarTixContent .navbar-nav .nav-item.dropdown .dropdown-menu.show a {
    text-align: center;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ebebec;
  }
}
.bannerTix {
  position: relative;
  z-index: 2;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage-outer {
  padding-bottom: 43%;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage {
  position: absolute;
  height: 100%;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .owl-item {
  height: 100%;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, transparent 20%);
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item img {
  height: 100%;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item .btn-play-trailer {
  position: absolute;
  background: transparent;
  outline: none;
  border: none;
  transition: all 0.3s;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item .btn-play-trailer:hover {
  opacity: 0.8;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item .item-trailer {
  display: none;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-stage .item .item-trailer iframe {
  display: none;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-nav button {
  font-size: 140px;
  color: #bcbcbc;
  opacity: 0.5;
  outline: none;
  border: none;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-nav button:hover {
  background: none;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75px;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-dots .owl-dot.active span {
  background: #fb4226;
}
.bannerTix .bannerTix__wrap .tixCarrousel .owl-dots .owl-dot:hover span {
  background: #D6D6D6;
}

.bannerTix .banner__book {
  background: #fff;
  display: flex;
  align-items: center;
  max-width: 940px;
  width: 100%;
  height: 80px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
  border-radius: 6px;
  box-shadow: 0 0 5px 0px #000;
}
.bannerTix .banner__book .dropdown {
  width: calc(70% / 4);
  border-right: 1px solid rgba(238, 238, 238, 0.88);
}
.bannerTix .banner__book .dropdown .dropdown-menu.show {
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.bannerTix .banner__book .dropdown button {
  width: 100%;
  text-align: left;
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 5px 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.bannerTix .banner__book .dropdown button::after {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.bannerTix .banner__book .dropdown .btn:focus {
  box-shadow: none;
}
.bannerTix .banner__book .dropdown .dropdown-item span {
  display: block;
}
.bannerTix .banner__book .dropdown .dropdown-item span:last-child {
  color: #aaa;
  font-size: 11px;
}
.bannerTix .banner__book .dropdown .dropdown-item:hover {
  background: #60c5ef;
  color: #fff;
}
.bannerTix .banner__book .dropdown .dropdown-item:hover span {
  color: #fff;
}
.bannerTix .banner__book #movies-dropdown {
  flex-grow: 1;
  width: 30%;
}
.bannerTix .banner__book .banner__btn {
  width: calc(70% / 4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerTix .banner__book .banner__btn a {
  color: #fff;
  background: #4a4a4a;
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
}

@media screen and (max-width: 992px) {
  .bannerTix .banner__book {
    display: none;
  }
}
.tixCarousel {
  padding-top: 85px;
}
.tixCarousel .tixCaroulselTab {
  justify-content: center;
  border: none;
  padding-bottom: 30px;
}
.tixCarousel .tixCaroulselTab .nav-link.active, .tixCarousel .tixCaroulselTab .nav-link {
  border: none;
  color: #000;
}
.tixCarousel .tixCaroulselTab .nav-link {
  font-size: 20px;
  transition: all 0.3s;
  line-height: 25px;
  font-weight: 500;
  padding-right: 20px;
}
.tixCarousel .tixCaroulselTab .nav-link.active {
  color: #fa5238;
  font-size: 24px;
}

#tixCaroulselTabContent .filmsOnShowCarrousel .item-wrap,
#tixCaroulselTabContent .filmsOnSoonCarrousel .item-wrap {
  padding: 20px 10px 0;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item {
  position: relative;
  padding-bottom: 40px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(12, 27, 54, 0.8);
  border: 1px solid #1f2e46;
  border-radius: 5px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start a,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start a {
  padding: 5px 0;
  display: block;
  width: 54px;
  text-align: center;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start h4,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 1px;
  line-height: unset;
  transform: scaleY(1.2);
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start p,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start p span,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start p span {
  width: 8px;
  height: 8px;
  display: block;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .start p span img,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .start p span img {
  display: block;
  width: 100%;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .promo,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .promo {
  position: absolute;
  left: -15px;
  top: 0;
  transform: translateY(-50%);
  width: 80%;
  max-width: 150px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item .promo img,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item .promo img {
  display: block;
  width: 100%;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item:hover .movie-content .linear,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item:hover .movie-content .linear {
  opacity: 1;
  visibility: visible;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-item:hover .bookTicket,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-item:hover .bookTicket {
  opacity: 1;
  visibility: visible;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .movie-img,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .movie-img {
  position: relative;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .movie-img img,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .movie-img img {
  border-radius: 5px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .linear,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .linear {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, transparent 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .linear .btn-play-trailer,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .linear .btn-play-trailer {
  outline: none;
  border: none;
  background: transparent;
  width: 50px;
  height: 50px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .linear .btn-play-trailer img,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .linear .btn-play-trailer img {
  display: block;
  width: 100%;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .linear .btn-play-trailer:hover,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .linear .btn-play-trailer:hover {
  opacity: 0.7;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-content .linear .btn-play-trailer-content,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-content .linear .btn-play-trailer-content {
  display: none;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail {
  margin-top: 10px;
  position: relative;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail p,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail p span.age,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail p span.age {
  line-height: unset;
  font-size: 14px;
  background: #fa5238;
  display: inline-block;
  padding: 1px 6px;
  width: 40px;
  text-align: center;
  border-radius: 5px;
  margin-right: 5px;
  color: #fff;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail p span.age.green,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail p span.age.green {
  background: #00ac4d;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail .minutes,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail .minutes {
  font-size: 13px;
  color: #4a4a4a;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 5px;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail .bookTicket,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail .bookTicket {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
#tixCaroulselTabContent .filmsOnShowCarrousel .movie-detail .bookTicket button,
#tixCaroulselTabContent .filmsOnSoonCarrousel .movie-detail .bookTicket button {
  outline: none;
  border: none;
  background: #fa5238;
  display: block;
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
}

.tixCarousel .owl-carousel .owl-nav button {
  position: absolute;
  top: 46%;
  transform: translate(0, -50%);
  font-size: 130px;
  outline: none;
  border: none;
}
.tixCarousel .owl-carousel .owl-nav button span {
  color: #bcbcbc;
}
.tixCarousel .owl-carousel .owl-nav button:hover {
  background: none;
}
.tixCarousel .owl-carousel .owl-nav button:hover span {
  color: #bcbcbc;
}
.tixCarousel .owl-carousel .owl-nav .owl-prev {
  left: -45px;
}
.tixCarousel .owl-carousel .owl-nav .owl-next {
  right: -45px;
}

@media screen and (max-width: 768px) {
  #tixCaroulselTabContent .filmsOnShowCarrousel .item-wrap,
#tixCaroulselTabContent .filmsOnSoonCarrousel .item-wrap {
    padding: 20px 20px 20px;
  }
}
.tixCinema .row {
  margin-right: 0;
  margin-left: 0;
}
.tixCinema .cinema-row {
  height: 700px;
  margin-bottom: 40px;
  overflow: hidden;
  border-bottom: 1px solid #ebebec;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tixCinema .cinema-row .column-1 {
  border: 1px solid #ebebec;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tixCinema .cinema-row .column-2 {
  flex: 1 1 auto;
}
.tixCinema .cinema-row .column-2 .tab-content {
  height: 100%;
}
.tixCinema .cinema-row .column-2 .tab-content .tab-pane {
  height: 100%;
}
.tixCinema .cinema-row .cinema-addr {
  flex: 1 1 auto;
  height: 100%;
}
.tixCinema .cinema-row .cinema-addr .column-3 {
  width: 30%;
  border: 1px solid rgba(238, 238, 238, 0.88);
  border-left: none;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav {
  border-bottom: 0;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t {
  padding: 15px 15px 15px 15px;
  border-radius: 0;
  width: 100%;
  position: relative;
  transition: all 0.3s;
  opacity: 0.4;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: rgba(238, 238, 238, 0.88);
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t:hover {
  opacity: 1;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t.active {
  background: transparent;
  opacity: 1;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr {
  display: flex;
  align-items: flex-start;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr img {
  display: block;
  width: 50px;
  height: 50px;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr .cinema-detail {
  padding-left: 10px;
  width: calc(100% - 50px);
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr p {
  margin-bottom: 0;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr .street {
  color: #000;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr .street span {
  color: #8bc541;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr .address {
  font-size: 12px;
  color: #949494;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr button {
  border: none;
  outline: none;
  background: transparent;
  color: #fb4226;
}
.tixCinema .cinema-row .cinema-addr .column-4 {
  width: calc(100% - 30%);
  height: 700px;
}
.tixCinema .cinemaLogo {
  height: 100%;
  border-bottom: none;
}
.tixCinema .cinemaLogo .nav-link {
  width: 90px;
  height: 90px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.2s;
  opacity: 0.4;
  border: none;
}
.tixCinema .cinemaLogo .nav-link::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 2px;
  background: rgba(238, 238, 238, 0.88);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.tixCinema .cinemaLogo .nav-link:hover {
  opacity: 1;
}
.tixCinema .cinemaLogo .nav-link.active {
  background: transparent;
  opacity: 1;
}
.tixCinema .cinemaLogo .nav-link img {
  display: block;
  width: 50px;
}

.tixCinema .column-4 {
  border: 1px solid rgba(238, 238, 238, 0.88);
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow-y: auto;
}
.tixCinema .column-4::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.tixCinema .column-4::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #F5F5F5;
}
.tixCinema .column-4::-webkit-scrollbar-thumb {
  background: #9b9b9b;
}
.tixCinema .column-4 .item-time {
  padding: 15px 15px 15px 15px;
  position: relative;
}
.tixCinema .column-4 .item-time::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
  background: rgba(238, 238, 238, 0.88);
}
.tixCinema .column-4 .item-time .movieName a {
  display: flex;
}
.tixCinema .column-4 .item-time .movieName a img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.tixCinema .column-4 .item-time .movieName a .detail p {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.tixCinema .column-4 .item-time .movieName a .detail p .age {
  font-size: 12px;
  color: #fff;
  background: #fb4226;
  margin-right: 8px;
  min-width: 35px;
  padding: 3px 8px;
  border-radius: 5px;
}
.tixCinema .column-4 .item-time .movieName a .detail p .age.green {
  background: #00ac4d;
}
.tixCinema .column-4 .item-time .movieName a .minutes {
  font-size: 12px;
  color: #9b9b9b;
}
.tixCinema .column-4 .item-time .movieName-collapse .format {
  padding-top: 15px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
.tixCinema .column-4 .item-time .movieName-collapse .movieShowtimes {
  display: flex;
  padding-bottom: 15px;
}
.tixCinema .column-4 .item-time .movieName-collapse .movieShowtimes a {
  background: rgba(246, 246, 246, 0.5);
  display: block;
  color: #9b9b9b;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  margin-right: 8px;
  border: 1px solid #e4e4e4;
}
.tixCinema .column-4 .item-time .movieName-collapse .movieShowtimes a span {
  font-size: 18px;
  color: #108f3e;
  font-weight: 500;
}

.tixCinema .linear {
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, #fff 40%);
}

@media screen and (max-width: 992px) {
  .tixCinema .column-1 {
    width: 100%;
  }
  .tixCinema .cinemaLogo {
    flex-direction: row !important;
    justify-content: space-around;
    align-items: center;
  }
  .tixCinema .cinema-row .cinema-addr .column-3 {
    border-left: 1px solid rgba(238, 238, 238, 0.88);
  }
}
@media screen and (max-width: 768px) {
  .tixCinema .cinema-row {
    height: auto;
  }
  .tixCinema .cinema-row .cinema-addr .column-3 {
    width: 100%;
    border-left: 1px solid rgba(238, 238, 238, 0.88);
  }
  .tixCinema .cinema-row .cinema-addr .column-3 .nav {
    flex-direction: row !important;
  }
  .tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t {
    width: 50%;
  }
  .tixCinema .cinema-row .cinema-addr .column-4 {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    padding-left: 15px;
    border-left: 1px solid rgba(238, 238, 238, 0.88);
  }
}
@media screen and (max-width: 500px) {
  .tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t {
    width: 100%;
  }
  .tixCinema .cinema-row .cinema-addr .column-3 .nav .nav-link-t .item-addr .address {
    white-space: normal;
  }
}
.tixNews .newsTab {
  justify-content: center;
  align-items: center;
  border-bottom: none;
  padding-bottom: 30px;
}
.tixNews .newsTab .nav-link {
  color: #000;
  font-size: 20px;
  border-radius: 0;
  border: none;
  padding: 7px 10px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s;
}
.tixNews .newsTab .nav-link:hover {
  border-radius: 0;
  border: none;
  font-size: 24px;
  color: #fa5238;
}
.tixNews .newsTab .nav-link.active {
  border: none;
  font-size: 24px;
  color: #fa5238;
}

.tixNews .newsTabContent .news-top {
  display: flex;
  align-items: flex-start;
}
.tixNews .newsTabContent .news-bot {
  display: flex;
}
.tixNews .newsTabContent .news-bot .bot-left {
  flex: 0 1 70%;
  display: flex;
  align-items: flex-start;
}
.tixNews .newsTabContent .news-bot .bot-right {
  flex: 0 1 30%;
}
.tixNews .newsTabContent .news-bot .news-item .news-info .title {
  margin-bottom: 0px;
  padding: 10px 0 5px;
}
.tixNews .newsTabContent .news-item {
  flex: 0 1 50%;
  padding-right: 15px;
  padding-bottom: 25px;
}
.tixNews .newsTabContent .news-item img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.tixNews .newsTabContent .news-item .news-info .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 15px 0 20px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.tixNews .newsTabContent .news-item .news-info .title:hover {
  color: #fb4226;
}
.tixNews .newsTabContent .news-item .news-info .intro {
  font-size: 13px;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px;
  margin-bottom: 15px;
}
.tixNews .newsTabContent .news-item .news-info .social {
  display: flex;
}
.tixNews .newsTabContent .news-item .news-info .social p {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 0;
  cursor: pointer;
}
.tixNews .newsTabContent .news-item .news-info .social img {
  margin-right: 10px;
  display: block;
  width: 18px;
  height: 18px;
  transition: all 0.3s;
}
.tixNews .newsTabContent .news-item .news-info .social img:hover {
  transform: scale(1.2);
}
.tixNews .newsTabContent .news-small-item {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding-bottom: 15px;
}
.tixNews .newsTabContent .news-small-item img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 3px;
}
.tixNews .newsTabContent .news-small-item p {
  font-size: 16px;
  line-height: unset;
  margin-bottom: 0;
  color: #000;
  padding-left: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.tixNews .newsTabContent .news-small-item p:hover {
  color: #fb4226;
}

.tixNews {
  padding-bottom: 30px;
}
.tixNews .showMore {
  margin-top: 30px;
}
.tixNews .showMore button {
  display: block;
  margin: 0 auto;
  outline: none;
  border: none;
  border: 1px solid #949494;
  color: #949494;
  font-size: 14px;
  background: transparent;
  padding: 7px 25px;
  border-radius: 5px;
  transition: all 0.3s;
}
.tixNews .showMore button:hover {
  color: #fff;
  border-color: #fb4226;
  background: #fb4226;
}

@media screen and (max-width: 568px) {
  .tixNews .newsTabContent .news-top {
    flex-wrap: wrap;
  }
  .tixNews .newsTabContent .news-item {
    flex: 0 1 100%;
    padding-right: 0;
  }
  .tixNews .newsTabContent .news-bot {
    flex-wrap: wrap;
  }
  .tixNews .newsTabContent .news-bot .bot-left {
    flex: 0 1 100%;
    flex-wrap: wrap;
  }
  .tixNews .newsTabContent .news-bot .bot-right {
    flex: 0 1 100%;
  }
  .tixNews .newsTabContent .news-bot .news-item .news-info .title {
    margin-bottom: 0px;
    padding: 10px 0 5px;
  }
}
.tixApp {
  padding: 120px 0 80px;
  background: url("../img/background-app.jpg");
}
.tixApp .tixApp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tixApp .tixApp-wrap .app-item {
  color: #fff;
}
.tixApp .tixApp-wrap .app-left {
  flex: 0 1 40%;
}
.tixApp .tixApp-wrap .app-left h1 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.tixApp .tixApp-wrap .app-left p {
  font-size: 16px;
  color: #fff;
  padding: 0px 0 15px;
}
.tixApp .tixApp-wrap .app-left button {
  background: #fb4226;
  font-weight: 700;
  padding: 10px 20px;
  outline: none;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}
.tixApp .tixApp-wrap .app-left .down {
  font-size: 14px;
  padding-top: 15px;
}
.tixApp .tixApp-wrap .app-left .down a {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.tixApp .tixApp-wrap .app-right {
  flex: 0 1 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tixApp .tixApp-wrap .app-right .phone-img {
  width: 195px;
  position: relative;
}
.tixApp .tixApp-wrap .app-right .phone-img > img {
  display: block;
  width: 100%;
}
.tixApp .tixApp-wrap .app-right .phone-img .slide-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 96%;
}
.tixApp .tixApp-wrap .app-right .phone-img .slide-img .tixAppCarousel {
  height: 100%;
}
.tixApp .tixApp-wrap .app-right .phone-img .slide-img .tixAppCarousel .owl-stage-outer {
  height: 100%;
  border-radius: 20px;
}
.tixApp .tixApp-wrap .app-right .phone-img .slide-img .tixAppCarousel .owl-stage-outer .owl-item img {
  border-radius: 20px;
}

@media screen and (max-width: 992px) {
  .tixApp .tixApp-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tixApp .tixApp-wrap .app-left {
    flex: 0 1 100%;
    text-align: center;
  }
  .tixApp .tixApp-wrap .app-right {
    flex: 0 1 100%;
  }
  .tixApp .tixApp-wrap .app-right .phone-img {
    width: 260px;
  }
  .tixApp .tixApp-wrap .app-right .phone-img .slide-img .tixAppCarousel {
    height: 100%;
  }
  .tixApp .tixApp-wrap .app-right .phone-img .slide-img .tixAppCarousel .owl-stage-outer {
    height: 100%;
  }
}
.tixContact {
  background: #222;
  color: #fff;
  padding: 30px 0 15px;
  margin-bottom: 0;
}
.tixContact .contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tixContact .contact-wrap .contact-item {
  flex: 0 1 auto;
}
.tixContact .contact-wrap .contact-item h4 {
  font-size: 13px;
  margin-bottom: 20px;
}
.tixContact .contact-wrap .contact-item h4.align {
  opacity: 1;
  visibility: hidden;
}
.tixContact .contact-wrap .contact-item a {
  font-size: 12px;
  color: #949494;
  font-weight: 700;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.tixContact .contact-wrap .contact-item a:hover {
  color: #fff;
}
.tixContact .contact-wrap .contact-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.tixContact .contact-wrap .contact-item.contact-partner img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.tixContact .contact-wrap .contact-item.contact-partner .partner-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 15px 15px;
}
.tixContact .contact-wrap .contact-item.contact-partner .partner-wrap .partner {
  cursor: pointer;
  transition: all 0.1s;
}
.tixContact .contact-wrap .contact-item.contact-partner .partner-wrap .partner:hover {
  opacity: 0.7;
}
.tixContact .contact-wrap .contact-item.contact-partner .partner-wrap .partner.bg-w img {
  background: #fff;
}
.tixContact .contact-wrap .contact-item.mobile-app, .tixContact .contact-wrap .contact-item.contact-social {
  text-align: center;
}
.tixContact .contact-wrap .contact-item.mobile-app a, .tixContact .contact-wrap .contact-item.contact-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

@media screen and (max-width: 992px) {
  .tixContact {
    padding: 40px 0;
  }
  .tixContact .contact-wrap .contact-item h4 {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .tixContact .contact-wrap .contact-item.contact-partner {
    display: none;
  }
  .tixContact .contact-wrap .contact-item.mobile-app {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tixContact .contact-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tixContact .contact-wrap .contact-item {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
  }
  .tixContact .contact-wrap .contact-item a {
    padding-right: 10px;
  }
  .tixContact .contact-wrap .contact-item.contact-social {
    flex: 0 1 100%;
    padding-top: 30px;
  }
  .tixContact .contact-wrap .contact-item.contact-social a {
    padding-right: 0;
  }
}
footer {
  background: #222;
}
footer .footer-wrap {
  border-top: 1px solid #4a4a4a;
  padding: 20px 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer-wrap .footer-item {
  color: #fff;
}
footer .footer-wrap .footer-item img {
  display: block;
  width: 90px;
}
footer .footer-wrap .footer-item.footer-zion img {
  border-radius: 5px;
}
footer .footer-wrap .footer-item.footer-about {
  flex: 1 1 auto;
  padding-left: 50px;
}
footer .footer-wrap .footer-item.footer-about h4 {
  margin-bottom: 0;
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
}
footer .footer-wrap .footer-item.footer-about p {
  font-size: 12px;
  color: #949494;
  line-height: 1.8;
  margin-bottom: 0;
}
footer .footer-wrap .footer-item.footer-about p a {
  margin-left: 8px;
  color: #fb4226;
  cursor: pointer;
  transition: all 0.2s;
}
footer .footer-wrap .footer-item.footer-about p a:hover {
  opacity: 0.7;
}
footer .footer-wrap .footer-item.footer-baohanh img {
  width: 130px;
}

@media screen and (max-width: 992px) {
  footer .footer-wrap {
    max-width: 98%;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .footer-wrap .footer-item.footer-about {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer-wrap .footer-item {
    flex: 0 1 100%;
  }
  footer .footer-wrap .footer-item img {
    margin: 10px auto 20px;
  }
  footer .footer-wrap .footer-item.footer-about {
    padding-left: 0px;
    text-align: center;
  }
}

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