.mainContent,
.mainContent a {
  color: white;
}
.mainContent {
  background-color: var(--purple);
  padding-bottom: 86px;
}
.contentContainer {
  padding-top: var(--mar_top_mid);
}

.pageHead {
  position: relative;
  /* color: var(--white); */
}
.pageHead::before {
  content: "";
  display: block;
  background-color: var(--purple);
  background-image: url(../images/page_head_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  height: 0;
  padding-bottom: 41%;
}
.pageHead .pageTitleContainer {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
}
.pageHead .pageTitle::after {
  /* content: '';
	display: block;
    width: 261px;
    height: 2px; */
  background-image: url(../images/white_content_divider.svg);
  /* background-repeat: no-repeat;
    background-position: top left;
    background-size: 100%;
	margin-top: 4px; */
}
nav {
  display: none;
  padding: 14px 0;
}
nav .navArrow {
  width: 14px;
  height: 14px;
  background-image: url(../images/icn_nav_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin: 0 20px;
}
nav .navItem {
  font-size: 13px;
  color: #2d2d2d;
  text-decoration: none;
}
nav .navItem.active {
  font-weight: bold;
  color: #2d2d2d;
}

.desc {
  padding-top: 15px;
}

.bling {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.bling span {
  /* display: none; */
  width: 65px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  opacity: 0;
  /* animation: starBlink 2s infinite; */
}
.bling span:nth-child(1) {
  display: inline-block;
  vertical-align: top;
}
/* .bling span:nth-child(2) {
  animation-delay: 0.5s;
} */
.bling.bling1 span {
  background-image: url(../images/bling1.svg);
}
.bling.bling2 span {
  background-image: url(../images/bling2.svg);
}
.bling.bling4 span {
  background-image: url(../images/bling4.svg);
}
.bling.bling5 span {
  background-image: url(../images/bling5.svg);
}

.datepickerWrapper .clearDatepicker {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 8px;
}
.datepickerWrapper .btnClearFilters {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #2d2d2d;
  text-decoration: none;
}
.datepickerWrapper .btnClearFilters::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/icn_clear.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
}

.eventFilters {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.eventFilters .filtersScroll {
  width: 100%;
  padding-left: var(--pad_lr);
  overflow-x: auto;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.eventFilters .filtersScroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.eventFilters .filtersRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}
.eventFilters .filterItem:last-child {
  padding-right: var(--pad_lr);
}
.eventFilters .filterItem .itemBtn {
  display: block;
  font-size: 16px;
  color: #433a78;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #433a78;
  padding: 5px 15px;
}
.eventFilters .filterItem .itemBtn.active {
  color: var(--pink);
  /* font-weight: bold; */
  border: 1px solid white;
  background-color: var(--white);
}
.eventFilters .filterItem .itemBtn.dim {
  opacity: 0.5;
}

.title {
  margin-top: var(--mar_top_mid);
}
.titleContainer .decorArrow {
  width: 104px;
  height: 69px;
  background-image: url(../images/green_decor_arrow.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  padding-left: 88px;
  box-sizing: content-box;
}
.titleContainer .decorArrow::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url(../images/gray_decor_arrow.svg) repeat-x 0 0;
  background-size: auto 100%;
  margin-left: 104px;
}
.bgDecor {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  max-width: 1440px;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.bgDecor .decorArrow {
  width: 172px;
  height: 114px;
  background-image: url(../images/pink_decor_arrow.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
}

.infoVal {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.infoVal .itemIcon {
  flex-shrink: 0;
  width: 18px;
  margin-top: 2px;
  margin-right: 15px;
}
.infoContainer {
  padding-top: var(--pad_top_big);
}
.infoContainer .infoTxts {
  /* border-top: 1px solid var(--mint); */
  /* padding-top: 35px; */
  margin-top: 35px;
}
.infoContainer .infoTxts .infoDesc {
  text-align: justify;
}
.infoContainer .itemLink {
  word-break: break-all;
}
.infoBox {
  border: 1px solid white;
  border-radius: var(--border_radius2_const);
  padding: 22px 15px 20px;
}
/* .infoBox .infoItem:not(:first-child) {
  background-image: url(../images/line_dot.svg);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 2px;
  padding-top: 18px;
  margin-top: 14px;
} */
.infoBox .infoVal:not(:first-child) {
  padding-top: 10px;
}
.infoBox .btnWrapper {
  display: inline-block;
  vertical-align: top;
  margin-top: -1px;
  margin-left: 8px;
}
.infoBox .btn {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1em;
  min-width: 108px;
  color: var(--pink_light_txt);
  background: transparent;
  border: 1px solid #d5146a;
  padding: 2px 15px;
}
.extraInfo {
  border: 1px solid var(--pink_light);
  border-radius: var(--border_radius2_const);
  padding: 22px 15px 20px;
  margin-top: 70px;
}
.extraInfo .infoItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.extraInfo .infoItem .infoTxts {
  padding-top: 30px;
}
.extraInfo .infoItem .infoTxts .infoTitle {
  margin-bottom: 4px;
}
.extraInfo .infoItem .infoTxts p {
  font-size: var(--fs-remark);
  line-height: 1.5em;
}

/* Programme */
.programme .mainContent,
.search .mainContent,
.programmeDetails .mainContent {
  position: relative;
  padding-bottom: 112px;
  color: #2d2d2d;
}

.programme .mainContent {
  background: var(--Light-Green, #aace36);
}

.programme .pageTitle {
  color: white;
}
.search .mainContent {
  background-color: #aace36;
}
.programme .mainContent::after,
.search .mainContent::after,
.archives .mainContent::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 253px; */
  height: 127px;
  background-image: url(../images/intro_arrow.svg);
  background-repeat: repeat;
  background-position: bottom center;
  /* background-size: auto 50%; */
  background-size: auto 100%;
}
.programme .eventListWrapper,
.search .eventListWrapper {
  position: relative;
  z-index: 5;
}
.programme .locationContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 34px;
}
.programme .locationContainer .locationChoice > label {
  display: none;
}
.programme .locationChoice {
  width: 100%;
  padding-right: 14px;
}
.programme .locationChoice .select2-container {
  width: 100% !important;
  max-width: 304px;
}
.programme .btnOpenSearch {
  flex-shrink: 0;
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: var(--pink);
  background-image: url(../images/icn_search_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
}

.eventList.type2 {
  align-items: flex-start;
  min-height: 400px;
  margin: 0;
}
.eventList.type2 .eventItem {
  width: 100%;
  padding: 0 0 16px;
}
.eventList.type2 .eventItem .itemBtn {
  flex-direction: row;
  align-items: center;
  border-radius: var(--border_radius);
  background-color: var(--white);
  padding: 0;
  overflow: hidden;
}
.eventList.type2 .eventItem .itemImg {
  position: relative;
  flex-shrink: 0;
  width: 102px;
  height: 136px;
  border-radius: 0;
  margin: 0;
}
.eventList.type2 .eventItem .itemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eventList.type2 .eventItem .itemTxts {
  /* display: flex; */
  /* flex-direction: column;
  justify-content: center;
  align-items: flex-start; */
  padding: var(--pad_top) 8px;
}
.eventList.type2 .eventItem .period {
  font-size: var(--fs-small);
  line-height: 1em;
  margin-top: 0;
}
.eventList.type2 .eventItem .cateIcon {
  width: 12px;
  margin-right: 6px;
}
.eventList.type2 .eventItem .cateName {
  padding-top: 0;
  margin-top: 6px;
}
.eventList.type2 .eventItem .itemTitle {
  flex-grow: 0;
  font-size: var(--fs-body);
  line-height: 1.2em;
  margin-top: 6px;
}
.eventList.type2 .eventItem .cateNameTxt {
  font-size: var(--fs-remark);
  border-radius: 3px;
  padding: 4px 10px;
}

.search .mainContent {
  padding-top: 30px;
}
.search .mainContent .topContent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search .bling4 span,
.search .bling5 span {
  opacity: 1;
}

.search .bling5 {
  height: 72px;
  width: 78px;
  right: 0px;
  position: absolute;
}
.search .mainContent .topContent .bling4 span:nth-child(1) {
  display: none;
}
.search .mainContent .topContent .bling5 span:nth-child(1) {
  display: none;
}

.search .bling4 {
  position: absolute;
  height: 74px;
  width: 150px;
  left: 10px;
}

.search .bling4 span {
  /* position: absolute; */
  width: 65px;
  background-image: url(../images/bling4.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% auto;
  pointer-events: none;
  display: block;
}

.search .bling5 span {
  width: 65px;
  background-image: url(../images/bling5.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% auto;
  pointer-events: none;
}

.search h1 {
  font-size: 1.25em;
  padding: 0 10px;
  color: #433a78;
}
.searchWrapper {
  padding-top: 28px;
}
.searchWrapper .searchContainer {
  position: relative;
  width: 100%;
}
.searchWrapper .btnSearch {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background-image: url(../images/icn_search_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px auto;
}
.searchWrapper .btnClearSearch {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background-image: url(../images/icn_clear.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px auto;
  display: none;
}
.searchWrapper .inputSearch {
  font-size: 1.38em;
  font-weight: 700;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  background-color: transparent;
  /* background-image: url(../images/icn_search_white.svg);
    background-repeat: no-repeat;
    background-position: 18px 50%;
    background-size: 22px auto; */
  height: 60px;
  padding-left: 60px;
  outline: none;
}
.search .searchNumContainer {
  padding-top: 32px;
}
.search .eventList {
  padding-top: 12px;
}

/* Programme Details */
.programmeDetails .whats_on .bling {
  position: absolute;
  right: 0px;
  width: 162px;
  height: 54px;
  overflow: hidden;
  display: block;
}

.programmeDetails .whats_on .bling.bling1 span {
  background-image: url(../images/bling5.svg);
}

.programmeDetails .bling span {
  display: inline-block;
  width: 48px;
  height: 48px;
}

.programmeDetails .bling.bling1 span:nth-child(1) {
  animation-delay: 0s;
}
.bling.bling1 span:nth-child(2) {
  animation-delay: 0.5s;
}
.programmeDetails .bling.bling1 span:nth-child(3) {
  animation-delay: 1s;
}
.programmeDetails .bling.bling1 span:nth-child(4) {
  animation-delay: 1.5s;
}
.programmeDetails .bling.bling1 span:nth-child(5) {
  animation-delay: 2s;
}

.programmeDetails .bling.bling1 span:nth-child(6) {
  animation-delay: 2.5s;
}

.programmeDetails .bling.anim span {
  animation-name: starBlink;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.programmeDetails .whats_on .title::after {
  background-image: url(../images/white_pink_content_divider.svg);
}
.programmeDetails .mainContent a {
  color: #2d2d2d;
}

.programmeDetails .infoVal .itemTxt .btn {
  background-color: #d5146a;
  color: white;
  margin: 0px;
  padding: 5px;
  border: 0px;
}

.programmeDetails .mainContent .btn {
  margin: 30px auto;
}
.programmeDetails .detailsBanner {
  position: relative;
  overflow: hidden;
}
.programmeDetails .detailsBanner .slick-dots {
  background: var(--purple);
}
.programmeDetails .bannerImgFill {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -50px;
  transform: translate(0, -50%);
  width: calc(100% + 100px);
  filter: blur(24px);
}
.programmeDetails .bannerImg {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
}
.programmeDetails .cateName {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.programmeDetails .cateNameTxt {
  font-size: 16px;
  line-height: 1.43em;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-radius: var(--border_radius_const);
  padding: 4px 10px;
}

.programmeDetails .mainContent {
  padding-bottom: 0;
  background: var(--Light-Green, #aace36);
}
.programmeDetails .content {
  padding-bottom: 38px;
}
.programmeDetails .tnc {
  margin-top: 50px;
}
.programmeDetails .gallery {
  /* padding-top: 60px; */
  padding-bottom: 96px;
}
.programmeDetails .gallerySlider {
  padding: 35px 10px 0;
}
.programmeDetails .gallerySlide {
  padding: 0 10px;
}
.programmeDetails .slideBtn {
  display: block;
  /* border-radius: 9px; */
  border-radius: var(--border_radius2_const);
  height: 0;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  font-size: 0;
  color: transparent;
}
.programmeDetails .screenings {
  padding-top: 55px;
}
.programmeDetails .screenings .title {
  margin-top: 35px;
}

.programmeDetails .buttonLink {
  display: flex;
  width: 280px;
  height: 45px;
  padding-top: 0px !important;
  padding: 8px 10px !important;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  border-radius: 30px;
  background: #d5146a;
  color: white !important;
  margin: 30px auto;
  font-weight: 700;
  text-decoration: none;
}
.programmeDetails .buttonLink:nth-last-child(1) {
  margin: 30px auto 0px;
}

.programmeDetails .infoBox .buttonLink a {
  text-decoration: none;
  font-weight: 700;
  color: white;
}
/* .programmeDetails .screenings .title .titleTxt {
  color: #584c9d;
} */
.programmeDetails .screenings .infoVal {
  margin-top: 5px;
}
.programmeDetails .screenings .infoVal:first-child {
  margin-top: 0;
}
.programmeDetails .screeningsList {
  padding-top: 40px;
}
.programmeDetails .screeningsItem {
  margin-bottom: 12px;
}
.programmeDetails .screeningsItem .itemContent {
  flex-grow: 1;
  position: relative;
  text-decoration: none;
  border-radius: var(--border_radius2_const);
  padding: 12px 40px 12px 18px;
  background: var(--seasalt);
  display: block;
  overflow: hidden;
}
.programmeDetails .screeningsItem .itemContent h3 {
  font-size: 1.19em;
  color: #584c9d;
}
.programmeDetails .whiteContent .title::after {
  background-image: url(../images/green_content_divider.svg);
}

.programmeDetails .title h1 {
  color: #433a78;
}
.programmeDetails .infoItem .itemVenue {
  position: relative;
}

.programmeDetails .infoItem:not(:first-child) {
  position: relative;
  /* padding-bottom: 24px; */
  padding-top: 42px;
}
.programmeDetails .infoItem:not(:first-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 21px;
}

.programmeDetails .infoBox .btn {
  margin: 0 auto;
}
/* .programmeDetails .infoItem:not(:first-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: 21px;
}
.programmeDetails .infoItem:last-child::after {
  content: none;
} */

.programmeDetails .infoItem:nth-last-child(1) {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.programmeDetails .infoItem:nth-last-child(1)::after {
  content: none;
}
.programmeDetails iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.programmeDetails .screeningsItem .itemContent::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 100%;
}
.programmeDetails .screeningsItem.itemMint .itemContent::after {
  background: var(--mint);
}
.programmeDetails .screeningsItem.itemPink .itemContent::after {
  background: var(--pink);
}
.programmeDetails .screeningsItem.itemPurple .itemContent::after {
  background: var(--purple);
}
.programmeDetails .screeningsItem.itemGreenLight .itemContent::after {
  background: var(--green_light);
}
.programmeDetails .screeningsItem .infoContent {
  padding-top: 18px;
}
.programmeDetails .screenings .remarks {
  /* font-size: var(--fs-small); */
  line-height: 1.5em;
  margin-top: 16px;
}
.programmeDetails .screenings .remarks p:not(:first-child) {
  margin-top: 10px;
}
.programmeDetails .screenings .artistList {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 35px -5px 0;
}
.programmeDetails .screenings .artistItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: center;
  width: 50%;
  padding: 0 5px 15px;
}
.programmeDetails .screenings .artistItem .itemImg {
  background-color: var(--grey);
  min-height: 122px;
  border-radius: 8px;
  overflow: hidden;
}
.programmeDetails .screenings .artistItem .itemName {
  flex-grow: 1;
  padding: 10px 0;
}
.programmeDetails .eventList .eventItem .itemImg {
  margin: 0 -8px;
}
.programmeDetails .eventItem .itemBtn {
  background-color: #fff;
  border-radius: var(--border_radius);
  padding: 0 8px 10px;
}
.programmeDetails .eventList .eventItem .cateIcon {
  width: 13px;
}
.programmeDetails .eventItem .period {
  font-size: var(--fs-small);
  line-height: 1.2em;
  margin-top: 10px;
}
.programmeDetails .eventItem .itemTitle {
  font-size: var(--fs-body);
  line-height: 1.3em;
  height: 2.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.programmeDetails .eventItem .cateName {
  margin-top: var(--mar_top);
}
.programmeDetails .eventList .eventItem .cateNameTxt {
  font-size: var(--fs-remark);
  border-radius: 3px;
  padding: 5px 10px 4px;
}

.programmeDetails .extension_desc_title {
  /* height: 28px; */
  font-size: 25px;
}

.programmeDetails .extension_desc {
  margin-block: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid white;
}
.programmeDetails .extension_desc_title {
  display: flex;
  flex-direction: row;
  /* height: 22px; */
  align-items: center;
  margin: 22px auto 0px;
  justify-content: space-between;
}

.programmeDetails .extension_desc_content {
  display: none;

  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding: 10px;
}
.programmeDetails p {
  line-height: 28px;
}

.programmeDetails .extension_desc_title p {
  font-weight: 700;
  margin-right: 16px;
  color: #433a78;
}
.programmeDetails .extension_desc_title a {
  height: 22px;
}

.programmeDetails .extension_desc_title a .active {
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background-image: url(../images/icn_add_pink.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  transform: rotateX(180deg);
}
.programmeDetails .extension_desc_title a span {
  background-image: url(../images/icn_minus_pink.svg);
  border-bottom: 0px;
  display: block;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
}

.programmeDetails .bookBtn_container {
  position: sticky;
  bottom: 0px;
  background-color: white;
  width: 100%;
  left: 0px;
  /* padding: 10px; */
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  margin: 0px;
}

.programmeDetails .extension_desc_content p {
  text-align: justify;
}
.programmeDetails .bookBtn_container a {
  color: white;
  margin: 10px auto;
}
/* About the Fest */
.about_fest .container {
  max-width: unset;
}

.about_fest .container .content {
  max-width: 1182px;
  margin: 0px auto;
}
.about_fest .mainContent {
  background-color: #aace36;
}
.about_fest .decorArrowLine {
  margin-top: 35px;
  background-image: url(../images/decor_arrow_white.svg);
  opacity: 0.3;
}
.about_fest .content {
  margin-top: 50px;
}
.about_fest .mainContent .bling {
  display: none;
}
.about_fest .mainContent .title {
  text-align: center;
  color: #2d2d2d;
}

.about_fest .desc p {
  color: #2d2d2d;
}

/* Survey */
.survey .mainContent {
  background-color: #aace36;
}

.survey .bling span {
  width: 121px;
  height: 121px;
  background-image: url(../images/bling4.svg);
}

.survey .stageItem {
  margin-bottom: 32px;
  display: none;
}
.survey .stageItem.active {
  display: block;
}
.survey .surveyLanding {
  padding-top: 50px;
}

.survey #selectDate {
  padding: var(--input_pad_tb) var(--input_pad_lr);
  color: #2d2d2d;
}
.survey .surveyLanding .bling,
.survey .surveyContainer .bling {
  justify-content: center;
  padding-top: 28px;
  margin-bottom: 28px;
  position: absolute;
  right: 0px;
  flex-direction: column;
  top: 28px;
}

.survey .surveyLanding .bling2,
.survey .surveyContainer .bling2 {
  left: 0px;
  bottom: 0px;
}

.survey .bling2 span {
  background-image: url(../images/bling5.svg);
}

.survey .surveyLanding .intro {
  color: #2d2d2d;
}

.survey .surveyLanding .intro a {
  color: #2d2d2d;
}
.survey .surveyLanding .bling span,
.survey .surveyContainer .bling span {
  /* width: 54px;
  height: 54px; */
  opacity: 0;
  animation: none;
}

.survey .surveyLanding .bling span:nth-child(1),
.survey .surveyContainer .bling span:nth-child(1) {
  animation-delay: 0s;
}
.survey .surveyLanding .bling span:nth-child(2),
.survey .surveyContainer .bling span:nth-child(2) {
  animation-delay: 0.5s;
}
.survey .surveyLanding .bling span:nth-child(3),
.survey .surveyContainer .bling span:nth-child(3) {
  animation-delay: 1s;
}
.survey .surveyLanding .bling span:nth-child(4),
.survey .surveyContainer .bling span:nth-child(4) {
  animation-delay: 1.5s;
}

.survey .decorArrowLine {
  background-image: url(../images/decor_arrow_white.svg);
}

.survey .selectDateCol .formInput {
  position: relative;
}

.survey .selectDateCol span {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  background-image: url(../images/icn_dropdown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px auto;
  width: 26px;
  height: 26px;
  z-index: 2;
  /* transform: translate(0, -50%); */
}
.survey .mainContent {
  padding-bottom: 0px;
}
.survey .surveyLanding .searchTitle {
  font-size: 2.19em;
  font-weight: 700;
  line-height: 1.2em;
  color: #433a78;
}
.survey .surveyLanding .searchWrapper {
  padding-top: 12px;
}
.survey .surveyLanding .eventListSort {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 30px;
  gap: 18px;
}
.survey .surveyLanding .eventListSort .sortBtn {
  color: #2d2d2d;
  text-decoration: none;
  padding: 8px 10px 6px 38px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  background-size: 18px auto;
}
.survey .surveyLanding .eventListSort .sortBtn.active {
  color: white;
  background-color: #d5146a;
  border-radius: 50px;
}
.survey .surveyLanding .eventListSort .sortBtn.btnSortByName {
  background-image: url(../images/icn_by_name.svg);
}
.survey .surveyLanding .eventListSort .sortBtn.btnSortByName.active {
  background-image: url(../images/icn_by_name_active.svg);
}
.survey .surveyLanding .eventListSort .sortBtn.btnSortByDate {
  background-image: url(../images/icn_by_date.svg);
}
.survey .surveyLanding .eventListSort .sortBtn.btnSortByDate.active {
  background-image: url(../images/icn_by_date_active.svg);
}
.survey .surveyLanding .eventList {
  flex-direction: row;
  padding-top: 20px;
}
.survey .surveyLanding .eventList .eventItem {
  width: 50%;
  margin-bottom: 20px;
}
.survey .surveyLanding .eventList .eventItem .itemBtn {
  position: relative;
  border-radius: var(--border_radius_const);
  background-color: var(--white);
  overflow: hidden;
}
.survey .surveyLanding .eventList .eventItem .itemBtn.selected {
  color: var(--pink);
}
.survey .surveyLanding .eventList .eventItem .itemBtn.selected::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid var(--pink);
  border-radius: var(--border_radius_const);
}
.survey .surveyLanding .eventList .eventItem .itemImg {
  position: relative;
  height: 0;
  border-radius: 0;
  padding-bottom: 89%;
}
.survey .surveyLanding .eventList .eventItem .itemImg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.survey .surveyLanding .eventList .eventItem .itemTxts {
  padding-bottom: 10px;
}
.survey .surveyLanding .eventList .eventItem .itemTitle {
  font-size: var(--fs-body);
  font-weight: 400;
}
.survey .surveyDetails {
  padding-top: 22px;
}
.survey .surveyDetails .titleContainer {
  padding-top: 24px;
}
.survey .surveyDetails .title {
  margin-top: 5px;
}
.survey .surveyDetails .title::after {
  margin-top: 24px;
}
.survey .surveyDetails .desc {
  padding: 50px 0 0;
}
.survey .surveyDetails .detailsImg {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  border-radius: 12px;
  overflow: hidden;
}
.survey .surveyDetails .detailsImg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.survey .surveyContainer {
  padding-top: 22px;
  /* padding-left: 12px;
	padding-right: 12px; */
}
.survey .surveyContainer .surveyItem {
  display: none;
}
.survey .surveyContainer .surveyItem.active {
  display: block;
}
.survey .surveyContainer .surveyProgress {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.survey .surveyContainer .surveyProgress .progressItem {
  text-align: center;
  width: 80px;
  padding: 0 4px;
  color: #8a81ba;
}
.survey .surveyContainer .surveyProgress .progressItem.active {
  font-weight: 700;
  color: #2d2d2d;
  opacity: 1;
}
.survey .surveyContainer .surveyProgress .progressItem::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  border-radius: var(--border_radius_const);
  background-color: #d6e79c;
}
.survey .surveyContainer .surveyProgress .progressItem.active::after {
  background-color: #d5146a;
}
.survey .surveyContainer .surveyProgress .progressItem .itemTxt {
  padding: 8px 0;
  color: #2d2d2d;
}
.survey .surveyContainer .surveyList {
  color: var(--body);
  background-color: var(--white);
  border-radius: var(--border_radius2_const);
  padding: 16px 12px 26px;
  margin-top: 28px;
}
.survey .surveyContainer .subtitle {
  color: #d5146a;
}
.survey .surveyContainer .surveyDataUsage {
  margin-top: 30px;
}
.survey .surveyContainer .btn {
  display: none;
  margin: 0 0 10px;
}
.survey .surveyContainer .btn.active {
  display: inline-block;
  vertical-align: top;
}
/* .survey .formContent hr {
    background-color: var(--purple);
    margin: 30px 0 0;
} */
.survey .formContent .formTop {
  margin-bottom: 32px;
}
.survey .formContent .formTop .formLabel {
  flex-shrink: 0;
}
.en.survey .formContent .formTop .formLabel {
  flex-shrink: 1;
}
.survey .formContent .formRow {
  margin-top: 30px;
}
.survey .formContent .formRow:first-child {
  /* margin-top: 0; */
}
.survey .formContent .formRow::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #aace36;
  margin-bottom: 30px;
}
.survey .formContent .formRow:first-child::before {
  display: none;
}
.survey .formContent .formRow.firstRow .remarks {
  transform: translateY(-24px);
}
.survey .formContent .formRow.error .singleChoice .choiceBtn,
.survey .formContent .formRow.error .multiChoice .choiceBtn,
.survey .formContent .formCol.error .singleChoice .choiceBtn,
.survey .formContent .formCol.error .multiChoice .choiceBtn {
  border-color: var(--red);
}
.survey .formContent .formRow.error .agreeChoice .choiceBtn {
  border: 1px solid red;
}
.survey .formContent .formRow.error textarea,
.survey .formContent .formRow.error input,
.survey .formContent .formCol.error textarea,
.survey .formContent .formCol.error input {
  border: 1px solid var(--red);
}
.survey .formContent .formCol {
  padding-top: 16px;
}
.survey .formContent .formCol:first-child {
  padding-top: 0;
}
.survey .formContent .formLabel {
  flex-shrink: 0;
  display: block;
  line-height: 1.2em;
}
.survey .formContent .formInputContainer {
  padding-top: 16px;
}
.survey .formContent .formInput {
  padding-top: 8px;
}
.survey .formContent .formInputBlock {
  padding-top: 8px;
}
.survey .formContent input,
.survey textarea {
  border-radius: 5px;
  background: rgba(242, 156, 151, 0.2);
}
#q_3 {
  height: 80px;
}

.surveyContainer .bling {
  position: absolute;
  flex-direction: column;
  right: 0px;
}
.survey .formContent .select2-container--default .select2-selection--single {
  border-radius: 5px;
  background: rgba(242, 156, 151, 0.2);
}
.survey
  .formContent
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--purple);
  max-width: 400px;
}
.survey .formContent .agreeChoiceWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-small);
  line-height: 1.5em;
  text-align: center;
  padding-top: 14px;
}
.survey .formContent .agreeChoice {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
}
.survey .formContent .agreeChoice .choiceBtn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8e7ef;
}
.survey .formContent .agreeChoice .choiceBtn.selected {
  background: var(--purple);
}
.survey .formContent .singleChoice,
.survey .formContent .multiChoice {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 14px;
  column-gap: 10px;
  padding-top: 16px;
}
.survey .formContent .singleChoice .choiceBtn,
.survey .formContent .multiChoice .choiceBtn {
  text-decoration: none;
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-radius: var(--border_radius_const);
  padding: 5px 15px;
}
.survey .formContent .singleChoice .choiceBtn.selected,
.survey .formContent .multiChoice .choiceBtn.selected {
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--purple);
}
.survey .surveyContainer .thankyou {
  text-align: center;
  padding: 50px 20px 40px;
}

.survey .surveyContainer .thankyou .btnContainer {
  margin: 0 auto;
  margin-top: 20px;
}

.survey #thankyouContainer {
  background-color: unset;
}

.survey #thankyouContainer .thankyou {
  border-radius: 10px;
  border: 1.5px solid #fff;

  background: #fff;
  background-color: white;
  width: 100%;
  text-align: center;
}

.survey #thankyouContainer .thankyou p {
  font-size: 25px;
}
.survey #thankyouContainer h4 {
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 24px;
}

.survey .thankyou .btnContaier {
  margin: 30px auto 0px;
}
/* Invitation */
.invitation .container {
  max-width: 600px;
}
.invitation .contentInner {
  padding-left: 40px;
  padding-right: 40px;
}

.invitation_content_container {
  max-width: 600px;
  margin: 0px auto;
  background: #e84091;
}

.invitation .mainContent {
  background: white;
  padding-bottom: 0px;
}

.invitation {
  font-family: "Microsoft JhengHei";
}
.invitation .kvContainer {
  /* border-bottom: 2px solid var(--mint); */
}
.invitation .kv {
  max-width: 600px;
  margin: 0 auto;
}
.invitation .eventTitle {
  /* border-bottom: 2px solid var(--mint); */
  padding: 26px 0;
}
.invitation .eventTitle h6 {
  font-size: 18px;
  line-height: 1.38em;
  text-align: center;
  margin-top: 5px;
  color: #d6e79c;
}

.invitation table,
.invitation tbody,
.invitation td,
.invitation tr {
  border: none !important;
}
.invitation .eventTitle h6:first-child {
  margin-top: 0;
}
.invitation .eventInfo {
  text-align: center;
  padding: 20px 0;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid #d5146a;
  border-top: 1px solid #d5146a;
  margin-bottom: 26px;
}

.invitation .eventInfo p:nth-child(1) {
  color: #fff;
  text-align: center;
  font-family: "Microsoft JhengHei";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.invitation .eventInfo p:nth-child(2) {
  color: #fff;
  text-align: center;
  font-family: "Microsoft JhengHei";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.invitation .bling span {
  animation-name: none;
}
.invitation .bling.anim span {
  animation-name: starBlink;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.invitation .bling span:nth-child(3) {
  animation-delay: 1s;
}
.invitation .bling span:nth-child(4) {
  animation-delay: 1.5s;
}
.invitation .bling span:nth-child(5) {
  animation-delay: 2s;
}
.invitation .bling span:nth-child(6) {
  animation-delay: 2.5s;
}
.invitation .bling span:nth-child(7) {
  animation-delay: 3s;
}
.invitation .bling span:nth-child(8) {
  animation-delay: 3.5s;
}
.invitation .bling span:nth-child(9) {
  animation-delay: 4s;
}
.invitation .bling1 {
  margin-bottom: 40px;
}
.invitation .mainForm {
  position: relative;
}

.invitation .sepLine {
  position: absolute;
  top: 0;
  left: 50%;
  /* right: -10px; */
  height: 1px;
  background-color: #d5146a;
  max-width: 540px;
  width: 100%;
  transform: translateX(-50%);
}

.invitation h5::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background-color: #662d91;
  margin: 18px auto;
}
.invitation h5 {
  color: #662d91 !important;
  font-size: 12px;
  font-weight: 700;
}

.invitation .mainInfoContainer label {
  color: #2d2d2d;
}
.invitation #mainForm .checkboxWrapper {
  margin-top: 5px;
}
.invitation #mainForm .checkboxWrapper:first-child {
  margin-top: 0;
}
.invitation #mainForm .checkboxContainer .checkmark {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.invitation #mainForm .checkboxContainer input:checked ~ .checkmark {
  background: #aace36;
}
.invitation #mainForm .checkboxContainer .checkmark::after {
  display: none;
}
.invitation #mainForm .attendNum {
  margin-top: 18px;
}
.invitation #mainForm .attendNum .label {
  margin-bottom: 8px;
}
.invitation #mainForm .hints {
  font-size: 11px;
  margin-top: 20px;
}
.invitation #mainForm .remarks {
  font-size: 11px;
  margin-top: 0px;
}
.invitation #mainForm .contactBox {
  font-size: 11px;
  border-radius: var(--border_radius2_const);
  margin-top: 14px;
  background-color: #d5146a;
  padding: 11px 15px;
  text-align: center;
  font-weight: 700;
}

