
/* footer */
.footer-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px 0;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 22px 0 30px;
}

.click-top {
  width: 100%;
  margin-bottom: 32px;
}

.click-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--btn-background);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  color: var(--black-color);
  margin: 0 auto;
}

.privacy-terms {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-terms a {
  font-size: 15px;
  line-height: 1.45em;
  font-weight: 400;
  color: var(--heading-color);
  text-decoration: underline;
}

.privacy-terms a:hover {
  color: var(--orange-color);
  text-decoration: none;
}

.copyright-wrapper {
  width: 100%;
}

@media (min-width: 768px) {

  .copyright {
    align-items: center;
    justify-content: center;
    margin: 25px 0;
  }

  .click-top {
    width: auto;
    margin: 0;
  }

  .copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .privacy-terms {
    gap: 100px;
  }
}

@media (min-width: 1200px) {

  .copyright {
    padding: 0 28px;
    width: 100%;
  }

  .copyright-wrapper {
    width: 50%;
  }

  .copyright p {
    font-size: 20px;
    width: 30%;
  }

  .privacy-terms {
    gap: 90px;
  }

  .privacy-terms a {
    font-size: 20px;
  }

  .click-top a:hover {
    background: var(--orange-color);
  }

  .copyright {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .footer-flex .footer-col:last-child {
    width: unset;
  }

  .footer-links.social {
    column-count: unset;
  }

}



.tickets-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 99;
  width: 100%;
  height: 102vh;
  background: var(--white-color);
  padding: 120px 0 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.tickets-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.close__popup {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
}

.close__popup::before,
.close__popup::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #F44336;
  transform: rotate(45deg) translate(5px, 10px);
  border-radius: 10px;
  pointer-events: none;
}

.close__popup::after {
  transform: rotate(-45deg) translate(-10px, 5px);
}

.tickets-popup .container {
  padding: 0 15px;
}

.section-heading p {
  color: var(--text-color);
  margin: 0 0 25px;
}

.tickets-form-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
}

.buy-tickets {
  text-align: center;
  margin: 16px 0 0;
}

.buy-tickets p {
  font-size: 14px;
  color: var(--text-color);
  padding: 0 13px;
  margin: 25px 0 0;
}

@media (min-width: 1025px) {
  .tickets-popup {
    width: calc(100% - 48px);
    height: calc(100vh - 48px);
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
  }

  .tickets-form {
    max-width: 916px;
    margin: 0 auto;
  }

  .tickets-form-wrap {
    gap: 20px;
  }

  .section-heading p {
    margin: 0 0 42px;
  }

  .close__popup {
    left: unset;
    right: 20px;
    top: 20px;
    transform: translate(0);
    width: 20px;
    height: 20px;
  }

  .close__popup::before,
  .close__popup::after {
    width: 20px;
    height: 4px;
    transform: rotate(45deg) translate(5px, 6px);
  }

  .close__popup::after {
    transform: rotate(-45deg) translate(-6px, 5px);
  }
}

.book-stall-banner {
  position: relative;
  height: 578px;
  padding-top: 120px;
}

.book-stall-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 21.99%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.book-stall-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

.book-stall-banner__content {
  max-width: 670px;
  margin: 0 auto;
}

.book-stall-banner__content h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2727272727272727em;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 10px;
}

.book-stall-banner__content h1 {
  color: var(--white-color);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.4642857142857142em;
  text-transform: uppercase;
}

.book-stall-banner__content p {
  color: var(--white-color);
}

.book-stall-banner__logo {
  margin-bottom: 15px;
}


.book-stall-area {
  position: relative;
  margin-top: -180px;
}

.book-stall-area__wrapper {
  position: relative;
  padding: 40px 16px 16px;
  position: relative;
}

.book-stall-area__wrapper::before {
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  background: #FFFFFF;
  z-index: 1;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.07);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 16px;
}

.book-stall-area__reverse {
  display: flex;
  gap: 40px;
  flex-direction: column-reverse;
}

.stall-details-wrapper .btn {
  width: 100%;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  transition: var(--transition);
}

.stall-details-wrapper .btn::after {
  position: relative;
  right: unset;
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}

.stall-details-col{
  background: #FFF6E5;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 16px 12px;
  margin-bottom: 12px;
}

.stall-details-icon {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-stall-area__right .subheading  {
  margin-bottom: 30px;
}

.book-stall-area__left  img{
  border-radius: 20px;
}

.stall-details-content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FF9D00;
}

.stall-details-content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0C1D3B;
}

.select-stall select{
  border: none;
  background: #FFF6E5;
  padding: 0;
  height: unset;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0C1D3B;
  padding-right: 10px;
}

.select-stall select option {
  font-size: 16px;
  line-height: 27px;
  color: #334332;
  font-weight: normal;
}

.stall-booking .section-heading {
  margin-bottom: 30px;
}

.tickets-popup.stall-booking{
  overflow: auto;
  padding-bottom: 30px;
}


@media (min-width: 768px) {
  .stall-details-content h3 {
    font-size: 20px;
    line-height: 20px;
  }

  .stall-details-content h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1666666666666667em;
  }

  .select-stall select{
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1666666666666667em;
  }

  .stall-details-icon {
    width: 60px;
    height: 60px;
    padding: 14px;
  }

  .tickets-popup.stall-booking{
    padding-bottom: 30px;
  }

}


@media (min-width: 1024px) {
  .book-stall-area__reverse {
    gap: 0px;
    flex-direction: unset;
  }

  .stall-details-col {
    padding: 20px;
  }

  .book-stall-area__right .subheading {
    margin-bottom: 22px;
  }

  .book-stall-area__wrapper {
    padding: 40px;
  }

  .book-stall-banner__content h1 {
    font-size: 48px;
    line-height: 2em;
  }
  
  .book-stall-banner__content h3 {
    font-size: 32px;
    line-height: 1.25em;
    text-align: center;
    display: inline-block;
  }

  .book-stall-area {
    margin-top: -75px;
    margin-bottom: 40px;
  }

}

.razorpay-embed-btn iframe {
  width: 100% !important;
} 

.razorpay-embed-btn a,
.razorpay-embed-btn a.large {
  width: 100% !important;
  display: inline-block !important;
}


#rzp-btn {
  width: 100% !important;
 display: inline-block;
}