/*Import styles for the occs into here. Other libraries should have their styles imported into the adjacent 'libraries.scss' file.*/
/* The '@import' syntax is still used here until the OCCs use the more mordern '@use' syntax*/
/*Variable Overrides*/
/*Utilities*/
@keyframes skeleton-pulse-animation-transition {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/*Subcomponents*/
.v-carousel {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.v-carousel__wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-items: stretch;
  height: 100%;
}
.v-carousel__viewport {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  width: 100%;
  transform: translateZ(0);
  padding-bottom: 17px;
  margin-bottom: -17px;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 0;
  scrollbar-width: none; /* Firefox */
}
.v-carousel__viewport::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.v-carousel__viewport.draggable {
  user-select: none;
  cursor: grab;
}
.v-carousel__viewport.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}
.v-carousel__viewport.drag {
  cursor: grabbing;
}
.v-carousel__track {
  display: flex;
  list-style: none;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 0;
}
.v-carousel__button {
  position: absolute;
  top: calc(50% - 45px);
  background: none;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 8px;
  margin: 0;
  width: 44px;
  height: 90px;
  fill: #fff;
  cursor: pointer;
  opacity: 0;
  transition-property: opacity, border-color;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
  flex-shrink: 0;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  outline: none;
  pointer-events: auto;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 1;
}
.v-carousel__button .v-icon {
  width: 20px;
  height: 100%;
}
.v-carousel__button--prev {
  left: 0;
  padding-right: 12px;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  border-left: none;
}
.v-carousel__button--next {
  right: 0;
  padding-left: 12px;
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
  border-right: none;
}
.v-carousel__button:focus {
  border-color: #402368;
}
.v-carousel__button.disabled {
  pointer-events: none;
}
@media (hover: hover) {
  .v-carousel:hover .v-carousel__button:not(.disabled) {
    opacity: 1;
  }
}

.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
}
.glider-slide img {
  max-width: 100%;
}
.glider-dots {
  position: relative;
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
.glider-dot {
  background: none;
  border: 0;
  padding: 0;
  user-select: none;
  outline: none;
  display: block;
  cursor: pointer;
  color: #e9dcfb;
  border-radius: 999px;
  background: #e9dcfb;
  width: 12px;
  height: 12px;
  margin: 7px;
}
.glider-dot:hover {
  background: #cfb2f7;
}
.glider-dot:focus, .glider-dot.active {
  background: #9451ee;
}
.glider-track {
  transform: translateZ(0);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 0;
}
.glider-slide {
  width: 100%;
}

.v-censor-rating-icon {
  height: 35px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.v-censor-rating-icon__classification {
  height: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 3px;
  color: inherit;
  text-align: center;
  border: none;
  background-color: #e6ebee;
  vertical-align: text-top;
}

.v-message {
  box-sizing: border-box;
  width: auto;
  margin: 0;
  padding: 40px 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  background-color: transparent;
  border-radius: 5px;
}
.v-message__icon {
  width: 100%;
  height: 160px;
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .v-message__icon {
    height: 232px;
  }
}
.v-message__title {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 26px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  font-weight: 300;
  color: #e82c2a;
  margin: 0 0 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .v-message__title {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}
.v-message__description {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.3;
  font-weight: 200;
  color: #1d102f;
  margin: 0;
  text-align: center;
  white-space: pre-wrap;
}
.v-message__description:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .v-message__description {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 26px;
  }
}

.v-showtime-picker-film {
  display: grid;
  width: 100%;
  grid-template-rows: min-content min-content 1fr auto auto auto auto;
  grid-column-gap: 8px;
  grid-row-gap: 12px;
  margin: 0;
}
.v-showtime-picker-film--media-type-poster {
  grid-template-columns: 150px 1fr;
  grid-template-areas: "thumbnail film-details" "thumbnail runtime" "thumbnail trailer-button" "custom-actions custom-actions" "attributes attributes" "site-list site-list" "action-link action-link";
}
.v-showtime-picker-film--media-type-still, .v-showtime-picker-film--media-type-backdrop {
  grid-template-columns: minmax(290px, 1fr);
  grid-template-areas: "thumbnail" "film-details" "runtime" "trailer-button" "custom-actions" "attributes" "site-list" "action-link";
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film {
    grid-template-areas: "thumbnail film-details film-details" "thumbnail custom-actions custom-actions" "thumbnail runtime attributes" "thumbnail site-list site-list" "thumbnail action-link action-link" "trailer-button . .";
    grid-template-rows: auto;
    grid-column-gap: 24px;
  }
  .v-showtime-picker-film--media-type-poster {
    grid-template-columns: 215px 100px 1fr;
  }
  .v-showtime-picker-film--media-type-still, .v-showtime-picker-film--media-type-backdrop {
    grid-template-columns: 210px 100px 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .v-showtime-picker-film--media-type-poster {
    grid-template-columns: 225px 100px 1fr;
  }
  .v-showtime-picker-film--media-type-still, .v-showtime-picker-film--media-type-backdrop {
    grid-template-columns: 346px 100px 1fr;
  }
}
.v-showtime-picker-film--no-film-details {
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "attributes" "site-list" "action-link";
}
.v-showtime-picker-film .v-attribute-legend {
  grid-area: attributes;
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film .v-attribute-legend {
    margin: 0;
  }
}
.v-showtime-picker-film .v-film-trailer-button {
  grid-area: trailer-button;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film .v-film-trailer-button {
    justify-self: center;
    margin-top: 8px;
    /* Forcing the trailer button to start on the first row from tablet screen sizes so that it can start 
    right below the thumbnail. Otherwise,the trailer button starts after the all the contents that are beside 
    the film thumbnail in the grid area. */
    padding-top: 150%;
    grid-row-start: 1;
  }
}
.v-showtime-picker-film .v-film-custom-action-list {
  grid-area: custom-actions;
}
.v-showtime-picker-film .v-film-runtime {
  grid-area: runtime;
  display: inline-flex;
  flex-direction: column;
}
.v-showtime-picker-film .v-detail__heading {
  margin: 0;
  display: inline;
  color: #e82c2a;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 4px;
}
.v-showtime-picker-film .v-detail__content {
  font-weight: 300;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film--media-type-still .v-film-trailer-button, .v-showtime-picker-film--media-type-backdrop .v-film-trailer-button {
    padding-top: 60%;
  }
}

.v-showtime-picker-film-action-link {
  grid-area: action-link;
  border-top: 1px solid #000000;
  text-align: center;
  padding-top: 16px;
}
.v-showtime-picker-film-action-link__link {
  text-decoration: none;
  color: #e82c2a;
  outline: none;
  cursor: pointer;
}
@media (hover: hover) {
  .v-showtime-picker-film-action-link__link:hover {
    text-decoration: underline;
    color: #e82c2a;
  }
}

.v-showtime-picker-film-details {
  grid-area: film-details;
  width: 100%;
  margin-bottom: 6px;
}
.v-showtime-picker-film-details__film-link {
  color: inherit;
}
.v-showtime-picker-film-details .v-film-title__text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-details .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}
.v-showtime-picker-film-details .v-film-title__censor-rating {
  height: 22px;
  min-width: 22px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-details .v-film-title__censor-rating {
    height: 28px;
    min-width: 28px;
  }
}
.v-showtime-picker-film-details .v-film-title__censor-rating .v-censor-rating-icon__classification {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  min-width: 22px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-details .v-film-title__censor-rating .v-censor-rating-icon__classification {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 24px;
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1;
    min-width: 28px;
  }
}
.v-showtime-picker-film-details .v-film-synopsis {
  display: none;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-details .v-film-synopsis {
    display: block;
    margin: 16px 0 4px;
  }
  .v-showtime-picker-film-details .v-film-synopsis .v-detail__content {
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1.5;
    color: #291642;
  }
}

.v-showtime-picker-film-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0 12px;
  margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-list {
    padding: 0 0;
    margin-bottom: 36px;
  }
}
.v-showtime-picker-film-list__item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.v-showtime-picker-film-thumbnail {
  position: relative;
  grid-area: thumbnail;
  text-align: center;
  margin-bottom: 6px;
}
.v-showtime-picker-film-thumbnail--media-type-poster {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-thumbnail--media-type-poster {
    height: 0;
    width: 215px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .v-showtime-picker-film-thumbnail--media-type-poster {
    width: 225px;
    margin-bottom: 0;
  }
}
.v-showtime-picker-film-thumbnail--media-type-still, .v-showtime-picker-film-thumbnail--media-type-backdrop {
  width: auto;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-film-thumbnail--media-type-still, .v-showtime-picker-film-thumbnail--media-type-backdrop {
    width: 210px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .v-showtime-picker-film-thumbnail--media-type-still, .v-showtime-picker-film-thumbnail--media-type-backdrop {
    width: 346px;
    margin-bottom: 0;
  }
}

.v-showtime-picker-message__clear-button {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  color: #9451ee;
  margin: 0;
}
@media (hover: hover) {
  .v-showtime-picker-message__clear-button:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}

.v-showtime-picker-site {
  display: flex;
  flex-direction: column;
}
.v-showtime-picker-site__common-attributes {
  margin-bottom: 12px;
}
.v-showtime-picker-site__empty-list-label {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  color: #1d102f;
  font-weight: 300;
  margin: 8px 0;
}
.v-showtime-picker-site .v-film-advance-booking-period-notification {
  margin-bottom: 20px;
  align-self: flex-start;
}

.v-showtime-picker-site-details {
  display: flex;
  flex-direction: column;
}

.v-showtime-picker-site-details__heading--h3 {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 22px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  font-weight: 300;
  margin: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-site-details__heading--h3 {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}
.v-showtime-picker-site-details__heading--h4 {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  font-weight: 300;
  margin: 0 0 12px;
}

.v-showtime-picker-site-list {
  grid-area: site-list;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}
.v-showtime-picker-site-list__item:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .v-showtime-picker-site-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.v-showtime-picker-film-runtime__heading--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 18px;
  width: 110px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
}
.v-showtime-picker-film-runtime__runtime--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 16px;
  width: 110px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
}

.v-showtime-picker-film-details .v-film-title--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 38px;
  width: 80%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
  margin-bottom: 8px;
}

.v-showtime-picker-site-details__title--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 20px;
  width: 22%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
  margin-bottom: 8px;
}