.invitation #btnSubmit {
  background-color: #aace36;
  color: #2d2d2d;
}
.invitation #mainForm .mainInfoContainer {
  position: relative;
  padding-top: 26px;
  margin-top: 32px;
  /* max-width: 540px; */
  margin: 26px auto 0px;
}

.invitation #mainForm .mainInfo {
  font-size: 11px;
  line-height: 1.5em;
  border-radius: var(--border_radius2_const);
  color: var(--purple);
  background-color: #fff;
  padding: 10px 20px 30px;
  max-width: 540px;
  margin: 0 auto;
}
.invitation #mainForm .mainInfo table {
  width: 100%;
}
.invitation #mainForm .mainInfo td {
  vertical-align: middle;
  padding: 20px 0 0 20px;
}
.invitation #mainForm .mainInfo td:first-child {
  width: 165px;
  padding-left: 0;
}

.about_us .mainContent {
  /* background-color: #aace36; */
}
.about_us .bgDecor .decorArrow {
  background-image: url(../images/green_white_decor_arrow.svg);
}

.about_us .article-title {
  color: #433a78;
}
.about_us .titleContainer .decorArrow {
  background-image: url(../images/pink_decor_arrow.svg);
}
@media only screen and (max-width: 480px) {
  .invitation #mainForm .mainInfo .mainInfoTable {
    display: block;
  }
  .invitation #mainForm .mainInfo tbody {
    display: block;
  }
  .invitation #mainForm .mainInfo tr {
    display: block;
    padding: 15px 0 0 0;
  }
  .invitation #mainForm .mainInfo tr:first-child {
    /* padding: 0; */
  }
  .invitation #mainForm .mainInfo td {
    display: block;
    padding: 5px 0 0 0;
  }
  .invitation #mainForm .mainInfo td:first-child {
    width: 90px;
    padding: 0;
  }
}
.invitation #mainForm .mainInfo input {
  font-size: 15px;
  border: 1px solid #f6c1c1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.invitation .contactPersonTable input {
  border-radius: 4px;
  border: 1px solid #662d91 !important;
}
.invitation #mainForm .mainInfo ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 15px;
  color: #cdcae2;
  opacity: 1; /* Firefox */
}
.invitation #mainForm .mainInfo :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 15px;
  color: #cdcae2;
}
.invitation #mainForm .mainInfo ::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 15px;
  color: #cdcae2;
}
.invitation #mainForm .mainInfoContainer .remarks {
  text-align: right;
  margin: 14px auto 0px;
  max-width: 540px;
}
.invitation #mainForm .btnContaier {
  text-align: center;
  margin-top: 34px;
}
.invitation .artsAction {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 36px auto 0px;
  max-width: 600px;
}
/* .invitation .artsAction img {
  width: 72%;
  margin-right: -10px;
} */
.invitation .thankyou {
  position: relative;
  font-size: 15px;
  text-align: center;
  padding-top: 40px;
  margin-top: 20px;
}
.invitation .thankyou p {
  margin-top: 5px;
}
.invitation .thankyou p:first-child {
  margin-top: 0;
}

