/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600");

body,
html {
  height: 100%;
  margin: 0;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
}

.header_logo {
  filter: drop-shadow(0px 0px 5px #cbc3e3);
}

.showtime_box {
  background: #360858;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  padding: 8px 20px;
  cursor: pointer;
  min-width: 90px;
  transition: all 0.35s;
}

.my-icon {
  line-height: 40px;
  color: #f9ab00;
}

.month {
  font-weight: 400;
  color: #ffffff;
  transition: all 0.35s;
}

.date {
  font-weight: 700;
  color: #f9ab00;
  transition: all 0.35s;
  line-height: 0.6em;
  margin: 2px 0 4px;
}

.day {
  font-weight: 400;
  color: #ffffff;
  transition: all 0.35s;
}

.show_datetime {
  width: 100%;
  transition: all 0.35s;
  line-height: 0.6em;
  margin: 2px 0 4px;
}

.booking-link {
  color: #fff;
  text-decoration: none;
}
.booking-link a {
  color: #fff;
  text-decoration: none;
}
table {
  /*width: 800px;*/
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

th {
  text-align: left;
}

thead {
  th {
    background-color: #55608f;
  }
}

tbody {
  tr {
    &:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }
  }
  td {
    position: relative;
    &:hover {
      &:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -9999px;
        bottom: -9999px;
        background-color: rgba(255, 255, 255, 0.2);
        z-index: -1;
      }
    }
  }
}

.invisibutton {
  height: 1px;
  width: 1px;
  display: none;
  vertical-align: text-bottom;
}

label {
  color: (link-color);
  /*text-decoration: (etc.)*/
}

.container1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: inherit;
  /*min-height: 50vh;
  padding: 0px 15px;*/
}

.content-section {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
  min-height: 1px;
  padding-bottom: 30px;
}

.content-section .card7 {
  /* flex: 1; */
  border-radius: 15px;
  margin: 20px 20px;
  background-color: rgba(180, 180, 180, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 0;
  min-width: 230px;
  position: relative;
}

.content-section .card7 .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  border-radius: 15px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-section .card7:hover .content-overlay {
  opacity: 1;
}

.content-section .card7 .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-section .card7:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-section .card7 .content-details .header {
  position: absolute;
  right: 1rem;
  top: -8rem;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 18px;
  width: 11rem;
  color: #360858;
  padding: 15px;
  text-align: center;
  border-radius: unset;
  background-color: #f9ab00;
  z-index: 999;
}

.content-section .card7 .content-details .country {
  position: absolute;
  right: 1rem;

  text-transform: uppercase;
  font-weight: 800;
  font-size: large;
  width: 11rem;
  color: #360858;
  padding: 15px;
  text-align: center;
  border-radius: unset;
  background-color: #ffffff;
  bottom: -10rem;
  z-index: 999;
}

.content-section .card7 .content-details .date {
  position: absolute;
  right: 1rem;
  top: 3rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: large;
  width: 11rem;
  color: #360858;
  padding: 15px;
  text-align: center;
  border-radius: unset;
  background-color: #ffffff;
  z-index: 999;
}
.fadeIn-bottom {
  top: 80%;
}

.content-section .card7 img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}

.content-section .card7 img:hover {
  transform: scale(1.05);
}

.content-section .event_person_card {
  /* flex: 1; */
  border-radius: 50%;
  margin: 20px 20px;
  /* background-color: rgba(180, 180, 180, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);*/
  padding: 0;
  min-width: 150px;
  position: relative;
}

.content-section .event_person_card .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100px;
  width: 100px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-section .event_person_card:hover .content-overlay {
  opacity: 1;
}

.content-section .event_person_card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}

.content-section .event_person_card img:hover {
  transform: scale(1.05);
}