.v-showtime-picker {
  display: flex;
  flex-flow: column nowrap;
}
.v-showtime-picker__action-button {
  margin: 0 auto;
  padding-left: 38px;
  padding-right: 38px;
  align-self: center;
}

.v-attribute-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.v-attribute-list__heading {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  height: 20px;
  margin-bottom: 4px;
  color: #8a8d8e;
}
.v-attribute-list__heading:not(:last-child) {
  margin-right: 8px;
}
.v-attribute-list__item {
  height: 20px;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  margin-bottom: 4px;
}
.v-attribute-list__item:not(:last-child) {
  margin-right: 4px;
}
.v-attribute-list--show-details {
  flex-direction: column;
}
.v-attribute-list--show-details .v-attribute-list__item {
  height: auto;
}
.v-attribute-list--show-details .v-attribute-list__item:not(:last-child) {
  margin-bottom: 16px;
}
.v-attribute-list--show-details:not(:last-child) {
  margin-bottom: 16px;
}

.v-showtime-list-button {
  color: #e82c2a;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  flex-flow: row nowrap;
  flex-shrink: 0;
  position: relative;
  user-select: none;
  height: 100%;
}
@media (hover: hover) {
  .v-showtime-list-button:not(.v-showtime-list-button--disabled):not(:active):hover {
    background: linear-gradient(180deg, #fafafa 0%, #f7f7f7 100%);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
  }
}
.v-showtime-list-button--disabled {
  pointer-events: none;
  background: none;
  background-color: #f3f6f7;
  color: #7a7a7a;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}
.v-showtime-list-button--disabled .v-attribute--type-hero {
  background-color: #acafb3;
}
.v-showtime-list-button--disabled .v-attribute__icon--type-hero {
  filter: grayscale(1);
}
.v-showtime-list-button--disabled .v-showtime-list-button__screen-name,
.v-showtime-list-button--disabled .v-attribute-list {
  display: none;
}
.v-showtime-list-button:active {
  background: linear-gradient(180deg, #f4f4f4 0%, #ededed 100%);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.4);
}
.v-showtime-list-button__detail-wrapper {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 8px;
  padding-top: 14px;
  flex-flow: column nowrap;
  align-content: center;
}
.v-showtime-list-button__detail-start-time-wrapper {
  flex-grow: 2;
  margin-bottom: 4px;
}
.v-showtime-list-button__detail-start-time {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: 700;
}
.v-showtime-list-button__detail-start-time-ampm {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-left: 0.5ch;
}
.v-showtime-list-button__screen-name {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  margin-bottom: 8px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-showtime-list-button__sold-out {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}
.v-showtime-list-button__attribute-list {
  flex-flow: row wrap;
  overflow: hidden;
  height: 20px;
}
.v-showtime-list-button .v-attribute__icon--type-hero {
  width: 48px;
  height: 100%;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 0 5px 5px 0;
  background-color: #1b1c1c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}
.v-showtime-list-button .v-attribute__icon--type-hero .v-attribute__img {
  padding: 0;
  width: 100%;
  height: auto;
}
.v-showtime-list-button .v-attribute--type-promoted {
  display: block;
  position: absolute;
  top: -8px;
  left: 8px;
  height: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: inherit;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
}
.v-showtime-list-button .v-attribute__icon--type-promoted {
  height: 100%;
}

.v-showtime-list__button-wrapper--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 78px;
  width: 100%;
  border-radius: 5px;
  background-color: #dce1e4;
  display: inline-block;
}

.v-showtime-list__heading {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  margin: 0 0 20px;
  color: #e82c2a;
  font-weight: 300;
}
.v-showtime-list__heading-label {
  padding-top: 8px;
}
.v-showtime-list__list {
  list-style: none;
  padding: 0;
  display: grid;
  margin: 0 0 12px;
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 319px) {
  .v-showtime-list__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 600px) {
  .v-showtime-list__list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .v-showtime-list__list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
}
.v-showtime-list__item {
  display: flex;
  margin: 0;
  min-width: 0;
}
.v-showtime-list__button-wrapper {
  flex-grow: 1;
  max-width: 100%;
}
.v-showtime-list:not(:last-child) {
  margin-bottom: 12px;
}

.v-date-picker-date {
  display: flex;
}
.v-date-picker-date__button {
  background: none;
  border: none;
  color: #ffffef;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  transition: background-color 150ms ease-in-out;
  text-transform: uppercase;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.v-date-picker-date__button:focus {
  background-color: #e82c2a;
}
@media (hover: hover) {
  .v-date-picker-date__button:not(.v-date-picker-date__button--selected):hover {
    background-color: #737373;
  }
}
.v-date-picker-date__button--selected {
  cursor: default;
  color: #ffffef !important;
  background-color: #e82c2a !important;
}
.v-date-picker-date__button--selected::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0;
  border-color: #e82c2a transparent transparent;
}
.v-date-picker-date__button--inactive {
  color: #ffffef;
}
.v-date-picker-date__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100%;
}
.v-date-picker-date__label--today {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 20px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: 700;
  word-wrap: break-word;
  min-width: 50px;
}
.v-date-picker-date__day-of-week, .v-date-picker-date__day-of-month, .v-date-picker-date__month {
  min-width: 50px;
}
.v-date-picker-date__day-of-week, .v-date-picker-date__month {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: 300;
}
.v-date-picker-date__day-of-week {
  margin-bottom: 3px;
}
.v-date-picker-date__day-of-month {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 24px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 700;
}

.v-date-picker.v-date-picker--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}

.v-date-picker {
  background-color: #2e2e2e;
  margin-bottom: 30px;
  height: 80px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .v-date-picker {
    margin-bottom: 40px;
  }
}
.v-date-picker .v-carousel {
  height: 100%;
}
.v-date-picker .v-carousel__button {
  position: static;
  height: 100%;
  opacity: 1;
  border-radius: 0;
  background-color: transparent;
  outline: none;
  fill: #ffffef;
  padding: 8px;
  border: none;
  transition-property: background-color, fill;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}
.v-date-picker .v-carousel__button.disabled {
  fill: #ffffef;
}
@media (hover: hover) {
  .v-date-picker .v-carousel__button:not(:disabled):hover {
    background-color: #737373;
  }
}

@-moz-document url-prefix() {
  .v-date-picker .v-carousel__button {
    height: calc(100% - 17px);
  }
}
.v-display-text-part {
  display: inline;
}
.v-display-text-part__paragraph {
  margin: 0 0 16px;
}
.v-display-text-link {
  color: #9451ee;
}
@media (hover: hover) {
  .v-display-text-link:hover {
    color: #9451ee;
    text-decoration: underline;
  }
}
.v-display-text-link--has-icon {
  color: #000;
}
@media (hover: hover) {
  .v-display-text-link--has-icon:hover {
    color: #000;
    text-decoration: none;
  }
}
.v-display-text .v-icon {
  color: #000;
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .v-display-text .v-icon:hover {
    color: #000;
    text-decoration: none;
  }
}

.v-input,
.v-text-area,
.v-dropdown-button {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  min-height: 40px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  background-color: #fff;
  border-color: #dce1e4;
  color: #1d102f;
  fill: #1d102f;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .v-input,
.v-text-area,
.v-dropdown-button {
    min-height: 34px;
  }
}
.v-input:focus, .v-input:active,
.v-text-area:focus,
.v-text-area:active,
.v-dropdown-button:focus,
.v-dropdown-button:active {
  outline: none;
}
.v-input:disabled,
.v-text-area:disabled,
.v-dropdown-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
@media (hover: hover) {
  .v-input:not(:focus):not(:disabled):hover,
.v-text-area:not(:focus):not(:disabled):hover,
.v-dropdown-button:not(:focus):not(:disabled):hover {
    border-color: #000000;
  }
}
.v-input:focus,
.v-text-area:focus,
.v-dropdown-button:focus {
  border-color: #000000;
  box-shadow: 0 1px 3px 0 rgba(108, 58, 142, 0.3);
}
.v-input[disabled],
.v-text-area[disabled],
.v-dropdown-button[disabled] {
  background-color: #e6ebee;
  border-color: #cacfd2;
  color: #525455;
  fill: #525455;
}
.v-input--style-warning,
.v-text-area--style-warning,
.v-dropdown-button--style-warning {
  background-color: #fbf1e1;
  border-color: #e69f2a;
}
@media (hover: hover) {
  .v-input--style-warning:not(:focus):not(:disabled):hover,
.v-text-area--style-warning:not(:focus):not(:disabled):hover,
.v-dropdown-button--style-warning:not(:focus):not(:disabled):hover {
    border-color: #f3d29c;
  }
}
.v-input--style-warning:focus,
.v-text-area--style-warning:focus,
.v-dropdown-button--style-warning:focus {
  border-color: #eebe6e;
  box-shadow: 0 0 1px 1px #e69f2a;
}
.v-input--style-error,
.v-text-area--style-error,
.v-dropdown-button--style-error {
  background-color: #fdefef;
  border-color: #f03434;
}
@media (hover: hover) {
  .v-input--style-error:not(:focus):not(:disabled):hover,
.v-text-area--style-error:not(:focus):not(:disabled):hover,
.v-dropdown-button--style-error:not(:focus):not(:disabled):hover {
    border-color: #fcd6d6;
  }
}
.v-input--style-error:focus,
.v-text-area--style-error:focus,
.v-dropdown-button--style-error:focus {
  border-color: #b62727;
  box-shadow: 0 0 1px 1px #f03434;
}

.v-radio-input,
.v-checkbox-input,
.v-toggle-input {
  display: flex;
  box-sizing: border-box;
}
.v-radio-input__label,
.v-checkbox-input__label,
.v-toggle-input__label {
  display: inline-flex;
  flex-direction: row;
  user-select: none;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  align-items: center;
  cursor: pointer;
}
.v-radio-input__label--disabled,
.v-checkbox-input__label--disabled,
.v-toggle-input__label--disabled {
  cursor: not-allowed;
}
.v-radio-input__input,
.v-checkbox-input__input,
.v-toggle-input__input {
  opacity: 0;
  position: absolute;
}

.v-radio-input__button,
.v-checkbox-input__button {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  min-height: 40px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  display: block;
  position: relative;
  margin-right: 9px;
  padding: 0;
  flex-shrink: 0;
  min-width: 22px;
  width: 22px;
  min-height: 22px;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .v-radio-input__button,
.v-checkbox-input__button {
    min-height: 34px;
  }
}
.v-radio-input__button:focus, .v-radio-input__button:active,
.v-checkbox-input__button:focus,
.v-checkbox-input__button:active {
  outline: none;
}
.v-radio-input__button:disabled,
.v-checkbox-input__button:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .v-radio-input__button,
.v-checkbox-input__button {
    min-width: 20px;
    width: 20px;
    min-height: 20px;
    height: 20px;
  }
}
.v-radio-input__button--size-large,
.v-checkbox-input__button--size-large {
  min-width: 24px;
  width: 24px;
  min-height: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .v-radio-input__button--size-large,
.v-checkbox-input__button--size-large {
    min-width: 24px;
    width: 24px;
    min-height: 24px;
    height: 24px;
  }
}
.v-radio-input__button::after,
.v-checkbox-input__button::after {
  opacity: 0;
  box-sizing: border-box;
  content: "";
  position: absolute;
}
.v-radio-input__button--checked::after,
.v-checkbox-input__button--checked::after {
  opacity: 1;
}
.v-radio-input .v-radio-input__button,
.v-radio-input .v-checkbox-input__button,
.v-checkbox-input .v-radio-input__button,
.v-checkbox-input .v-checkbox-input__button {
  background-color: #fff;
  border-color: #dce1e4;
  color: #1d102f;
  fill: #1d102f;
}
.v-radio-input .v-radio-input__button--focused,
.v-radio-input .v-checkbox-input__button--focused,
.v-checkbox-input .v-radio-input__button--focused,
.v-checkbox-input .v-checkbox-input__button--focused {
  border-color: #000000;
  box-shadow: 0 1px 3px 0 rgba(108, 58, 142, 0.3);
}
@media (hover: hover) {
  .v-radio-input .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-radio-input .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused) {
    border-color: #000000;
  }
}
.v-radio-input--style-warning .v-radio-input__button,
.v-radio-input--style-warning .v-checkbox-input__button,
.v-checkbox-input--style-warning .v-radio-input__button,
.v-checkbox-input--style-warning .v-checkbox-input__button {
  background-color: #fbf1e1;
  border-color: #e69f2a;
}
.v-radio-input--style-warning .v-radio-input__button--focused,
.v-radio-input--style-warning .v-checkbox-input__button--focused,
.v-checkbox-input--style-warning .v-radio-input__button--focused,
.v-checkbox-input--style-warning .v-checkbox-input__button--focused {
  border-color: #eebe6e;
  box-shadow: 0 0 1px 1px #e69f2a;
}
@media (hover: hover) {
  .v-radio-input--style-warning .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input--style-warning .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-radio-input--style-warning .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input--style-warning .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input--style-warning .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input--style-warning .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input--style-warning .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input--style-warning .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused) {
    border-color: #f3d29c;
  }
}
.v-radio-input--style-error .v-radio-input__button,
.v-radio-input--style-error .v-checkbox-input__button,
.v-checkbox-input--style-error .v-radio-input__button,
.v-checkbox-input--style-error .v-checkbox-input__button {
  background-color: #fdefef;
  border-color: #f03434;
}
.v-radio-input--style-error .v-radio-input__button--focused,
.v-radio-input--style-error .v-checkbox-input__button--focused,
.v-checkbox-input--style-error .v-radio-input__button--focused,
.v-checkbox-input--style-error .v-checkbox-input__button--focused {
  border-color: #b62727;
  box-shadow: 0 0 1px 1px #f03434;
}
@media (hover: hover) {
  .v-radio-input--style-error .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input--style-error .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-radio-input--style-error .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-radio-input--style-error .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input--style-error .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input--style-error .v-radio-input__label:not(.v-radio-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused),
.v-checkbox-input--style-error .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-radio-input__button:not(.v-radio-input__button--focused),
.v-checkbox-input--style-error .v-checkbox-input__label:not(.v-checkbox-input__label--disabled):hover .v-checkbox-input__button:not(.v-checkbox-input__button--focused) {
    border-color: #fcd6d6;
  }
}
.v-radio-input--disabled .v-radio-input__button,
.v-radio-input--disabled .v-checkbox-input__button,
.v-checkbox-input--disabled .v-radio-input__button,
.v-checkbox-input--disabled .v-checkbox-input__button {
  background-color: #e6ebee;
  border-color: #cacfd2;
  color: #525455;
  fill: #525455;
}
.v-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
  column-gap: 14px;
}
@media screen and (min-width: 768px) {
  .v-checkbox-group {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 12px;
    column-gap: 12px;
  }
}