/* Enrolment */
.enrolment .mainContent {
  padding-top: 23px;
}
.enrolment .content {
  padding-bottom: 35px;
}
/* .enrolment h1 {
	font-size: 1.38em;
} */
.enrolment .remarks {
  margin-bottom: 5px;
}
.enrolment .bling1 {
  margin-top: 12px;
  margin-left: calc(var(--pad_lr) * -1);
}
.enrolment .bling1 span {
  width: 54px;
  height: 54px;
}
.enrolment .bling span {
  animation-name: none;
}
.enrolment .bling.anim span {
  animation-name: starBlink;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.enrolment .bling span:nth-child(3) {
  animation-delay: 1s;
}
.enrolment .bookingTimeContainer {
  position: relative;
}
.enrolment .bookingTime.bookingTimeFixed {
  display: none;
}
.enrolment .bookingTime {
  position: absolute;
  top: 50%;
  right: calc(var(--pad_lr) * -1);
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 700;
  line-height: 1em;
  background: #fff;
  padding: 7px 8px 5px 10px;
}
.enrolment .bookingTime .label {
  font-size: var(--fs-small);
  color: var(--purple);
}
.enrolment .bookingTime .time {
  color: var(--pink);
  margin-left: 4px;
}
.enrolment .enrolmentProgress {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}
.enrolment .enrolmentProgress .progressItem {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  opacity: 0.3;
}
.enrolment .enrolmentProgress .progressItem.active {
  opacity: 1;
}
.enrolment .enrolmentProgress .progressArrow {
  width: 14px;
  height: 14px;
  background-image: url(../images/icn_nav_arrow.svg);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% auto;
  margin: 0 8px;
  opacity: 0.3;
}
.enrolment .enrolmentProgress .progressArrow.active {
  opacity: 1;
}
.enrolment .enrolmentProgress .progressItem .itemNum {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  color: var(--purple);
  background-color: #fff;
  border-radius: 50%;
  padding-top: 2px;
}
.enrolment .enrolmentProgress .progressItem.active.done .itemNum::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/icn_completed.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.enrolment .enrolmentProgress .progressItem .itemTxt {
  margin-left: 10px;
  display: none;
}
.enrolment .enrolmentProgress .progressItem.active .itemTxt {
  display: block;
}
.enrolment .enrolmentProgress .progressItem.active.done .itemTxt {
  display: none;
}
.enrolment .mainContent .btn {
  display: none;
}
.enrolment .mainContent .btn.active {
  display: inline-block;
  vertical-align: top;
}
.enrolment .enrolContainer {
  border: 1px solid #fff;
  border-radius: var(--border_radius2_const);
  margin: 38px -10px 0;
}
.enrolment .enrolItem {
  position: relative;
  padding: 20px 10px;
  display: none;
}
.enrolment .enrolItem .itemTitle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
  padding: 10px 10px;
  background-color: var(--purple);
}
.enrolment .enrolItem.active {
  display: block;
}
.enrolment .enrolItem .partic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 22px 0 0;
}
.enrolment .enrolItem .partic .num {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  min-width: 62px;
  border-radius: var(--border_radius2_const);
  background: var(--purple_dark);
  padding: 10px 10px;
}
.enrolment .enrolItem .partic .person {
  margin-left: 5px;
  margin-bottom: 2px;
}
.enrolment .enrolItem .controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3px;
  margin-left: 10px;
  margin-bottom: 2px;
}
.enrolment .enrolItem .controlBtn {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icn_increase.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.enrolment .enrolItem .controlBtn.btnIncrease {
  background-image: url(../images/icn_increase.svg);
}
.enrolment .enrolItem .controlBtn.btnDecrease {
  background-image: url(../images/icn_decrease.svg);
}
.enrolment .enrolItem .particTnc,
.enrolment .enrolItem .particTnc ol {
  font-size: var(--fs-small);
  line-height: 1.5em;
}
.enrolment .enrolItem .particTnc {
  border-top: 1px solid var(--mint);
  padding-top: 28px;
  margin-top: 28px;
}
.enrolment .enrolItem .particTnc ol {
  list-style: decimal;
  margin-top: 4px;
}
.enrolment .enrolItem .particTnc ol li {
  margin-left: 20px;
  margin-top: 10px;
}
.enrolment .enrolItem .particTnc ol li:first-child {
  margin-top: 0;
}
.enrolment .enrolItem[data-part="2"] {
  padding-left: 23px;
  padding-right: 23px;
}
.enrolment .enrolItem .dateOfVisitWrapper {
  max-width: 312px;
  margin: 0 auto;
}
.enrolment .enrolItem .dateOfVisit {
  margin-top: 10px;
}
.enrolment .enrolItem .timeslotList {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 26px -6px 0;
}
.enrolment .enrolItem .timeslotItem {
  width: 50%;
  max-width: 162px;
  padding: 0 6px 12px;
}
.enrolment .enrolItem #selectDate {
  color: #fff;
  background: var(--purple_dark);
}
.enrolment .enrolItem .btnTimeslot {
  display: block;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: var(--border_radius_const);
  padding: 8px 10px;
}
.enrolment .enrolItem .btnTimeslot.active {
  color: var(--pink);
  background-color: #fff;
}
.enrolment .enrolItem[data-part="3"] {
  padding-top: 35px;
}
.enrolment .enrolItem .remarks {
  display: none;
}
.enrolment #enrolForm {
  display: block;
}
.enrolment #enrolForm .inputWrapper {
  margin-top: 18px;
}
.enrolment #enrolForm .inputContainer {
  margin-top: 12px;
}
.enrolment #enrolForm input {
  color: #fff;
  border: 1px solid #fff;
  border-radius: var(--border_radius_const);
  background-color: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
}
.enrolment #enrolForm .formRow {
  border-top: 1px solid var(--mint);
  padding-top: 44px;
  margin-top: 44px;
}
.enrolment #enrolForm .formRow:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.enrolment #enrolForm .checkboxWrapper {
  margin-top: 18px;
}
.enrolment #enrolForm .checkboxWrapper .txt {
  padding-top: 2px;
  padding-left: 35px;
}
.enrolment .checkboxContainer .checkmark {
  background-color: #8a81ba;
  border: 0;
  border-radius: 50%;
}
.enrolment .checkboxContainer .checkmark::after {
  width: 20px;
  height: 20px;
  background-image: url(../images/icn_completed.svg);
  background-size: 100% 100%;
}
.enrolment .enrolItem[data-part="4"] {
  padding: 35px 18px;
}
.enrolment .bookingInfo .infoItem {
  text-align: center;
  padding-top: 26px;
}
.enrolment .bookingInfo .infoItem:first-child {
  padding-top: 0;
}
.enrolment .bookingInfo .infoItem .itemLabel {
  margin-bottom: 6px;
}
.enrolment .bookingInfo .infoItem .itemRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.enrolment .bookingInfo .infoItem .itemRow > * {
  line-height: 1em;
}
.enrolment .bookingInfo .infoItem .sepLine {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 22px;
  background-color: var(--mint);
  margin: 0 26px;
}
.enrolment .userInfoContainer {
  border-top: 1px solid var(--mint);
  padding-top: 36px;
  margin-top: 36px;
}
.enrolment .userInfo td {
  padding-top: 26px;
}
.enrolment .userInfo .infoVal {
  font-size: 25px;
  font-weight: 700;
}
.enrolment .enrolExtra {
  display: none;
}
.enrolment .enrolExtra.active {
  display: block;
}
.enrolment .enrolExtra .remarks,
.enrolment .enrolExtra .remarks ul {
  font-size: var(--fs-small);
  line-height: 1.65em;
}
.enrolment .enrolExtra .remarks {
  color: #fff;
  background-color: var(--purple_dark);
  padding: 20px 14px;
  border-radius: var(--border_radius2_const);
  margin: 14px -10px 0;
}
.enrolment .enrolExtra .remarks ul {
  margin-bottom: -8px;
}
.enrolment .agreementContainer {
  font-size: 11px;
  line-height: 1.45em;
  margin-top: 64px;
}
.enrolment .agreementContainer .agreement {
  display: none;
}
.enrolment .agreementContainer .agreement.active {
  display: block;
}
.enrolment .agreementContainer .checkboxWrapper {
  margin-top: 18px;
}
.enrolment .agreementContainer .checkboxWrapper .txt {
  padding-top: 4px;
  padding-left: 32px;
}