.content-section .card2 {
  flex: 1;
  border-radius: 15px;
  margin: 20px 20px;
  background-color: rgba(180, 180, 180, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 0;
  min-width: 215px;
}

.content-section .card2 img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.content-section .card2 h2 {
  margin: 15px 0px;
  font-size: 13px;
  color: #f9ab00;
  font-family: sans-serif;
}

.content-section .card2 .address {
  margin: 15px 0px;
  font-size: 13px;
  color: #fff;
  font-family: sans-serif;
}

.showtime_box5 {
  float: left;
  left: auto;
  min-width: 215px;

  background: #083458;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  padding: 8px 20px;
  cursor: pointer;
  /* min-width: 90px; */
  transition: all 0.35s;
}

.showtime_box2 {
  display: inline-block;
  background: #360858;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  /*padding: 8px 20px;*/
  cursor: pointer;
  min-width: 90px;
  transition: all 0.35s;
}

.card__event_content {
  position: relative;
  display: block;
  width: 100%;
}

.event_box {
  display: inline-block;
  background: #360858;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  margin-top: 0px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  /*padding: 8px 20px;*/
  cursor: pointer;
  min-width: 90px;
  width: 100%;
  transition: all 0.35s;
}

.event_button {
  display: inline-block;
  text-align: center;
  margin: 10px;
  /*padding: 8px 20px;*/
  cursor: pointer;
  min-width: 90px;
  width: 100%;
  transition: all 0.35s;
}

.float-container {
  width: 100%;
  flex: 0 0 100%;
  border-radius: 15px;
  margin: 20px 20px;
  background-color: rgba(180, 180, 180, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 0;
  min-width: 215px;
}

.float-child {
  display: inline-block;
  /*float: left;*/
  padding: 20px;
  border: 2px solid red;
}

.content-section .card3 {
  flex: 0 0 100%;
  border-radius: 15px;
  margin: 20px 20px;
  background-color: rgba(180, 180, 180, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 0;
  min-width: 215px;
}

.content-section .card3 img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.content-section .card3 h2 {
  margin: 15px 0px;
  font-size: 13px;
  color: #f9ab00;
  font-family: sans-serif;
}

.content-section .card3 .address {
  margin: 15px 0px;
  font-size: 13px;
  color: #fff;
  font-family: sans-serif;
}

/* Apply custom styles to the scrollbar container */
.custom-scrollbar {
  overflow-y: scroll; /* Enable vertical scrolling */
  scrollbar-width: thin; /* Width of the scrollbar (thin, auto, or none) */
}

/* Customize the scrollbar track (background) */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

/* Customize the scrollbar handle (thumb) */
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

/* Optionally, you can style the scrollbar track on Firefox */
.custom-scrollbar {
  scrollbar-color: #888 transparent;
  scrollbar-width: thin;
}

.section__title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  margin-bottom: 20px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  --bs-gutter-x: 0rem;
}

.bg {
  /* The image used */
  background: rgb(28, 27, 34) 90.4%;
}

h1.movie_title {
  font-size: 36px;
  margin: 5px 5px 5px;
}

span.movie_title {
  margin: 5px 5px 20px;
}

header.cbp-af-header.cbp-af-header-shrink {
  background: #212529;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

header.cbp-af-header {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

header.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 999;
  /* height: 90px;*/
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

header.top-nav .logo {
  float: left;
  /*margin-top: 25px;*/
  margin: 0;
  top: 50%;
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
  padding-left: 0px;
  padding-right: 0px;
}

.container-content {
  padding-top: 100px;
}

.box1 {
  background-color: #1a191f;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 15px;
  padding: 15px 15px 40px;
  margin: 15px;
}

.top_box {
  background-color: #1a191f;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 15px;
  padding: 15px 15px 15px;
  margin: 15px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  background: rgb(28, 27, 34) 90.4%;
  -webkit-font-smoothing: antialiased;
}

a {
  transition: 0.4s;
  transition-property: color, background-color, border-color, opacity;
  text-decoration: none;
  color: #fff;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section__title {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .section__title {
    font-size: 36px;
  }
}

/*==============================
	Card
==============================*/
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.card__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #222028;
}
.card__cover img {
  width: 100%;
  transition: opacity 0.5s;
}

.card__cover1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #222028;
}
.card__cover1 img {
  width: 100%;
  transition: opacity 0.5s;
}

.card__content {
  position: relative;
  display: block;
  margin-top: 10px;
  width: 100%;
}

.card__rate {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  top: 15px;
  left: 15px;
  background-color: rgba(26, 25, 31, 0.6);
  border: 2px solid transparent;
  border-radius: 50%;
}
.card__rate--green {
  border-color: #29b474;
}

.card__meta {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
.card__meta span {
  color: #fff;
  margin-right: 10px;
}
.card__meta li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
}
.card__meta li:last-child {
  margin-bottom: 0;
}

.card__description {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  max-height: 200px;
  overflow: hidden;
  background-color: #222028;
  padding: 15px 30px 15px 20px;
}
.card__trailer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 100%;
  max-width: 250px;
  border-radius: 6px;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #f9ab00;
  margin-top: 20px;
}
.card__trailer i {
  font-size: 22px;
  margin-right: 15px;
  transition: color 0.4s;
}