.v-checkbox-input .v-checkbox-input__button {
  border-radius: 2px;
}
.v-checkbox-input .v-checkbox-input__button::after {
  border-style: solid;
  transform: rotate(45deg);
  transition: border-color 150ms ease-in-out;
  top: 2.64px;
  left: 6.6px;
  width: 6.6px;
  height: 12.1px;
  border-width: 0 2px 2px 0;
}
@media screen and (min-width: 768px) {
  .v-checkbox-input .v-checkbox-input__button::after {
    top: 2.4px;
    left: 6px;
    width: 6px;
    height: 11px;
    border-width: 0 2px 2px 0;
  }
}
.v-checkbox-input .v-checkbox-input__button--checked {
  background-color: #e82c2a;
  border-color: #ce1614;
}
.v-checkbox-input .v-checkbox-input__button::after {
  border-color: #ffffff;
}
.v-checkbox-input--style-warning .v-checkbox-input__button--checked {
  background-color: #e69f2a;
  border-color: #e69f2a;
}
.v-checkbox-input--style-warning .v-checkbox-input__button::after {
  border-color: #fff;
}
.v-checkbox-input--style-error .v-checkbox-input__button--checked {
  background-color: #f03434;
  border-color: #f03434;
}
.v-checkbox-input--style-error .v-checkbox-input__button::after {
  border-color: #fff;
}
.v-checkbox-input--disabled .v-checkbox-input__button--checked {
  background-color: #cacfd2;
  border-color: #cacfd2;
}
.v-checkbox-input--disabled .v-checkbox-input__button::after {
  border-color: #fff;
}

.v-dropdown-button {
  word-wrap: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  padding: 0;
}
.v-dropdown-button--show-search {
  border: 0;
}
.v-dropdown-button__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.v-dropdown-button__placeholder {
  padding-left: 8px;
  pointer-events: none;
  max-width: calc(100% - 24px);
}
.v-dropdown-button__icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  width: 24px;
  background: none;
  border: none;
  outline: none;
  flex-direction: row;
  cursor: inherit;
}
.v-dropdown-button__icon-button--show-search {
  position: relative;
  margin-left: -24px;
  align-self: flex-end;
  height: 34px;
}
.v-dropdown-button__icon {
  width: 10px;
  height: 10px;
}
.v-dropdown-button__icon--loading {
  width: 16px;
  height: 16px;
}
.v-dropdown-button--placeholder {
  color: #525455;
}

.v-dropdown-search-input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.v-dropdown-search-input__input {
  padding-right: 24px;
}
.v-dropdown-search-input__icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 24px;
  background: none;
  border: none;
  outline: none;
  flex-direction: row;
  cursor: inherit;
  position: relative;
  margin-left: -24px;
  height: 34px;
}
.v-dropdown-search-input__icon {
  width: 10px;
  height: 10px;
}

.v-dropdown-content--hidden {
  visibility: hidden;
}
.v-dropdown-content--show-as-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .v-dropdown-content--show-as-modal {
    position: static;
    display: initial;
    /* stylelint-disable-next-line property-disallowed-list */
    z-index: 0;
  }
}
@media screen and (min-width: 768px) {
  .v-dropdown-content__header, .v-dropdown-content__search-input, .v-dropdown-content__message.v-message {
    display: none;
  }
}
.v-dropdown-content__header {
  padding: 16px;
  border: none;
}
.v-dropdown-content__search-input {
  padding: 16px;
  border-top: 1px solid #dce1e4;
}
.v-dropdown-content__content {
  overflow-y: auto;
}
.v-dropdown-content__message.v-message {
  background-color: inherit;
  border-radius: 0;
}
.v-dropdown-content__message--show-top-border {
  border-top: 1px solid #dce1e4;
}

.v-dropdown-list {
  cursor: pointer;
  position: absolute;
  margin: 0;
  list-style: none;
  max-height: 45vh;
  overflow-y: auto;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  min-height: 40px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  background-color: #fff;
  border-color: #dce1e4;
  color: #1d102f;
  fill: #1d102f;
  width: 100%;
  padding: 0;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .v-dropdown-list {
    min-height: 34px;
  }
}
.v-dropdown-list:focus, .v-dropdown-list:active {
  outline: none;
}
.v-dropdown-list:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
@media (hover: hover) {
  .v-dropdown-list:not(:focus):not(:disabled):hover {
    border-color: #000000;
  }
}
.v-dropdown-list:focus {
  border-color: #000000;
  box-shadow: 0 1px 3px 0 rgba(108, 58, 142, 0.3);
}
.v-dropdown-list--position-below {
  top: calc(100% + 6px);
}
.v-dropdown-list--position-above {
  bottom: calc(100% + 6px);
}
.v-dropdown-list--in-mobile-modal {
  position: static;
  flex-grow: 1;
  max-height: 100%;
  overflow-y: unset;
  border-width: 0;
}
@media screen and (min-width: 768px) {
  .v-dropdown-list--in-mobile-modal {
    position: absolute;
    max-height: 45vh;
    overflow-y: auto;
    border-width: 1px;
  }
}
.v-dropdown-list--hide-in-mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .v-dropdown-list--hide-in-mobile {
    display: block;
  }
}
.v-dropdown-list__no-results {
  padding: 7px;
  cursor: default;
}