/* Archives */
.archives .mainContent {
  background: #aace36;
}

.archives .topContent {
  position: relative;
}
.archives .bling4 {
  height: 64px;
  width: 64px;
  left: 10px;
  position: absolute;
  overflow: hidden;
  display: block;
}
.archives .bling5 {
  height: 64px;
  width: 64px;
  right: 10px;
  position: absolute;
  top: 0px;
  overflow: hidden;
  display: block;
}
.archives .bling4 span {
  /* position: absolute; */
  width: 64px;
  height: 64px;
  background-image: url(../images/bling4.svg);

  background-position: top right;
  background-size: 100% auto;
  pointer-events: none;
  display: inline-block;
  opacity: 1;
}

.archives .mainWrapper {
  background-color: #aace36;
}

.archives .contentContainer {
  padding: 0px;
}

.archives .container {
  max-width: unset;
}
.archives .bling5 span {
  width: 64px;
  height: 64px;
  background-image: url(../images/bling5.svg);

  background-position: top right;
  background-size: 100% auto;
  display: inline-block;
  opacity: 1;

  pointer-events: none;
}

.archives .title {
  color: #433a78;
  text-align: center;
  padding: 20px 0px;
}
.content_pastPCF {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 80px;
}

.content_pastPCF a {
  display: block;
}