.card--details {
  margin-bottom: 20px;
}
.card--details .card__cover {
  /*max-width: 250px;*/
  width: auto;
}

.card--details .card__cover1 {
  /*max-width: 250px;*/
  width: auto;
}

.card--details .card__content {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .card {
    margin-bottom: 30px;
  }
  .card--details {
    margin-top: 10px;
  }
  .card--details .card__cover {
    max-width: 100%;
  }

  .card--details .card__cover1 {
    max-width: 100%;
  }

  .card--details .card__content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
  .card--details .card__description {
    max-height: 175px;
  }
}
@media (min-width: 992px) {
  .card--details .card__description {
    max-height: 180px;
  }
}
@media (min-width: 1200px) {
  .card--details {
    margin-bottom: 0;
  }
  .card--details .card__description {
    max-height: 140px;
  }
}

.footer {
  background: #212529;
  /*height: 90px;*/
  text-align: center;
  align-items: center;
  justify-content: center;
  display: grid;

  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer p {
  letter-spacing: 0px;
  margin-top: 0;
  font-size: small;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.socialmedia {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper1 {
  display: flex;
  /* margin: 100px 30px auto;*/
  grid-gap: 20px;
  /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
}

@media (max-width: 700px) {
  .wrapper1 {
    margin: 200px auto;
  }
  .card__meta li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
  }

  .content-section .event_person_card {
    /* flex: 1; */
    border-radius: 50%;
    margin: 20px 0px;
    /* background-color: rgba(180, 180, 180, 0.25);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);*/
    padding: 0;
    min-width: 150px;
    position: relative;
  }
}

.accordion-item {
  border-radius: 0.4rem;
}

.accordion-item hr {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-link {
  font-size: 1.6rem;
  color: #f9ab00;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-link h3 {
  font-weight: 500;
  font-size: 20px;
}

.accordion-link i {
  color: #f9ab00;
  padding: 0.5rem;
}

.accordion-link ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div {
  display: flex;
}

.accordion-link .ion-md-arrow-down {
  display: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 650ms;
  overflow-y: scroll;
}

.answer p {
  color: #000;
  font-size: 15px;
  padding: 2rem;
}

.accordion-item:target .answer {
  max-height: 30rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward {
  display: none;
}

.accordion-item:target .accordion-link .ion-md-arrow-down {
  display: block;
}

.eventbox {
  /*width: 33%;*/
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.eventbox .front-face {
  background: #fff;
  height: 220px;
  width: 100%;
  display: flex;
  /*flex-direction: column;*/
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}

.eventbox .front-face .icon {
  height: 80px;
}

.eventbox .front-face .icon i {
  font-size: 65px;
}

.eventbox .front-face span,
.eventbox .back-face span {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.eventbox .front-face .icon i,
.eventbox .front-face span {
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eventbox .back-face {
  /* position: absolute;*/
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  /*height: 220px;
  width: 100%;*/
  padding: 30px;
  color: #fff;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
}

.eventbox .back-face p {
  margin-top: 10px;
  text-align: justify;
}

.eventbox:hover .front-face {
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg);
}

.element {
  border: 0px solid rgba(100, 100, 100, 1);
  border-radius: 10px;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  background-blend-mode: normal;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.top_advert_banner {
  width: 75%;
  height: auto;
  border-radius: 15px;
}

.buttonClass {
  padding: 10px;
  text-align: center;
  font-size: 15px;
  width: 100%;
  color: #000000;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-shadow: inset 0px 1px 0px #9b14b3;
  background: linear-gradient(#f9ab00, #8f6200);
  text-transform: uppercase;
  margin: 10px;
}

.buttonClass i {
  color: #360858;
}

.buttonClass:hover {
  background: linear-gradient(#8f6200, #f9ab00);
}