.v-dropdown-group__label {
  cursor: default;
  padding: 7px;
  outline: none;
  background-color: #f3f6f7;
  font-weight: 700;
}

.v-dropdown-list-item {
  display: flex;
  align-items: center;
  padding: 7px;
  transition: background-color 150ms ease-in-out;
  outline: none;
  min-height: 44px;
}
.v-dropdown-list-item--selected {
  background-color: #e9dcfb;
}
.v-dropdown-list-item--in-mobile-modal {
  border-top: 1px solid #e6ebee;
  padding: 7px 14px;
}
.v-dropdown-list-item--in-mobile-modal:last-child {
  border-bottom: 1px solid #e6ebee;
}
@media screen and (min-width: 768px) {
  .v-dropdown-list-item--in-mobile-modal {
    border: none;
    padding: 7px;
  }
}
.v-dropdown-list-item--disabled {
  background-color: #e6ebee;
  pointer-events: none;
}
@media (hover: hover) {
  .v-dropdown-list-item:hover {
    background-color: #f2eafd;
  }
}

.v-dropdown-option {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.v-dropdown-option__text {
  word-wrap: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-dropdown-option__icon {
  width: 30px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.v-film-dropdown-option {
  display: flex;
}
.v-film-dropdown-option__thumbnail {
  height: auto;
  margin-right: 12px;
}
.v-film-dropdown-option__thumbnail--media-type-poster {
  width: 40px;
}
.v-film-dropdown-option__thumbnail--media-type-still, .v-film-dropdown-option__thumbnail--media-type-backdrop {
  width: 94px;
}
.v-film-dropdown-option__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 100;
}
.v-film-dropdown-option .v-film-title:not(:last-child) {
  margin-bottom: 4px;
}
.v-film-dropdown-option .v-film-title__text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .v-film-dropdown-option .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 16px;
  }
}
.v-film-dropdown-option .v-film-title__text:not(:last-child) {
  margin-right: 8px;
}
.v-film-dropdown-option .v-film-title__censor-rating {
  height: 16px;
  min-width: 16px;
}
@media screen and (min-width: 768px) {
  .v-film-dropdown-option .v-film-title__censor-rating {
    height: 16px;
    min-width: 16px;
  }
}
.v-film-dropdown-option .v-film-title__censor-rating .v-censor-rating-icon__classification {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 12px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  min-width: 16px;
}
@media screen and (min-width: 768px) {
  .v-film-dropdown-option .v-film-title__censor-rating .v-censor-rating-icon__classification {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 12px;
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1;
    min-width: 16px;
  }
}
.v-film-dropdown-option__runtime {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 12px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  color: #aeb2b5;
}
.v-film-dropdown-option__runtime:not(:last-child) {
  margin-bottom: 8px;
}
.v-film-dropdown-option--preview .v-film-dropdown-option .v-film-title {
  word-wrap: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-screening-date-dropdown-option {
  display: flex;
}
.v-screening-date-dropdown-option__today-label {
  height: auto;
  color: #9451ee;
  font-weight: 700;
}
.v-screening-date-dropdown-option__screening-date:not(:last-child) {
  margin-right: 6px;
}
.v-screening-date-dropdown-option--preview .v-screening-date-dropdown-option__screening-date {
  word-wrap: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-showtime-dropdown-option {
  display: flex;
  flex-direction: column;
}
.v-showtime-dropdown-option--is-sold-out {
  width: 100%;
}
.v-showtime-dropdown-option--is-sold-out .v-showtime-dropdown-option__schedule {
  display: flex;
  justify-content: space-between;
  color: #8a8d8e;
}
.v-showtime-dropdown-option__schedule {
  display: inline-flex;
}
.v-showtime-dropdown-option__schedule:not(:last-child) {
  margin-bottom: 4px;
}
.v-showtime-dropdown-option__showtime:not(:last-child) {
  margin-right: 8px;
}
.v-showtime-dropdown-option__attribute {
  height: auto;
  color: #9451ee;
  font-weight: 700;
}
.v-showtime-dropdown-option__screen-name {
  display: block;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 12px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  color: #aeb2b5;
}
.v-showtime-dropdown-option__sold-out {
  font-weight: 700;
}
.v-showtime-dropdown-option--preview .v-showtime-dropdown-option__attribute {
  word-wrap: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-dropdown {
  display: block;
  position: relative;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
}
.v-dropdown--is-expanded {
  overflow: visible;
}
.v-dropdown--mode-inline .v-dropdown-button {
  display: initial;
  background: transparent;
  border: none;
}
.v-dropdown--mode-inline .v-dropdown-button:focus {
  box-shadow: none;
}
.v-dropdown .v-dropdown-list-item + .v-dropdown-group__label,
.v-dropdown .v-dropdown-group__label + .v-dropdown-list-item {
  border-top: 1px solid #dce1e4;
}

.v-field,
.v-fieldset {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}
.v-field:not(:last-child),
.v-fieldset:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .v-field:not(:last-child),
.v-fieldset:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.v-field .v-help-text,
.v-fieldset .v-help-text {
  display: inline-block;
}

.v-field--floating-label .v-input-wrapper,
.v-field--floating-label .v-dropdown {
  display: flex;
  height: 62px;
}
@media screen and (min-width: 768px) {
  .v-field--floating-label .v-input-wrapper,
.v-field--floating-label .v-dropdown {
    height: 58px;
  }
}
.v-field--floating-label .v-input-wrapper--has-value .v-label, .v-field--floating-label .v-input-wrapper--focused .v-label,
.v-field--floating-label .v-dropdown--has-value .v-label,
.v-field--floating-label .v-dropdown--focused .v-label {
  transform: scale(1);
}
.v-field--floating-label .v-input,
.v-field--floating-label .v-dropdown-button {
  align-self: flex-end;
}
.v-field--floating-label .v-dropdown-button {
  height: 0;
}
.v-field--floating-label .v-label {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  font-weight: 300;
  pointer-events: none;
  position: absolute;
  transition: all 150ms ease-in-out;
  transform: translate(8px, 35px);
}
@media screen and (min-width: 768px) {
  .v-field--floating-label .v-label {
    transform: translate(8px, 33px);
  }
}

.v-field--skeleton {
  border: none;
}

.v-file-input {
  width: 100%;
}
.v-file-input input[type=file] {
  display: none;
}
.v-file-input--mode-dropzone {
  border: 1px dashed #aeb2b5;
  border-radius: 3px;
  text-align: center;
}
.v-file-input--drag-is-active {
  border-style: solid;
}
.v-file-input__dropzone-content {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 100%;
}
.v-file-input__dropzone-icon {
  display: block;
  margin-bottom: 12px;
  height: 60px;
  width: 60px;
  fill: #cacfd2;
}
.v-file-input__browse-text {
  text-decoration: none;
  color: #9451ee;
  cursor: pointer;
  min-height: 0;
  font-weight: 300;
}
.v-file-input .v-file-dropzone {
  width: auto;
  height: 100%;
}

.v-help-text-list {
  color: #b62727;
  width: 100%;
  margin: 0 0 12px 0;
  margin-top: -8px;
}
.v-help-text-list__list {
  padding-left: 18px;
  margin: 0;
}
.v-help-text-list__list .v-help-text {
  margin-top: 0;
}

.v-help-text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 4px 0 0 0;
  color: #aeb2b5;
}
.v-help-text--style-warning {
  color: #c28732;
}
.v-help-text--style-error {
  color: #b62727;
}
.v-help-text--style-success {
  color: #008848;
}

.v-input-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
}
.v-input-wrapper .v-icon {
  fill: #525455;
  height: 100%;
  width: 20px;
  top: 0;
  right: 0;
}

.v-input {
  display: block;
  appearance: textfield;
}
.v-input::-ms-clear {
  display: none;
}
.v-input::-webkit-outer-spin-button, .v-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.v-input__validating-icon {
  position: absolute;
  padding-right: 10px;
  height: 40px;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .v-input__validating-icon {
    height: 34px;
  }
}

.v-input--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 34px;
  width: 100%;
  border-radius: 4px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
}

.v-label {
  display: block;
  font-weight: 300;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  color: #1d102f;
  padding: 0;
}
.v-label:not(:last-child) {
  margin-bottom: 4px;
}
.v-label__text {
  display: inline;
}
.v-label__optional-suffix {
  color: #aeb2b5;
}
.v-label--style-error {
  color: #b62727;
}

.v-label--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 16px;
  width: 200px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
}