#pcf_24 a {
  display: block;
  width: 340px;
  height: 454px;
  background-image: url(../images/pcf24_kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

#pcf_23 a {
  display: block;
  width: 340px;
  height: 454px;
  background-image: url(../images/pcf23_kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.content_pastPCF p {
  color: var(--Black, #2d2d2d);
  text-align: center;
  font-family: Arial;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 15px;
}

article {
  padding-top: var(--pad_top);
}
.archives .article-title {
  padding-bottom: var(--pad_top);
}
.archives .article-contentItem {
  padding-bottom: var(--pad_top_big);
}
.archives .article-contentItem .itemTitle {
  border-bottom: 1px solid var(--mint);
  padding-bottom: 10px;
}
.archives .article-contentItem .itemDesc {
}
.archives .article-contentItem .itemDesc p {
  padding-top: var(--pad_top);
}

.static .mainContent {
  background-color: #aace36;
}

.static .title {
  color: #ffffff;
}

/* .static p {
  color: #2d2d2d !important;
} */
@media only screen and (max-width: 320px) {
}
@media only screen and (max-width: 640px) {
  .survey .stageItem {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (min-width: 641px) {
  nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }

  /* Programme */
  .eventList.type2 .eventItem .itemImg {
    width: 184px;
    height: 245px;
  }
  .eventList.type2 .eventItem .itemTxts {
    padding-left: 25px;
    padding-right: 25px;
  }
  .eventList.type2 .eventItem .period {
    font-size: var(--fs-big);
  }
  .eventList.type2 .eventItem .cateIcon {
    width: 25px;
    margin-right: 10px;
  }
  .eventList.type2 .eventItem .itemTitle {
    font-size: 1.94em;
    margin-top: 20px;
  }
  .eventList.type2 .eventItem .cateName {
    margin-top: 20px;
    column-gap: 20px;
  }
  .eventList.type2 .eventItem .cateNameTxt {
    font-size: var(--fs-body);
    padding: 11px 15px 10px;
  }

  /* Survey */
  .survey .surveyLanding .eventList .eventItem {
    width: 33.33%;
  }
  .survey .surveyDetails .detailsImg {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 961px) {
  h1 {
    font-size: 3em;
  }
  .mainContent {
  }
  .contentContainer {
    padding-top: 0;
  }

  .pageHead::before {
    background-image: url(../images/page_head_bg_d.jpg);
    background-position: bottom center;
    background-size: auto 170px;
    padding-bottom: 0;
    height: 171px;
  }
  /* .pageHead .pageTitleContainer {
		text-shadow: 3px 3px 15px rgba(11, 11, 11, 0.30);
	} */
  .pageHead .pageTitle::after {
    /* width: 360px;
		height: 4px;
		margin-top: 16px; */
  }

  nav {
    padding: 24px 0;
  }

  .titleContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 760px;
  }
  .titleContainer .title {
    width: 100%;
  }
  .titleContainer h2 {
    font-size: 49px;
  }
  .titleContainer .decorArrow {
    flex-shrink: 0;
    width: 186px;
    height: 124px;
    padding-left: 0;
  }
  .titleContainer .decorArrow::after {
    margin-left: 186px;
  }

  .desc {
    padding-top: 25px;
  }

  .bling span {
    display: inline-block;
    vertical-align: top;
    width: 74px;
    height: 74px;
  }

  .programme .btnOpenSearch {
    width: 45px;
    height: 45px;
    background-size: 24px auto;
  }

  .cateName {
    gap: 24px;
  }
  .cateNameTxt {
    font-size: 18px;
  }

  /* .infoBox .infoVal:not(:first-child) {
    padding-top: 18px;
  } */
  .infoVal .itemIcon {
    width: 24px;
    margin-top: 1px;
  }
  .infoContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
  }
  .infoContainer .infoTxts {
    flex-grow: 1;
    /* border-top: 0;
		border-left: 1px solid var(--mint); */
    margin-top: 0;
    /* padding-top: 0; */
    margin-left: 30px;
  }
  .infoContainer .btnContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }
  .infoBox {
    flex-shrink: 0;
    width: 460px;
  }
  .infoBox .infoItem:not(:first-child) {
    /* padding-top: 23px; */
    /* margin-top: 18px; */
  }
  .extraInfo {
    padding: 30px 0;
  }
  .extraInfo .infoItem {
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
  }
  .extraInfo .infoItem > div {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .extraInfo .infoItem .infoTxts p {
    font-size: var(--fs-small);
    line-height: 2em;
  }

  /* Programme */
  .programme .eventFilters .filtersRow {
    flex-wrap: wrap;
  }
  .eventList.type2 .eventItem {
    padding: 0 0 50px;
  }
  .eventList.type2 .eventItem .itemImg {
    width: 362px;
    height: 272px;
  }

  .search .mainContent .topContent {
    justify-content: center;
    padding: 25px 0px;
  }

  .search .bling span {
    opacity: 1;
  }
  .search .mainContent .topContent .bling span:nth-child(2) {
    display: inline-block;
  }

  /* Programme Details */
  .programmeDetails .content {
    padding-bottom: 0px;
  }
  /* Programme Details */
  .programmeDetails .whats_on .bling {
    position: absolute;
    right: 0px;
    width: 500px;
    height: 121px;
    overflow: hidden;
    display: flex;
  }

  .programmeDetails .whats_on .eventList .eventItem {
    /* aspect-ratio: 308/424; */
    min-width: 310px;
  }
  .programmeDetails .whats_on .btnContainer {
    /* margin-top: -90px; */
  }

  .programmeDetails .bling.bling1 span {
    background-image: url(../images/bling5.svg);
  }
  .programmeDetails .whats_on .bling span {
    display: inline-block;
    width: 121px;
    height: 121px;
  }

  .programmeDetails .bookBtn_container {
    position: relative;
    bottom: 0px;
    background-color: unset;
    width: 100%;
    left: 0px;
    padding: 0px;
    background: unset;
    z-index: 1;
  }
  .programmeDetails .tnc {
    margin-top: 92px;
    margin-bottom: 20px;
  }
  .programmeDetails .gallerySlider {
    padding: 35px 0 0;
  }
  .programmeDetails .screenings {
    /* padding-top: 75px; */
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .programmeDetails .screenings .infoVal {
    margin-top: 12px;
  }
  .programmeDetails .screeningsList {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .programmeDetails .screeningsItem {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .programmeDetails .screeningsItem .itemContent {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    padding: 20px 40px 20px 30px;
  }
  .programmeDetails .screeningsItem .itemContent::after {
    width: 19px;
  }
  .programmeDetails .screeningsItem .itemTitle {
    /* flex: 1 0; */
  }
  .programmeDetails .screeningsItem .itemContent h3 {
    font-size: 1.33em;
  }
  .programmeDetails .screeningsItem .infoContent {
    flex-grow: 1;
  }
  .programmeDetails .screenings .remarks {
    /* display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start; */
    margin-top: 40px;
  }
  .programmeDetails .screenings .artistItem {
    width: 20%;
  }

  .programmeDetails .eventList .eventItem .itemImg {
    margin: 0 -15px;
  }
  .programmeDetails .eventItem .period {
    margin-top: 24px;
    font-size: 1.11em;
  }
  .programmeDetails .eventItem .itemBtn {
    padding: 0 15px 20px;
  }
  .programmeDetails .eventList .eventItem .cateIcon {
    width: 25px;
  }
  .programmeDetails .eventList .eventItem .cateNameTxt {
    font-size: var(--fs-body);
    border-radius: var(--border_radius_const);
    padding: 11px 15px 10px;
  }

  /* About the Fest */
  .about_fest .mainContent {
    padding-bottom: 124px;
  }
  .about_fest .contentContainer {
    position: relative;
  }
  .about_fest .content {
    margin-top: 70px;
  }
  .about_fest .desc {
    text-align: justify;
  }

  /* Survey */
  .survey .stageItem {
    margin-bottom: 60px;
  }
  .survey .surveyLanding .intro {
    line-height: 1.72em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .survey .selectDateCol span {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: 0;
    background-image: url(../images/icn_dropdown.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px auto;
    width: 26px;
    height: 26px;
    z-index: 2;
    transform: translate(0, -50%);
  }
  .survey .surveyLanding .searchTitle {
    font-size: 3em;
  }
  .survey .surveyLanding .searchWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .survey .surveyLanding .searchWrapper {
    width: 100%;
    padding-top: 0;
  }
  .survey .surveyLanding .searchWrapper .inputSearch {
    border-radius: var(--border_radius2_const);
    background-size: 28px auto;
    height: 53px;
  }
  .survey .surveyLanding .eventListSort {
    flex-shrink: 0;
    padding-top: 0;
    padding-left: 66px;
  }
  .survey .surveyLanding .eventListSort .sortBtn {
    background-size: 20px auto;
  }
  .survey .surveyLanding .eventListSort .sortBtn.active {
    border-bottom-width: 2px;
  }
  .survey .surveyLanding .eventList {
    padding-top: 36px;
  }
  .survey .surveyLanding .eventList .eventItem {
    padding: 0 10px;
    margin-bottom: 30px;
  }
  .survey .surveyLanding .eventList .eventItem .itemTxts {
    padding-bottom: 22px;
  }
  .survey .surveyDetails .detailsImgWrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .survey .surveyDetails .detailsImg {
    flex-shrink: 0;
    width: 297px;
    height: 223px;
    margin-right: 36px;
    padding-bottom: 0;
  }
  .survey .surveyDetails .titleContainer {
    align-self: center;
    padding-top: 0;
  }
  .survey .surveyContainer .subtitle {
    max-width: 830px;
  }
  .survey .surveyContainer .surveyList {
    padding: 48px 42px;
    margin-top: 66px;
  }
  .survey .surveyContainer .surveyProgress .progressItem {
    width: 200px;
  }
  /* .survey .formContent hr {
		margin-top: 55px;
	} */
  .survey .formContent .formTop {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 42px;
  }
  .survey .formContent .formRow {
    margin-top: 55px;
  }
  .survey .formContent .formRow:first-child {
    margin-top: 0;
  }
  .survey .formContent .formRow::before {
    margin-bottom: 55px;
  }
  .survey .formContent .formRow.firstRow .remarks {
    transform: translateY(-34px);
  }
  .survey .formContent .formCol {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-left: 55px;
  }
  .survey .formContent .formCol:first-child {
    padding-left: 0;
    width: 70%;
  }

  .survey .formAgreeChoice {
    width: 100% !important;
  }

  .survey .formAgreeChoice .formInput {
    width: unset !important;
  }
  .survey .formContent .formInputContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    /* max-width: 850px; */
  }
  .survey .formContent .formInputContainer .formInput {
    width: 100%;
  }
  .survey .formContent .formInput {
    padding-top: 0;
    padding-left: 20px;
    width: 100%;
  }
  .survey .formContent .formInputBlock {
    padding-top: 25px;
  }
  .survey .formContent .agreeChoiceWrapper {
    font-size: var(--fs-body);
    padding-top: 0;
  }
  .survey .formContent .agreeChoice {
    margin: 0 50px;
  }
  .survey .surveyContainer .btnContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
  }

  /* Enrolment */
  .enrolment .bookingTimeWrapper {
    position: relative;
  }
  .enrolment .topContent {
    padding-right: 300px;
  }
  .enrolment .bookingTimeContainer {
    position: absolute;
    top: 0;
    right: calc(var(--pad_lr) * -1);
  }
  .enrolment .bookingTime {
    display: none;
  }
  .enrolment .bookingTime.bookingTimeFixed {
    position: fixed;
    z-index: 100;
    top: 178px;
    right: 0;
    align-items: center;
    white-space: nowrap;
    padding: 10px 23px;
    display: block;
  }
  .enrolment .bookingTime .label {
    font-size: 20px;
    line-height: 1em;
  }
  .enrolment .bookingTime .time {
    font-size: 25px;
    line-height: 1em;
    margin-left: 8px;
  }
  .enrolment .bling span {
    width: 122px;
    height: 122px;
  }
  .enrolment .bling1 {
    display: none;
  }
  .enrolment .enrolmentProgress {
    justify-content: space-between;
  }
  .enrolment .enrolmentProgress .progressItem .itemNum {
    font-size: 20px;
    width: 30px;
    height: 30px;
    padding-top: 0;
  }
  .enrolment .enrolmentProgress .progressItem .itemTxt {
    display: block;
    margin-left: 15px;
  }
  .enrolment .enrolmentProgress .progressItem.active.done .itemTxt {
    display: block;
  }
  .enrolment .mainContent .btnContainer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
  }
  .enrolment .enrolContainer {
    margin-left: 0;
    margin-right: 0;
  }
  .enrolment .enrolItem {
    padding: 30px 40px;
  }
  .enrolment .enrolItem .dateOfVisitWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }
  .enrolment .enrolItem .dateOfVisitContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .enrolment .enrolItem .dateOfVisit {
    margin-top: 0;
    padding-left: 35px;
  }
  .enrolment .enrolItem .particWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .enrolment .enrolItem .particContainer {
    flex-shrink: 0;
    width: 26%;
    text-align: center;
    margin-right: 40px;
  }
  .enrolment .enrolItem .particTnc {
    border-top: 0;
    border-left: 1px solid var(--mint);
    padding: 0 0 0 46px;
    margin: 0 0 0;
  }
  .enrolment .enrolItem .timeslotList {
    margin: 0 0 0 46px;
  }
  .enrolment .enrolItem .timeslotItem {
    width: auto;
    padding: 0 18px;
  }
  .enrolment .enrolItem .itemTitle {
    top: -24px;
    left: 22px;
    transform: translate(0, 0);
    padding-left: 15px;
    padding-right: 15px;
  }
  .enrolment .enrolItem .inputWrapper {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: flex-start;
  }
  .enrolment .enrolItem .remarks,
  .enrolment .enrolItem .remarks ul {
    font-size: var(--fs-small);
    line-height: 1.9em;
  }
  .enrolment .enrolItem .remarks {
    margin-top: 48px;
    display: block;
  }
  .enrolment #enrolForm .rowTitle {
    margin-bottom: 5px;
  }
  .enrolment #enrolForm .inputWrapper .inputContainer {
    width: 100%;
    margin: 0 0 0 30px;
  }
  .enrolment #enrolForm input {
    max-width: 360px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .enrolment #enrolForm .checkboxWrapper .txt {
    padding-top: 0;
  }
  .enrolment .enrolItem[data-part="4"] {
    padding-left: 40px;
    padding-right: 40px;
  }
  .enrolment .bookingInfo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .enrolment .bookingInfo .infoItem {
    text-align: left;
    padding: 0 0 0 120px;
  }
  .enrolment .bookingInfo .infoItem:first-child {
    padding: 0;
  }
  .enrolment .userInfoContainer p {
    margin-top: 6px;
  }
  .enrolment .userInfoContainer p:first-child {
    margin-top: 0;
  }
  .enrolment .userInfo {
    display: block;
    margin-top: 18px;
  }
  .enrolment .userInfo tbody {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .enrolment .userInfo tbody tr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 270px;
  }
  .enrolment .userInfo tbody td {
    padding: 10px 20% 0 0;
  }
  .enrolment .enrolExtraContainer {
    display: none;
  }
  .enrolment .agreementContainer {
    font-size: 13px;
  }

  /* Archives */
  .archives .article-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .archives .article-contentItem {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .archives .bling span {
    opacity: 1;
  }

  .archives .bling4,
  .archives .bling5 {
    width: 150px;
  }

  .search .bling4 {
    position: absolute;
    height: 74px;
    width: 150px;
    left: 10px;
  }
  .search .bling5 {
    position: absolute;
    height: 74px;
    width: 150px;
    right: 10px;
  }

  .search .mainContent .topContent .bling4 span:nth-child(1) {
    display: inline-block;
  }
  .search .mainContent .topContent .bling5 span:nth-child(1) {
    display: inline-block;
  }
}
@media (min-width: 1281px) {
  /* Programme */
  .programme .eventFilters .filtersScroll {
    padding-left: 0;
  }

  /* Survey */
  .survey .surveyLanding .eventList .eventItem {
    width: 25%;
  }
  .survey
    .formContent
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    min-width: 243px;
  }

  /* Enrolment */
  .enrolment .bling1 {
    display: block;
  }
}
@media (min-width: 1441px) {
  .programmeDetails .bling {
    position: absolute;
    right: 0px;
    width: unset;
    height: 121px;
    overflow: hidden;
    display: flex;
  }
  /* About the Fest */
  .about_fest .mainContent .bling {
    position: absolute;
    top: 200px;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .about_fest .mainContent .bling span {
    width: 121px;
    height: 121px;
    animation: none;
  }
  .about_fest .mainContent .bling.anim span {
    animation-name: starBlink;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .about_fest .mainContent .bling span:nth-child(1) {
    animation-delay: 0s;
  }
  .about_fest .mainContent .bling span:nth-child(2) {
    animation-delay: 0.5s;
  }
  .about_fest .mainContent .bling span:nth-child(3) {
    animation-delay: 1s;
  }
  .about_fest .mainContent .bling span:nth-child(4) {
    animation-delay: 1.5s;
  }
  .about_fest .mainContent .bling span:nth-child(5) {
    animation-delay: 2s;
  }

  .survey .surveyLanding .bling.anim span,
  .survey .surveyContainer .bling.anim span {
    animation-name: starBlink;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
}