.v-number-input {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}
.v-number-input .v-input,
.v-number-input .v-select {
  flex-grow: 1;
}
.v-number-input .v-input {
  text-align: center;
  position: relative;
  min-width: 35px;
  padding-left: 5px;
  padding-right: 5px;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 2;
}
.v-number-input--type-spinner {
  min-width: 115px;
}
.v-number-input__button.v-button {
  margin: 0;
  position: relative;
  min-width: 42px;
  min-height: 40px;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .v-number-input__button.v-button {
    min-width: 36px;
    min-height: 34px;
  }
}
.v-number-input .v-button__icon {
  min-width: 32px;
  min-height: 32px;
}
@media screen and (min-width: 768px) {
  .v-number-input .v-button__icon {
    min-width: 27.2px;
    min-height: 27.2px;
  }
}
.v-number-input__button--minus.v-button {
  margin-right: 10px;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.v-number-input__button--plus.v-button {
  margin-left: 10px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.v-password-input {
  display: flex;
  position: relative;
}
.v-password-input__visibility-button {
  position: relative;
  height: 40px;
  width: 44px;
  padding: 0;
  top: 0;
  right: 0;
  background: none;
  border: none;
  outline: none;
  fill: #525455;
  transition: fill 150ms ease-in-out;
  cursor: pointer;
  margin-left: -44px;
  align-self: flex-end;
}
@media (hover: hover) {
  .v-password-input__visibility-button:hover {
    fill: #9451ee;
  }
}
@media screen and (min-width: 768px) {
  .v-password-input__visibility-button {
    height: 34px;
  }
}
.v-password-input .v-input {
  padding-right: 44px;
}
.v-password-input__icon {
  width: 18px;
  height: 100%;
}

.v-password-rule-checker {
  display: block;
  max-width: 380px;
}
.v-password-rule-checker .v-password-input {
  margin-bottom: 2px;
}

.v-password-rule-checker-rule-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0 0 0 4px;
}

.v-password-rule-checker-rule {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 14px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.6;
  color: #aeb2b5;
  fill: #aeb2b5;
}
.v-password-rule-checker-rule__icon {
  width: 12px;
  height: 12px;
  padding: 4px;
  margin-right: 4px;
}
.v-password-rule-checker-rule__icon--valid {
  padding: 0;
}
.v-password-rule-checker-rule__icon--invalid {
  padding: 2px;
}
.v-password-rule-checker-rule--status-valid {
  color: #008848;
  fill: #008848;
}
.v-password-rule-checker-rule--status-invalid {
  color: #b62727;
  fill: #b62727;
}

.v-radio-group {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .v-radio-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.v-radio-group .v-radio-input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .v-radio-group .v-radio-input {
    width: auto;
  }
}
.v-radio-group .v-radio-input:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .v-radio-group .v-radio-input:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.v-radio-input__button {
  border-radius: 50%;
}
.v-radio-input .v-radio-input__button {
  fill: none;
}
@media (hover: hover) {
  .v-radio-input:hover .v-radio-input__button:not(.v-radio-input__button--checked) {
    fill: #000000;
  }
}
.v-radio-input__icon {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .v-radio-input__icon {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
  }
}
.v-radio-input__icon--custom-icon {
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .v-radio-input__icon--custom-icon {
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
  }
}
.v-radio-input__icon--size-large {
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
}
.v-radio-input__icon--size-large.v-radio-input__icon--custom-icon {
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
}
.v-radio-input .v-radio-input__button--checked {
  fill: #703db5;
}
.v-radio-input--style-warning .v-radio-input__button--checked {
  fill: #e69f2a;
}
.v-radio-input--style-error .v-radio-input__button--checked {
  fill: #f03434;
}
.v-radio-input--disabled .v-radio-input__button--checked {
  fill: #cacfd2;
}
@media (hover: hover) {
  .v-radio-input--disabled:hover .v-radio-input__button:not(.v-radio-input__button--checked) {
    fill: none;
  }
}

.v-range-input {
  width: 100%;
  display: flex;
}
.v-range-input input[type=range] {
  -webkit-appearance: none;
}
.v-range-input input[type=range]:invalid {
  box-shadow: none !important;
}
.v-range-input__input {
  width: 100%; /* Specific width is required for Firefox. */
  appearance: none; /* Hides the slider so that custom slider can be made */
  background: transparent; /* Otherwise white in Chrome */
}
.v-range-input__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #d8d8d8;
  height: 20px;
  width: 21px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  margin-top: -8px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}
.v-range-input__input::-moz-range-thumb {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #d8d8d8;
  height: 20px;
  width: 21px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.v-range-input__input::-ms-thumb {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #d8d8d8;
  height: 20px;
  width: 21px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.v-range-input__input:focus {
  outline: none;
}
.v-range-input__input::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.v-range-input__input::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  background-color: #e1e6ea;
  border-radius: 6px;
}
.v-range-input__input:focus::-webkit-slider-runnable-track {
  background: #e1e6ea;
}
.v-range-input__input::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  background-color: #e1e6ea;
  border-radius: 6px;
}
.v-range-input__input::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.v-range-input__input::-ms-fill-lower {
  background-color: #e1e6ea;
  border: 0.2px solid #010101;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.v-range-input__input:focus::-ms-fill-lower {
  background-color: #e1e6ea;
}
.v-range-input__input::-ms-fill-upper {
  background-color: #e1e6ea;
  border: 0.2px solid #010101;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.v-range-input__input:focus::-ms-fill-upper {
  background-color: #e1e6ea;
}

.v-text-area {
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
  appearance: textfield;
}
.v-text-area::-ms-clear {
  display: none;
}

.v-toggle-input__button {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  box-sizing: border-box;
  box-shadow: none;
  appearance: none;
  min-height: 40px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  display: block;
  position: relative;
  margin-right: 9px;
  padding: 0;
  flex-shrink: 0;
  border-color: #cacfd2;
  border-radius: 20px;
  background-color: #cacfd2;
  box-sizing: content-box;
  transition: background-color 200ms, border-color 200ms;
  width: 32px;
  height: 16px;
  min-height: 16px;
  border-width: 3.5px;
}
@media screen and (min-width: 768px) {
  .v-toggle-input__button {
    min-height: 34px;
  }
}
.v-toggle-input__button:focus, .v-toggle-input__button:active {
  outline: none;
}
.v-toggle-input__button:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
.v-toggle-input__button--checked {
  border-color: #6ac46d;
  background-color: #6ac46d;
}
@media screen and (min-width: 768px) {
  .v-toggle-input__button {
    width: 28px;
    height: 14px;
    min-height: 14px;
    border-width: 3px;
  }
}
.v-toggle-input__button::after {
  border-radius: 50%;
  position: absolute;
  content: "";
  background-color: #fff;
  transition: left 200ms;
  box-sizing: border-box;
  left: 0;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .v-toggle-input__button::after {
    width: 14px;
    height: 14px;
  }
}
.v-toggle-input__button--checked::after {
  left: 16px;
}
@media screen and (min-width: 768px) {
  .v-toggle-input__button--checked::after {
    left: 14px;
  }
}
.v-toggle-input__loading-dots {
  content: ".";
  color: transparent;
  text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent;
  animation: loading-dots 1s 200ms infinite;
}
@keyframes loading-dots {
  25% {
    color: #000;
    text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent;
  }
  50% {
    color: #000;
    text-shadow: 0.25em 0 0 #000, 0.5em 0 0 transparent;
  }
  75% {
    color: #000;
    text-shadow: 0.25em 0 0 #000, 0.5em 0 0 #000;
  }
}
.v-toggle-input--disabled .v-toggle-input__button {
  background-color: #cacfd2;
  border-color: #cacfd2;
}
.v-toggle-input--disabled .v-toggle-input__button--checked {
  background-color: #b4e0b6;
  border-color: #b4e0b6;
}
.v-toggle-input--disabled .v-toggle-input__label {
  color: #cacfd2;
}
.v-toggle-input--disabled .v-toggle-input__loading-dots {
  content: ".";
  color: transparent;
  text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent;
  animation: loading-dots__disabled 1s 200ms infinite;
}
@keyframes loading-dots__disabled {
  25% {
    color: #cacfd2;
    text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent;
  }
  50% {
    color: #cacfd2;
    text-shadow: 0.25em 0 0 #cacfd2, 0.5em 0 0 transparent;
  }
  75% {
    color: #cacfd2;
    text-shadow: 0.25em 0 0 #cacfd2, 0.5em 0 0 #cacfd2;
  }
}

.v-form__buttons {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .v-form__buttons {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.v-form__submit-button {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .v-form__submit-button {
    margin-bottom: 0;
  }
}
.v-form__cancel-button.v-button {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .v-form__cancel-button.v-button {
    margin-right: 0.5rem;
  }
}

.v-accordion-section {
  border-bottom: 1px solid #ffffef;
  overflow-y: hidden;
}
.v-accordion-section__header {
  padding: 16px 0;
  color: #ffffef;
  display: flex;
  flex-wrap: wrap;
}
@media (hover: hover) {
  .v-accordion-section__header:hover {
    cursor: pointer;
  }
}
.v-accordion-section__header:focus {
  outline: none;
}
.v-accordion-section__title {
  margin: 0;
  flex-grow: 1;
  font-weight: bold;
}
.v-accordion-section__subtitle {
  flex: 0 1 100%;
  display: flex;
}
.v-accordion-section__expanded-indicator {
  width: 24px;
  text-align: center;
}
.v-accordion-section__expanded-indicator .v-expand-content-indicator__icon {
  fill: #000;
}
.v-accordion-section__content {
  transition: all 150ms ease-in-out;
  will-change: margin-bottom, max-height;
  overflow-y: hidden;
  position: relative;
}

.v-picture-icon-primary-shape {
  fill: #e82c2a;
}

.v-picture-icon-secondary-shape {
  fill: #000000;
}

.v-picture-icon-background-shape {
  fill: #b5b5b5;
}

.v-picture-icon-primary-outline {
  stroke: #e82c2a;
}

.v-picture-icon-background-outline {
  stroke: #b5b5b5;
}

.v-picture-icon-primary-detail {
  fill: #9c8ab5;
}

.v-picture-icon-secondary-detail {
  fill: #0c0c0c;
}

.v-icon--spinner {
  animation: loading-rotation 0.7s linear infinite;
}

@keyframes loading-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.v-expand-content-indicator__icon {
  width: 12px;
  height: 12px;
  fill: #8a8d8e;
  transform: rotate(0deg);
  transition: transform 0.4s ease-in-out;
}
.v-expand-content-indicator__icon--is-expanded {
  transform: rotate(-180deg);
}

.v-modal-header {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  padding: 16px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.v-modal-header__image.v-image {
  width: 100%;
}
.v-modal-header--underline {
  border-bottom: 1px solid #dce1e4;
}
.v-modal-header__title {
  flex-grow: 1;
  margin: 0;
}
.v-modal-header__close-button.v-button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 48px;
  background: none;
  outline: none;
  border: none;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 200;
}
.v-modal-header__close-button.v-button .v-icon {
  width: 24px;
  height: 24px;
  fill: #000000;
  background: #fff;
  border-radius: 100%;
  padding: 6px;
}
@media screen and (min-width: 768px) {
  .v-modal-header__close-button.v-button .v-icon {
    padding: 5px;
  }
}
.v-modal-header__close-button.v-button .v-icon:hover {
  fill: #e82c2a;
}
.v-modal-header__close-button.v-button::-moz-focus-inner {
  border: 0;
}
.v-modal-header .v-button--color-secondary:not(:active):not(:disabled):focus {
  border: none;
  box-shadow: none;
}
.v-modal-header .v-button--color-secondary:not(:disabled):active {
  background: none;
}
.v-modal-header .v-button--color-secondary:not(:disabled):not(:active):hover {
  background: none;
}
.v-modal-header__icon {
  width: 20px;
  height: 20px;
}

.v-modal-footer {
  border-top: 1px solid #e6ebee;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 201;
}
@media screen and (min-width: 768px) {
  .v-modal-footer {
    border-radius: 0 0 5px 5px;
  }
}
.v-modal-footer__content {
  padding: 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .v-modal-footer__content {
    padding: 0 24px 16px;
  }
}

.v-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.5;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 200;
}
@media screen and (min-width: 1200px) {
  .v-modal--anchored-to-top {
    justify-content: flex-start;
    margin-top: 40px;
  }
}
.v-modal__background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(46, 47, 47, 0.8);
}
.v-modal__container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .v-modal__container {
    height: auto;
    max-height: 90%;
    max-width: 80%;
    width: fit-content;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
}
.v-modal__body {
  overflow-y: auto;
  overflow-x: hidden;
  flex-grow: 1;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .v-modal__body {
    padding: 0 24px;
  }
}

.v-hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.v-hero-banner__image.v-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: -1;
}
.v-hero-banner .v-image__img {
  object-position: top;
}
.v-hero-banner__wrapper {
  margin: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

.v-detail--skeleton .v-detail__heading--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 19px;
  width: 60%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  max-width: 100px;
  display: block;
  margin-bottom: 8px;
}
.v-detail--skeleton .v-detail__content--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 19px;
  width: 100%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  max-width: 250px;
}

.v-detail__heading {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 4px;
}
.v-detail__content {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}

.v-link {
  text-decoration: none;
  color: #e82c2a;
  cursor: pointer;
}
.v-link:active, .v-link:focus {
  color: #e82c2a;
  text-decoration: none;
  outline: none;
}
.v-link:hover {
  color: #e82c2a;
  text-decoration: none;
  outline: none;
}

.v-image {
  position: relative;
  width: inherit;
  height: inherit;
}
.v-image__img, .v-image__placeholder {
  width: inherit;
  height: inherit;
}
.v-image__img {
  display: block;
  object-fit: inherit;
}
.v-image__img--loading {
  display: none;
}
.v-image__placeholder {
  display: none;
}
.v-image__placeholder--loading, .v-image__placeholder--failed {
  display: block;
}

.v-tab {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
  color: #ffffef;
  font-weight: bold;
  transition: color 150ms ease-in-out;
  cursor: pointer;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .v-tab {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .v-tab {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}
@media (hover: hover) {
  .v-tab:hover {
    color: #7a7a7a;
  }
}
.v-tab__button {
  background: none;
  border: none;
  padding: 16px;
  margin: 0;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: inherit;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  font-weight: inherit;
  color: inherit;
  user-select: none;
  outline: none;
  cursor: inherit;
  -webkit-tap-highlight-color: transparent;
}
.v-tab--selected {
  color: #e82c2a;
  cursor: default;
}
.v-tab--secondary {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 11px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  width: auto;
  border: 1px solid #cacfd2;
  border-right: none;
  color: #525455;
  background-color: #f3f6f7;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .v-tab--secondary {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .v-tab--secondary {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 14px;
  }
}
.v-tab--secondary:hover {
  background-color: #e6ebee;
  box-shadow: none;
}
.v-tab--secondary.v-tab--selected {
  color: #e82c2a;
  background-color: #fff;
  border-color: #e82c2a;
}
.v-tab--secondary.v-tab--selected + .v-tab {
  border-left: 1px solid #e82c2a;
}
.v-tab--secondary:first-of-type {
  border-radius: 5px 0 0 5px;
}
.v-tab--secondary:last-of-type {
  border-right: 1px solid #cacfd2;
  border-radius: 0 5px 5px 0;
}
.v-tab--secondary:last-of-type.v-tab--selected {
  border-color: #e82c2a;
}
.v-tab--secondary .v-tab__button {
  padding: 10px 15px;
}

.v-tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.v-tabs__header {
  display: block;
  position: relative;
  background-color: #000000;
  margin-bottom: 30px;
}
.v-tabs__wrapper {
  position: relative;
  display: flex;
}
.v-tabs__wrapper::before, .v-tabs__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 2;
}
.v-tabs__wrapper::before {
  left: 0;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0, #000000 95%);
}
.v-tabs__wrapper::after {
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, #000000 95%);
}
.v-tabs__wrapper--show-scroll-buttons::before {
  left: 30px;
}
.v-tabs__wrapper--show-scroll-buttons::after {
  right: 30px;
}
.v-tabs__wrapper--can-scroll-right::after, .v-tabs__wrapper--can-scroll-left::before {
  opacity: 1;
}
.v-tabs__tab-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #000;
}
.v-tabs__tab-list::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.v-tabs__tab-list--centered {
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
.v-tabs__tab-list--secondary {
  border: none;
}
.v-tabs__scroll-button {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  background-color: #000000;
  opacity: 1;
  transition-property: opacity background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  cursor: pointer;
  fill: #e82c2a;
  outline: none;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 3;
}
.v-tabs__scroll-button--left {
  left: 0;
}
.v-tabs__scroll-button--right {
  right: 0;
}
@media (hover: hover) {
  .v-tabs__scroll-button:hover {
    background-color: white;
  }
}
.v-tabs__scroll-button:disabled {
  opacity: 0;
  pointer-events: none;
}
.v-tabs__scroll-button .v-icon {
  width: 15px;
  height: 100%;
}
.v-tabs__indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #e82c2a;
  transition-property: "width left";
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 1;
}

/*Components*/
.v-film-list-film {
  box-sizing: border-box;
  color: #1d102f;
}
.v-film-list-film__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.v-film-list-film__link {
  color: inherit;
  position: relative;
}
.v-film-list-film__thumbnail {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.v-film-list-film__thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 34, 34, 0.02) 0%, rgba(34, 34, 34, 0.2) 100%);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
@media (hover: hover) {
  .v-film-list-film__thumbnail:hover::after {
    opacity: 1;
  }
}
.v-film-list-film .v-film-title {
  display: block;
}
.v-film-list-film .v-film-title__text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 17px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.4;
  font-weight: 700;
}
.v-film-list-film .v-film-title__text:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 479px) {
  .v-film-list-film .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .v-film-list-film .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 18px;
  }
}
.v-film-list-film .v-film-title__censor-rating {
  height: 17px;
  min-width: 17px;
}
@media screen and (min-width: 768px) {
  .v-film-list-film .v-film-title__censor-rating {
    height: 18px;
    min-width: 18px;
  }
}
.v-film-list-film .v-film-title__censor-rating .v-censor-rating-icon__classification {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 13px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  min-width: 17px;
}
@media screen and (min-width: 768px) {
  .v-film-list-film .v-film-title__censor-rating .v-censor-rating-icon__classification {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 14px;
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1;
    min-width: 18px;
  }
}
.v-film-list-film .v-film-promoted-tag--type-coming-soon {
  display: none;
}

.v-film-list-carousel {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.v-film-list-carousel .v-carousel__viewport {
  margin-right: -16px;
}
.v-film-list-carousel .v-film-list-film {
  margin-right: 16px;
}
@media screen and (max-width: 479px) {
  .v-film-list-carousel .v-carousel__viewport {
    margin-right: -8px;
  }
  .v-film-list-carousel .v-film-list-film {
    margin-right: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-list-carousel .v-carousel__viewport {
    margin-right: -20px;
  }
  .v-film-list-carousel .v-film-list-film {
    margin-right: 20px;
  }
}
.v-film-list-carousel .v-carousel__button {
  transform: translateY(-50%);
}
.v-film-list-carousel .v-carousel__viewport {
  padding-top: 12px;
  margin-top: -12px;
}

.v-film-list-grid {
  display: grid;
  list-style: none;
  min-width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 16px;
}
@media screen and (max-width: 479px) {
  .v-film-list-grid {
    column-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .v-film-list-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 950px) {
  .v-film-list-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-list-grid {
    column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.v-film-list__tabs--skeleton {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 30px;
}
.v-film-list__tab--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 30px;
  width: 120px;
  border-radius: 2px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-film-list__tab--skeleton:not(:last-child) {
  margin-right: 23px;
}

.v-film-list-carousel--skeleton {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: hidden;
}
.v-film-list-carousel--skeleton .v-film-list-film--skeleton {
  box-sizing: border-box;
  width: 28.4%;
  flex-shrink: 0;
}
@media screen and (max-width: 549px) {
  .v-film-list-carousel--skeleton .v-film-list-film--skeleton {
    width: 43%;
  }
}
@media screen and (min-width: 768px) {
  .v-film-list-carousel--skeleton .v-film-list-film--skeleton {
    width: 21.6%;
  }
}
@media screen and (min-width: 950px) {
  .v-film-list-carousel--skeleton .v-film-list-film--skeleton {
    width: 17.5%;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-list-carousel--skeleton .v-film-list-film--skeleton {
    width: 14.4%;
  }
}

.v-film-list-film__thumbnail--skeleton::after {
  display: none;
}
.v-film-list-film .v-film-title--skeleton {
  min-height: auto;
  height: 16px;
  width: 80%;
}

.v-film-list-message .v-message__title {
  color: #1d102f;
}
.v-film-list-message__clear-button {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  color: #9451ee;
  margin: 0;
}
@media (hover: hover) {
  .v-film-list-message__clear-button:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}

.v-film-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.v-film-summary {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 16px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: normal;
  color: #1d102f;
}
.v-film-summary__wrapper {
  display: grid;
  grid-template-areas: "custom-actions" "watchlist-button" "primary" "notification" "secondary";
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  padding: 20px 20px 0;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}
.v-film-summary__wrapper--show-thumbnail {
  grid-template-areas: "custom-actions custom-actions" "thumbnail primary" "notification notification" "secondary secondary";
  grid-template-columns: 140px 1fr;
}
@media screen and (max-width: 479px) {
  .v-film-summary__wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .v-film-summary__wrapper--show-thumbnail {
    grid-template-columns: 100px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .v-film-summary__wrapper {
    grid-template-columns: 1fr 300px;
    grid-template-areas: "notification notification" "custom-actions custom-actions" "secondary watchlist-button" "secondary primary" "secondary primary";
    grid-template-rows: repeat(4, auto) 1fr;
    padding: 30px 30px 0;
  }
  .v-film-summary__wrapper--show-thumbnail {
    grid-template-columns: 140px 1fr 150px;
    grid-template-areas: "thumbnail notification notification" "thumbnail custom-actions custom-actions" "thumbnail secondary primary" "thumbnail secondary primary";
    grid-template-rows: repeat(3, auto) 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-summary__wrapper {
    max-width: 1100px;
    grid-template-areas: "notification notification" "custom-actions custom-actions" "secondary watchlist-button" "secondary primary" "secondary primary";
  }
  .v-film-summary__wrapper--show-thumbnail {
    grid-template-columns: 245px 1fr 150px;
    grid-template-areas: "thumbnail notification notification" "thumbnail custom-actions custom-actions" "thumbnail secondary primary" "thumbnail secondary primary";
  }
}
.v-film-summary__wrapper .v-film-watchlist-button {
  grid-area: watchlist-button;
  margin-bottom: 12px;
}
.v-film-summary__wrapper .v-film-watchlist-button__wrapper {
  justify-content: flex-start;
}
.v-film-summary__wrapper--show-thumbnail .v-film-watchlist-button {
  grid-area: unset;
}
@media screen and (max-width: 1199px) {
  .v-film-summary__wrapper--show-thumbnail .v-film-watchlist-button {
    display: none;
  }
}
.v-film-summary__wrapper--show-thumbnail .v-film-watchlist-button__wrapper {
  justify-content: center;
}
.v-film-summary__wrapper--show-thumbnail .v-film-watchlist-button--icon-only {
  display: block;
}
@media screen and (min-width: 1200px) {
  .v-film-summary__wrapper--show-thumbnail .v-film-watchlist-button--icon-only {
    display: none;
  }
}
.v-film-summary__thumbnail {
  grid-area: thumbnail;
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (min-width: 1200px) {
  .v-film-summary__thumbnail {
    width: 200px;
  }
}
.v-film-summary .v-film-thumbnail:not(:last-child) {
  margin-bottom: 8px;
}
.v-film-summary .v-film-advance-booking-period-notification {
  grid-area: notification;
  margin-bottom: 16px;
}
@media screen and (min-width: 1200px) {
  .v-film-summary .v-film-advance-booking-period-notification {
    margin-bottom: 32px;
  }
}
.v-film-summary .v-film-custom-action-list {
  grid-area: custom-actions;
  margin-bottom: 12px;
}
.v-film-summary__primary {
  grid-area: primary;
  margin-bottom: 16px;
}
.v-film-summary__secondary {
  grid-area: secondary;
}
.v-film-summary .v-detail:not(:last-child),
.v-film-summary .v-film-genres {
  margin-bottom: 16px;
}

.v-film-details-banner .v-hero-banner__wrapper {
  padding-top: 200px;
}
@media screen and (min-width: 1200px) {
  .v-film-details-banner .v-hero-banner__wrapper {
    padding-top: 360px;
  }
}
.v-film-details-banner .v-film-title {
  display: block;
}
.v-film-details-banner .v-film-title__text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 35px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
}
@media screen and (max-width: 479px) {
  .v-film-details-banner .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .v-film-details-banner .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-details-banner .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 48px;
  }
}
.v-film-details-banner .v-film-title__censor-rating {
  height: 35px;
  min-width: 35px;
}
@media screen and (min-width: 768px) {
  .v-film-details-banner .v-film-title__censor-rating {
    height: 40px;
    min-width: 40px;
  }
}
.v-film-details-banner .v-film-title__censor-rating .v-censor-rating-icon__classification {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 31px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  min-width: 35px;
}
@media screen and (min-width: 768px) {
  .v-film-details-banner .v-film-title__censor-rating .v-censor-rating-icon__classification {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 36px;
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1;
    min-width: 40px;
  }
}
@media screen and (max-width: 479px) {
  .v-film-details-banner .v-film-title__censor-rating {
    height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-details-banner .v-film-title__censor-rating {
    height: 48px;
  }
}
.v-film-details-banner .v-film-title__censor-rating .v-censor-rating-icon__classification {
  color: #000;
  text-shadow: none;
}
.v-film-details-banner__content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 25px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .v-film-details-banner__content {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .v-film-details-banner__content {
    padding: 0 30px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .v-film-details-banner__content {
    max-width: 1100px;
  }
  .v-film-details-banner__content--show-thumbnail {
    padding-left: 305px;
  }
}
.v-film-details-banner .v-film-trailer-button {
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  position: absolute;
  fill: #fff;
  transition: ease 0.2s all;
}
.v-film-details-banner .v-film-trailer-button__icon {
  height: 80px;
  width: 80px;
}
@media (hover: hover) {
  .v-film-details-banner .v-film-trailer-button:hover {
    transform: scale(1.1);
    fill: #fff;
  }
}
@media screen and (max-width: 479px) {
  .v-film-details-banner__action-button {
    width: 100%;
  }
}

.v-film-details .v-film-details-banner__wrapper--skeleton {
  background: none;
}
.v-film-details .v-film-details-banner .v-film-title--skeleton {
  margin-bottom: 8px;
}
.v-film-details .v-film-details-banner__action-button--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 50px;
  width: 150px;
  border-radius: 4px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .v-film-details .v-film-details-banner__action-button--skeleton {
    width: 100%;
  }
}
.v-film-details .v-film-status--skeleton {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .v-film-details .v-film-status--skeleton {
    margin-bottom: 16px;
  }
}

.v-film-details {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .v-film-details .v-film-summary__thumbnail {
    margin-top: -210px;
  }
}

.v-date-showtime-picker__all-films-toggle {
  position: relative;
  bottom: 12px;
}
@media screen and (min-width: 768px) {
  .v-date-showtime-picker__all-films-toggle {
    bottom: 16px;
  }
}

.v-composite-filter--skeleton .v-composite-filter-modal__button {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 40px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-composite-filter--skeleton .v-composite-filter-modal__button {
    animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
    height: 40px;
    width: 100px;
    border-radius: 1px;
    background-color: #dce1e4;
    display: inline-block;
  }
}
.v-composite-filter--skeleton .v-composite-filter-inline__title {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 100px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-composite-filter--skeleton .v-composite-filter-inline__header {
  border: none;
}
.v-composite-filter--skeleton .v-filter-section {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 100%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
  display: block;
  margin: 4px 0;
}

@media screen and (min-width: 768px) {
  .v-composite-filter-modal .v-modal__container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .v-composite-filter-modal .v-modal__container {
    height: auto;
    max-height: 90%;
    max-width: 80%;
    width: fit-content;
    width: -moz-fit-content;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
}
.v-composite-filter-modal .v-modal__container .v-checkbox-group,
.v-composite-filter-modal .v-modal__container .v-radio-group {
  margin-bottom: 16px;
}
.v-composite-filter-modal .v-modal-footer {
  margin-top: -1px;
}
.v-composite-filter-modal__button-area {
  position: relative;
}
.v-composite-filter-modal__button.v-button:not(:last-child) {
  margin: 0;
}
.v-composite-filter-modal__button.v-button .v-button__icon {
  order: 1;
  margin-right: 0;
}
.v-composite-filter-modal__button.v-button .v-button__label {
  display: none;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .v-composite-filter-modal__button.v-button .v-button__label {
    display: inline;
  }
}
.v-composite-filter-modal__filter-count-indicator {
  background-color: #eec017;
  padding: 0 3px;
  position: absolute;
  top: 5px;
  left: 25px;
  border-radius: 3px;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 10px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .v-composite-filter-modal__filter-count-indicator {
    left: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .v-composite-filter-modal .v-filter-option-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.v-composite-filter-modal-footer p:not(:last-child) {
  margin-bottom: 0;
}
.v-composite-filter-modal-footer__buttons {
  display: flex;
}
.v-composite-filter-modal-footer__main-button-group {
  margin-top: 16px;
  text-align: right;
}
.v-composite-filter-modal-footer__other-button-group {
  margin-top: 16px;
  flex-grow: 1;
}
.v-composite-filter-modal-footer__cancel-button.v-button:not(:last-child), .v-composite-filter-modal-footer__clear-button.v-button:not(:last-child) {
  margin-bottom: 0;
}
.v-composite-filter-modal-footer__cancel-button {
  margin-right: 16px;
}
.v-composite-filter-modal-footer__message {
  font-style: italic;
  text-align: center;
  padding: 16px 0;
  margin: 0;
}
.v-composite-filter-modal-footer__message--filters-applied {
  font-style: normal;
  font-weight: bold;
}
.v-composite-filter-modal-footer__line {
  border-top: 1px solid #e6ebee;
  margin: 0 -16px;
}
@media screen and (min-width: 768px) {
  .v-composite-filter-modal-footer__line {
    margin: 0 -24px;
  }
}

.v-composite-filter-inline__title {
  flex-grow: 1;
  margin: 10px 0;
}
.v-composite-filter-inline__header {
  border-bottom: 1px solid #e6ebee;
  display: flex;
}
.v-composite-filter-inline__clear-button {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .v-composite-filter-inline .v-filter-option-list {
    grid-template-columns: 1fr;
  }
}

.v-composite-filter--display-mode-auto .v-composite-filter-inline {
  display: none;
}
@media screen and (min-width: 1200px) {
  .v-composite-filter--display-mode-auto .v-composite-filter-inline {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .v-composite-filter--display-mode-auto .v-composite-filter-modal {
    display: none;
  }
}
.v-composite-filter .v-checkbox-group,
.v-composite-filter .v-radio-group {
  margin-bottom: 16px;
}

.v-event-list-event {
  position: relative;
  color: #fff;
  fill: #fff;
  cursor: pointer;
  border: 1px solid #dce1e4;
}
@media screen and (min-width: 768px) {
  .v-event-list-event {
    border-radius: 3px;
  }
}
.v-event-list-event .v-event-image {
  height: 100%;
  width: 100%;
}
.v-event-list-event .v-event-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 34, 34, 0.02) 0%, rgba(34, 34, 34, 0.2) 100%);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
@media (hover: hover) {
  .v-event-list-event .v-event-image:hover::after {
    opacity: 1;
  }
}
.v-event-list-event .v-event-image .v-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .v-event-list-event .v-event-image .v-image__img {
    border-radius: 3px;
  }
}
.v-event-list-event__wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .v-event-list-event__wrapper {
    border-radius: 3px;
  }
}
.v-event-list-event__content {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 24px;
}
.v-event-list-event .v-event-name__heading {
  margin: 0;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 28px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
}
.v-event-list-event__link {
  color: inherit;
}
@media (hover: hover) {
  .v-event-list-event__link:hover {
    color: inherit;
  }
}

.v-event-list--skeleton {
  width: 100%;
  overflow-x: hidden;
}
.v-event-list--skeleton .v-event-list__tile--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background-color: #dce1e4;
  display: inline-block;
}

.v-event-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  grid-auto-rows: 338px;
}
@media screen and (min-width: 768px) {
  .v-event-list {
    grid-template-columns: 1fr 1fr;
  }
}

.v-event-details .v-event-hero-banner--skeleton {
  background: none;
}
.v-event-details .v-event-details-summary .v-event-description--skeleton {
  flex-grow: 1;
}
.v-event-details .v-event-details-summary .v-event-image--skeleton {
  height: 300px;
  width: 200px;
}

.v-event-details-summary {
  display: flex;
  padding: 20px;
}
.v-event-details-summary .v-event-image {
  display: none;
}
@media screen and (min-width: 1200px) {
  .v-event-details-summary {
    padding: 30px 30px 0;
    max-width: 1100px;
    margin: 0 auto;
  }
  .v-event-details-summary .v-event-image {
    display: block;
    width: 200px;
    margin-right: 60px;
    margin-top: -183px;
  }
  .v-event-details-summary--has-schedule .v-event-image {
    margin-top: -202px;
  }
}

@media screen and (min-width: 1200px) {
  .v-event-details .v-event-hero-banner__content--show-event-poster {
    padding-left: 292px;
  }
  .v-event-details .v-event-hero-banner .v-event-image {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .v-event-hero-banner--skeleton .v-event-hero-banner__details {
    width: 500px;
  }
}
.v-event-hero-banner--skeleton .v-event-hero-banner__action-button {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-event-hero-banner--skeleton .v-event-hero-banner__action-button {
    width: 240px;
  }
}
.v-event-hero-banner--skeleton .v-event-hero-banner__content .v-event-image {
  height: 130px;
  width: 84px;
}
.v-event-hero-banner--skeleton .v-event-schedule--skeleton {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .v-event-hero-banner--skeleton .v-event-schedule--skeleton {
    margin-bottom: 7px;
  }
}
.v-event-hero-banner--skeleton .v-event-name--skeleton {
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .v-event-hero-banner--skeleton .v-event-name--skeleton {
    margin-bottom: 13px;
  }
}

.v-event-hero-banner__content {
  padding: 16px;
}
.v-event-hero-banner__content .v-event-image {
  width: 84px;
  margin-right: 24px;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .v-event-hero-banner__content:not(.v-event-hero-banner__content--show-event-poster) {
    padding-top: 214px;
  }
}
.v-event-hero-banner__action-button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .v-event-hero-banner .v-event-image {
    margin-bottom: 0;
  }
  .v-event-hero-banner__content {
    display: flex;
    padding: 24px;
    padding-top: 328px;
    align-items: stretch;
  }
  .v-event-hero-banner__action-button {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .v-event-hero-banner__content {
    max-width: 1100px;
    margin: 0 auto;
  }
}
.v-event-hero-banner .v-event-name__heading {
  margin-bottom: 13px;
}
.v-event-hero-banner .v-event-schedule__label {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .v-event-hero-banner .v-event-schedule__label {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}

.v-event-image--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background-color: #dce1e4;
  display: inline-block;
}

.v-event-image {
  width: 100%;
}
.v-event-image .v-image {
  border: 1px solid #dce1e4;
  display: flex;
}

.v-event-schedule--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 20px;
  width: 50%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-event-schedule--skeleton {
    width: 80%;
    height: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .v-event-schedule--skeleton {
    height: 24px;
  }
}

.v-event-schedule {
  display: flex;
  align-items: center;
}
.v-event-schedule__label {
  margin-top: 0;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.3;
}
.v-event-schedule__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  fill: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.v-event-name--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 28px;
  width: 56%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-event-name--skeleton {
    width: 80%;
    height: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .v-event-name--skeleton {
    height: 45px;
  }
}

.v-event-name__heading {
  margin: 0;
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 32px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .v-event-name__heading {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 48px;
  }
}

.v-film-title--skeleton {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 32px;
  width: 80%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-film-title--skeleton {
    width: 60%;
    height: 40px;
  }
}

.v-film-title {
  width: 100%;
}
.v-film-title:not(:last-child) {
  margin-bottom: 13px;
}
.v-film-title__text {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 22px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1.2;
  display: inline;
  font-weight: 700;
  margin: 0;
  vertical-align: middle;
  color: inherit;
}
.v-film-title__text:not(:last-child) {
  margin-right: 13px;
}
@media screen and (min-width: 768px) {
  .v-film-title__text {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 28px;
  }
}
.v-film-title__censor-rating {
  height: 22px;
  min-width: 22px;
}
@media screen and (min-width: 768px) {
  .v-film-title__censor-rating {
    height: 28px;
    min-width: 28px;
  }
}
.v-film-title__censor-rating .v-censor-rating-icon__classification {
  /* stylelint-disable-next-line property-disallowed-list */
  font-size: 18px;
  /* stylelint-disable-next-line property-disallowed-list */
  line-height: 1;
  min-width: 22px;
}
@media screen and (min-width: 768px) {
  .v-film-title__censor-rating .v-censor-rating-icon__classification {
    /* stylelint-disable-next-line property-disallowed-list */
    font-size: 24px;
    /* stylelint-disable-next-line property-disallowed-list */
    line-height: 1;
    min-width: 28px;
  }
}

.v-single-filter-dropdown {
  width: 200px;
}

.v-single-filter-modal__modal-button.v-button {
  display: flex;
}
@media screen and (min-width: 768px) {
  .v-single-filter-modal__modal-button.v-button {
    padding: 8px 15px;
  }
}
.v-single-filter-modal__modal-button.v-button .v-button__icon {
  order: 1;
}
.v-single-filter-modal__modal-button.v-button .v-button__label {
  display: none;
}
@media screen and (min-width: 768px) {
  .v-single-filter-modal__modal-button.v-button .v-button__label {
    display: inline;
    padding-right: 5px;
  }
}
.v-single-filter-modal__tick-container {
  /* stylelint-disable-next-line property-disallowed-list */
  z-index: 4;
  background-color: #eec017;
  position: absolute;
  top: 5px;
  right: 8px;
  border-radius: 3px;
  width: 13px;
  height: 13px;
}
@media screen and (min-width: 768px) {
  .v-single-filter-modal__tick-container {
    right: 10px;
  }
}
.v-single-filter-modal__tick {
  position: relative;
  box-sizing: content-box;
  top: 1px;
  left: 5px;
  width: 3px;
  height: 7px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.v-single-filter-modal__cancel-button {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .v-single-filter-modal .v-modal__container {
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .v-single-filter-modal .v-modal__container {
    height: auto;
    max-height: 90vh;
    max-width: 80vw;
    width: fit-content;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
}
.v-single-filter-modal .v-modal__container .v-radio-group {
  margin-bottom: 0;
}
.v-single-filter-modal .v-filter-option-list {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .v-single-filter-modal .v-filter-option-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.v-single-filter-modal .v-modal-footer {
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .v-single-filter-modal .v-modal-footer {
    display: none;
  }
}

.v-single-filter--skeleton .v-single-filter__auto {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 200px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-single-filter--skeleton .v-single-filter__primary-tab {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 60px;
  width: 100%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-single-filter--skeleton .v-single-filter__secondary-tab {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 100%;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-single-filter--skeleton .v-single-filter__dropdown {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 200px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
.v-single-filter--skeleton .v-single-filter__modal {
  animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
  height: 40px;
  width: 40px;
  border-radius: 1px;
  background-color: #dce1e4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .v-single-filter--skeleton .v-single-filter__modal {
    animation: skeleton-pulse-animation-transition ease-in-out 1.4s infinite;
    height: 40px;
    width: 150px;
    border-radius: 1px;
    background-color: #dce1e4;
    display: inline-block;
  }
}

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