@charset "UTF-8";

/* -----------------------------------------------------------------------------------
    Template Name: Evento - Event HTML Template
    Template URI: https://webtend.net/demo/html/evento/
    Author: WebTend
    Author URI:  https://webtend.net/
    Version: 1.0

    Note: This is Main Style CSS File.
-----------------------------------------------------------------------------------
	CSS INDEX
	===================
    01. Default CSS
    02. Common Class
    03. Hero Section
    04. Page Banner
    05. Event Section
    06. Cart + Checkout
    07. Category Section
    08. About Section
    09. Feature Section
    10. Work Process
    11. Testimonials
    12. Shop Section
    13. Client Logos
    14. Blog Section
    15. Widgets
    16. FAQ Page
    17. Contact Section
    18. Footer Area
    19. Rate review
    20. Carousel
    21. Gallery Section
----------------------------------------------------------------------------------- */

/****************************************************** */

/******************** 01. Default CSS ***************** */

/****************************************************** */
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

:root {
  scroll-behavior: auto;

  --base-color: #454545;
  --heading-color: #030a15;
  --primary-color: #22b0af;
  --light-color: #f7f7f7;
  --base-font: "Roboto", sans-serif;
  --heading-font: "Raleway", sans-serif;
}

body {
  color: var(--base-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--base-font);
}

a {
  color: var(--base-color);
  cursor: pointer;
  outline: none;
  transition: 0.5s;
  text-decoration: none;
}

a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--heading-color);
}

.main-header {
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.btn-login:hover {
  background-color: #f9b40c;
  color: #000;
}

.btn-google {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}

.btn-google:hover {
  background-color: #ebebeb;
  color: #000;
}

.google-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white h1 a,
.text-white h2 a,
.text-white h3 a,
.text-white h4 a,
.text-white h5 a,
.text-white h6 a {
  color: #fff;
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 30px;
  line-height: 1.4;
}

h4 {
  font-size: 22px;
  line-height: 1.46;
}

h5 {
  font-size: 18px;
  line-height: 1.5;
}

h6 {
  font-size: 13px;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: inline-block;
}

header::after,
section::after,
footer::after {
  display: block;
  clear: both;
  content: "";
}

/* ======= Input Styles ======= */
input,
textarea,
select {
  width: 100%;
  font-size: 16px;
  padding: 15px 25px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
}

textarea {
  height: 170px;
  display: inherit;
  padding-top: 20px;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
}

::input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

:input-placeholder {
  opacity: 1;
}

::input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  height: auto;
  width: auto;
}

/****************************************************** */

/****************** 02. Common Class ****************** */

/****************************************************** */

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

/* Section Title */
.section-title h2 {
  text-align: center;
}

.title-underline {
  text-decoration: 5px underline;
  text-decoration-color: #f8b409;
}

/** Button styles */
.theme-btn,
a.theme-btn {
  z-index: 1;
  color: white;
  cursor: pointer;
  font-size: 15px;
  transition: 0.5s;
  font-weight: 700;
  text-align: center;
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.theme-btn:hover,
a.theme-btn:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Learn More Btn */
.read-more {
  color: #333;
  font-size: 14px;
  align-items: center;
  display: inline-flex;
  text-transform: capitalize;
}

.read-more::after {
  content: "";
  height: 2px;
  width: 14px;
  transition: 0.3s;
  margin-left: 10px;
  background: var(--primary-color);
}

.read-more:hover::after {
  margin-left: 13px;
}

/* social link style One */
.social-style-one {
  display: flex;
}

.social-style-one a {
  height: 40px;
  width: 40px;
  color: white;
  font-size: 14px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin: 0 10px 5px 0;
  background: rgb(255 255 255 / 10%);
}

.social-style-one a:last-child {
  margin-right: 0;
}

.social-style-one a:hover {
  background: var(--primary-color);
}

/* social link style Two */
.social-style-two a {
  margin-right: 15px;
}

.social-style-two a:not(:hover) {
  opacity: 0.5;
}

/* List style One */
.list-style-one li {
  color: #555;
  margin-bottom: 6px;
}

.list-style-one li i {
  margin-right: 20px;
  font-size: 14px;
  color: var(--primary-color);
}

.list-style-one li i.fa-check {
  color: #4bae4f;
}

/* List style Two */
.list-style-two li:not(:last-child) {
  margin-bottom: 10px;
}

.list-style-two li {
  display: flex;
  justify-content: space-between;
}

/* pagination style */
.pagination .page-link {
  background: transparent;
  font-weight: 700;
  height: 50px;
  width: 50px;
  padding: 0;
  line-height: 50px;
  text-align: center;
  border: 1px solid #cdd2d9;
  color: var(--heading-color);
}

.pagination .page-item {
  margin: 10px 10px 0 0;
}

.page-item .page-link:hover {
  color: white;
  background: var(--primary-color);
}

.page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.pagination .page-link,
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  border-radius: 50%;
}

.pagination .page-item:last-child {
  margin-right: 0;
}

/*** Preloader style ** */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
}

/*** Scroll Top style ** */
.scroll-top {
  flex: none;
  width: 50px;
  height: 50px;
  color: white;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  border: 1px solid #fff3;
  background: var(--primary-color);
  animation: pulse 2s infinite;
}

/* text inputs and testarea */
.form-group {
  margin-bottom: 20px;
}

.nice-select,
.form-group input,
.form-group textarea,
.input-group input,
.input-group textarea {
  float: none;
  height: auto;
  padding: 15px 25px;
  background: transparent;
  border-radius: 7px;
}

.form-group input:disabled {
  background-color: #f1f1f1;
  color: #6c757d;
}

.nice-select:focus {
  border-color: #eff0f0;
}

.nice-select:hover,
.form-group input:focus,
.form-group textarea:focus,
.input-group input:focus,
.input-group textarea:focus {
  box-shadow: none;
  border-color: #eff0f0;
  background: transparent;
  border-radius: 7px;
}

.form-group select,
.input-group select {
  border-radius: 1px;
  background: transparent;
}

.form-group label {
  font-weight: 500;
}

/* overlay */
.overlay {
  z-index: 1;
  position: relative;
}

.rel {
  position: relative;
}

.bg-lighter {
  background: var(--light-color);
}

.bg-black {
  background: var(--heading-color);
}

/****************************************************** */

/***************** 03. Hero Section  ****************** */

/****************************************************** */
.hero-section {
  display: flex;
  height: 80px;
  align-items: center;
  background-size: cover;
  justify-content: center;
}

.hero-content {
  margin: 0 auto;
  max-width: 930px;
  text-align: center;
}

.hero-content p,
.hero-content h1 {
  color: white;
}

.hero-content p {
  max-width: 700px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.event-search {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.event-search .search-item {
  display: flex;
  align-items: center;
  background: rgb(241 241 241);
  padding: 0 20px;
  width: 400px;
  height: 40px;
  max-height: 50px;
  border-radius: 10px;
}

.event-search .search-item label {
  margin: 0;
  cursor: pointer;
}

.event-search .search-item input,
.event-search .search-item select {
  padding: 0 15px;
  font-size: 14px;
  background: rgb(241 241 241);
  border: none;
}

.event-search .theme-btn {
  border-radius: 0;
}

#borwseby-button {
  border-right: 1px solid rgb(3 10 21 / 15%);
}

.ui-icon::after {
  content: "\f0d7";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}

.ui-icon {
  text-indent: 0;
  margin-right: 0;
}

.img-banner-hero {
  object-fit: cover;
}

#otp-input {
  display: flex;
  gap: 0.5em;
}

#otp-input input {
  width: 100%;
  padding: 0.5em 0;
  font-family: monospace;
  font-size: 1em;
  text-align: center;
}

/* hide spinner */
#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

#otp-input input[type="number"] {
  appearance: textfield; /* Firefox */
}

/****************************************************** */

/***************** 04. Page Banner  ******************* */

/****************************************************** */
.page-title {
  color: white;
  text-align: center;
  margin-bottom: 10px;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: white;
  font-weight: 800;
  font-family: var(--heading-font);
}

/****************************************************** */

/**************** 05. Event Section  ****************** */

/****************************************************** */

.event-image {
  position: relative; /* Referensi untuk posisi absolut badge */
  display: inline-block; /* Pastikan gambar menjaga proporsi */
  overflow: hidden;
}

.event-image img {
  width: 100%; /* Gambar mengisi pembungkus */
  height: auto; /* Menjaga rasio aspek */
  display: block; /* Hapus spasi di bawah gambar */
}


.cicilan-badge img {
  width: 12px; /* Ukuran ikon lebih kecil */
  height: 12px;
  margin-right: 3px; /* Jarak lebih kecil */
  position: relative;
}

.cicilan-badge span {
  position: relative; /* Pastikan teks di atas latar belakang */
  color: white;
  font-family: Arial, sans-serif;
  font-size: 12px; /* Ukuran font sesuai desain Anda */
}

.event-page-section .container-custom {
  max-width: 1620px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.img-banner-hero {
  border-radius: 10px; /* Adjust the value as needed */
}

.events-filter-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 10px 15px;
  border-radius: 15px;
}

.events-filter {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.event-info {
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px 10px;
}

.event-info .event-info-border {
  padding-block: 2px;
  padding-inline: 8px;
  background-color: #fff0bb;
  border-radius: 10px;
  font-weight: 400;
  font-size: 12px;
}

.event-info .event-info-border a {
  color: #ffac33 !important;
}

.event-info span:first-child a {
  color: var(--primary-color);
  font-weight: 500;
}

.gallery-filter li {
  color: black;
  cursor: pointer;
  font-size: 14px;
  padding: 3px 18px;
  transition: 0.5s;
  font-weight: 700;
  border-radius: 4px;
  margin: 0 10px 10px;
  font-family: var(--heading-font);
}

.events-filter li {
  display: inline-block;
  margin-right: 15px;
  padding: 10px;
  cursor: pointer;
  white-space: nowrap; 
  background-color: #e1e1e14a;
  border-radius: 0.5rem;
}

.events-filter li:hover,
.events-filter li.current,
.gallery-filter li:hover,
.gallery-filter li.current {
  color: white;
  background: var(--primary-color);
  border-radius: 0.5rem;
}

.event-item,
.gallery-item {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background: white;
  border-radius: 0 0 10px 10px;
}

.event-image img,
.gallery-item img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.event-content {
  position: relative;
  padding: 10px 10px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 0p 0p 10px 10px;
}

.event-content .time-info {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  /* width: calc(100% - 15px); */
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  padding: 10px;
  /* border-radius: 4px; */
  background: #22b0a2;
  color: white;
  line-height: normal;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
}
.event-item .cicilan-badge {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: #9d1818;
  flex-wrap: wrap;
  padding: 0px 5px;
  color: white;
  line-height: normal;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px 0px 10px 0px;
  width: 100px;
  height: 25px;
}

.event-content .time-info i {
  color: var(--primary-color);
  margin-inline-end: 2px;
  font-size: 12px;
}

.event-content .organizer {
  display: inline-block;
  margin-bottom: 5px;
}

.event-content .dates {
  top: -14px;
  color: white;
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 16px;
  position: absolute;
  border-radius: 4px;
  background: var(--primary-color);
}

.event-content h4,
.event-content h5 {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.event-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  min-height: 60px;
  color: #0000007a;
}

.event-content .location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: normal;
  flex: 0 0 auto;

  /* width: calc(100% / 1.45); */
  width: 100%;
}

.event-content .location span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.event-content .location i {
  color: var(--primary-color);
}

.btn-disabled {
  background-color: #ccc; /* Warna abu-abu menandakan disabled */
  cursor: not-allowed;
  opacity: 0.5;
}


.price-remain {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
  justify-content: flex-end;
  line-height: normal;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #d9d9d9;
}

.price-remain span:first-child {
  font-weight: 500;
}

.price-remain .price {
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.price-remain .remain {
  font-weight: 300;
}

.price-remain del {
  color: var(--base-color);
}

.event-footer {
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
  padding: 6px 20px;
  border-radius: 4px;
  align-items: center;
  justify-content: space-between;
  background: var(--light-color);
}

.event-footer li i {
  margin-right: 3px;
  color: var(--primary-color);
}

.event-item .wishlist-btn {
  --size: 40px;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto 10px;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  border-radius: 0 0 5px 5px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  z-index: 1;
}

/* Releted Events */
.releted-event-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: space-between;
}

.related-event-wrap {
  margin-left: -15px;
  margin-right: -15px;
}

.related-event-wrap .event-item {
  margin-left: 15px;
  margin-right: 15px;
}

.related-event-wrap .event-content {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.slick-next-prev {
  display: flex;
}

.slick-next-prev button:not(:last-child) {
  margin-right: 10px;
}

.slick-arrow {
  height: 50px;
  width: 50px;
  transition: 0.5s;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.slick-arrow:focus,
.slick-arrow:hover {
  color: white;
  background: var(--primary-color);
}

/* Popular Event */
.popular-section {
  width: 100%;
  display: flex;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg id=%22visual%22 viewBox=%220 0 1919 635%22 width=%221919%22 height=%22635%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 version=%221.1%22><rect x=%220%22 y=%220%22 width=%221919%22 height=%22635%22 fill=%22%23ffffff%22></rect><path d=%22M0 473L274 405L548 389L822 429L1097 378L1371 372L1645 453L1919 382L1919 636L1645 636L1371 636L1097 636L822 636L548 636L274 636L0 636Z%22 fill=%22%23eaf9f2%22></path><path d=%22M0 427L274 439L548 464L822 485L1097 422L1371 482L1645 421L1919 426L1919 636L1645 636L1371 636L1097 636L822 636L548 636L274 636L0 636Z%22 fill=%22%23dff4ed%22></path><path d=%22M0 477L274 534L548 479L822 480L1097 540L1371 499L1645 519L1919 536L1919 636L1645 636L1371 636L1097 636L822 636L548 636L274 636L0 636Z%22 fill=%22%23d4f0e9%22></path><path d=%22M0 555L274 532L548 510L822 557L1097 520L1371 525L1645 521L1919 541L1919 636L1645 636L1371 636L1097 636L822 636L548 636L274 636L0 636Z%22 fill=%22%23c8ece6%22></path><path d=%22M0 559L274 589L548 605L822 595L1097 600L1371 561L1645 583L1919 595L1919 636L1645 636L1371 636L1097 636L822 636L548 636L274 636L0 636Z%22 fill=%22%23bce7e3%22></path></svg>");
  background-repeat: no-repeat;
  background-size: cover;
}

.popular-image {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.popular-image img {
  border-radius: 10px;
  width: auto;
  height: auto;
}

.events-grid {
  /* display: grid; */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* gap: 20px; */
  /* justify-content: center; */
  /* align-items: stretch; */
}

/* Event Details */
.event-details-top {
  text-align: start;
  width: 100%;
  font-weight: 400;
  box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}

.countdown-to-start .count-down .syotimer__body {
  display: flex;

  /* flex-wrap: wrap; */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 10px;
}

.countdown-to-start .count-down .syotimer-cell {
  /* --size: calc(100% / 8 - 20px); */
  height: 100%;
  width: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}


.countdown-to-start .count-down .syotimer-cell__value {
  /* line-height: auto; */
  background-color: var(--light-color);
  font-size: 16px;
  margin-bottom: 5px;
  border: 1px solid #d9d9d9;
  color: var(--primary-color);
}

.countdown-to-start .count-down .syotimer-cell__unit {
  line-height: 1;
  margin-top: 5px;
}

.text-light-right {
  font-weight: 400;
}

.event-details-content .has-gap {
  gap: 20px;
}

.custom-tab-container {
  overflow-x: auto; /* Aktifkan scroll horizontal */
  white-space: nowrap; /* Hindari baris baru */
}

.custom-tab {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.custom-tab .tab-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 15px;

  /* padding-block: 5px; */
  border: 1px solid #58b4b8; /* Warna border */
  border-radius: 8px;
  color: #58b4b8;
  background-color: #fff; /* Warna default */
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-tab .tab-item.active {
  background-color: #58b4b8; /* Warna saat aktif */
  color: #fff;
}

.custom-tab .tab-item:hover {
  background-color: #58b4b8; /* Warna hover */
}

.tab-item i {
  font-size: 15px; /* Ukuran ikon */
  display: flex;
}

/* Gaya konten tab */
.tab-content {
  /* margin-top: 20px; */
  background-color: rgb(255 255 255);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
}

.tab-content.hidden {
  display: none;
}

.tab-content.active {
  display: block;
}

.event-share .col-auto {
  margin-bottom: 10px;
}

.event-ticket {
  /* border-bottom: 2px dashed #eee; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 10px 15px;
  border-radius: 15px;
  border: none;
  position: relative;
}
.sold-out-bg {
  background-color: #e9e9e930;
  opacity: 35%;
}

.status-active {
  background-color: green;
  color: white;
}
.status-nonactive {
  background-color: red;
  color: white;
}

.sale-ribbon-ticket {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.sale-ribbon-ticket span {
  display: block;
  position: absolute;
  width: 120px;
  background: #e74c3c; 
  color: #fff;
  font-weight: 500;
  text-align: center;
  transform: rotate(45deg);
  top: 5px;
  left: 16px; 
  text-transform: uppercase;
}
.sale-ribbon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.sale-ribbon span {
  display: block;
  position: absolute;
  width: 120px;
  background: #e74c3c; 
  color: #fff;
  font-weight: 500;
  text-align: center;
  transform: rotate(45deg);
  top: 15px;
  text-transform: uppercase;
  left: 10px;
}
/* Supaya modal tidak memanjang ke seluruh layar */
.modal-dialog-variation {
  max-width: 380px !important; 
  margin: 1.75rem auto !important; 
}


/* Modal header agar tetap di atas */
.modal-header-variation {
  position: sticky !important; 
  z-index: 1; 
  top: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/* Bagian body bisa di-scroll */
.modal-body-variation {
  overflow-y: auto; 
  max-height: calc(80vh - 200px);
}

.accordion-content-listitem{
  width: 100%;
}


.event-top-date {
  flex: 0 0 auto;
  display: flex;
  min-width: 100px;
  align-items: center;
  width: fit-content;
  text-align: center;
  background-color: #fff;
  line-height: normal;
}

.event-top-date .event-month {
  /* padding: 8px; */
  /* color: #fff; */
  /* font-size: 14px; */
  align-items: center;
  justify-content: center;
  /* width: auto; */
  /* background-color: var(--primary-color);
  border-radius: 10px; */
}

.date-separator {
  margin: 0 5px;
}

.event-top-date .event-date {
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--heading-font);
  background-color: var(--light-color);
}

.event-details-content .total {
  display: block;
  text-align: left;
}

.event-details-content .title {
  margin-top: -5px;
}

.event-details-content .title .badge {
  font-size: 12px;
  line-height: normal;
  vertical-align: super;
}

.count-down li {
  flex: 0 0 30px;
  max-width: 50px;
  text-align: center;
  margin: 10px 0;
}

.count-down li:not(:last-child) {
  margin-right: 20px;
}

.count-down li span {
  display: block;
  border: 1px solid #d9d9d9;
  padding: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.countdown-to-start {
  width: 40%;
}

.event-details-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.event-details-content .author {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

.event-details-content .author img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-inline-end: 15px;
}

.event-details-content .author h6 {
  margin-bottom: 5px;
  text-transform: capitalize;
}

.event-details-content .author h6 a {
  color: inherit;
  font-size: inherit;
}

.event-details-content .author a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.event-details-header ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  padding-inline: 0 !important;
  margin-bottom: 15px;
  align-items: center;
}

.event-details-header ul li:not(:last-child) {
  margin-inline-end: 15px;
  padding-inline-end: 15px;
  border-inline-end: 1px solid #c4c4c4;
}

.event-details-header ul li i {
  color: var(--primary-color);
  margin-inline-end: 5px;
}

.event-details-image {
  position: relative;
  margin-top: 10px;
}

.event-details-image .buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.event-details-image .buttons a {
  font-weight: 600;
  padding: 6px 20px;
  display: inline-block;
  background: var(--light-color);
}

.event-details-image .buttons a:not(:last-child) {
  margin-right: 8px;
}

.event-details-information {
  padding: 20px 30px;
  background: white;
  margin: 10px 0 70px;
  box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
}

.event-details-information b {
  display: block;

  /* color: #030a15; */
  font-weight: 500;
  margin-bottom: 5px;
}

.event-details-information .link {
  font-weight: 500;
  align-items: center;
  margin-bottom: 20px;
  display: inline-flex;
  color: var(--primary-color);
}

.event-details-information .link:hover {
  text-decoration: underline;
}

.event-details-information .link i {
  float: left;
  margin-right: 10px;
}

.event-details-information .price-count .quantity-input input,
.event-details-information .price-count .quantity-input button {
  width: 34px;
  height: 34px;
}

.event-details-information .price-count {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: space-between;
}

.event-details-information .price-count h6 {
  margin-bottom: 15px;
}

.event-details-information .price-count h6 del {
  margin-inline-start: 5px;
  color: var(--base-color);
  font-size: 18px;
}

.event-details-information .price-count h6 p del {
  margin-inline-start: 5px;
  color: var(--base-color);
  font-size: 18px;
}

.event-loc-info {
  /* box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
  padding: 5px 10px;
  border-radius: 10px; */
  display: inline-block;
}

.click-show .show-content {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.click-show .show-content * {
  margin-bottom: 0;
}

.click-show.show .show-content {
  line-clamp: 100;
  -webkit-line-clamp: 100;
}

.click-show.show .read-more-btn span:first-child {
  display: none;
}

.click-show.show .read-more-btn span:last-child {
  display: block;
}

.click-show .read-more-btn span:last-child {
  display: none;
}

.click-show .read-more-btn {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.quantity-input {
  display: inline-flex;
  justify-content: center;
}

.quantity-sold-out {
  text-align: right;
  place-content: end end;
}


.quantity-input button {
  width: 30px;
  height: 30px;
  flex: none;
  font-size: 22px;
  border-radius: 100%;
  background-color: var(--primary-color);
  align-items: center;
  color: white;
  font-weight: 500;
}

.quantity-input button:first-child {
  font-size: 30px;
}

.quantity-input input {
  width: 50px;
  padding: 0;
  height: 30px;
  font-weight: 700;
  text-align: center;
  border: 0;
  border-radius: 5px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.cash-out-btn.active {
  border: 0 transparent;
  border-radius: 10px;
}

.cash-out-btn.active {
  background-color: #00356e;
  color: white;
}

.event-details-information .h4 {
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.event-details-information hr {
  margin-top: 8px;
}

.event-details-images .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  border: none;
  transform: translateY(-50%);
}

.event-details-images .prev {
  left: 30px;
}

.event-details-images .next {
  right: 30px;
}

/* Styling untuk checkout container */
.checkout-container {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 1px solid #e0e0e0;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none; /* Sembunyikan untuk desktop */
  justify-content: center;
  align-items: center;
  box-shadow: 0 -4px 10px rgb(0 0 0 / 10%);
  z-index: 9999;
}

/* Styling untuk total harga */
.total-harga {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;

  /* margin-bottom: 10px; */
}

.total-harga .harga {
  font-size: 18px;
  color: #33b8b8;
}

/* Styling untuk tombol checkout */
.checkout-btn {
  width: 100%;
  padding: 5px;
  background-color: #33b8b8;
  color: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
}

.toggle-accordion {
  background: none;
  padding: 0.2rem 0.8rem;
}

/****************************************************** */

/*************** 06. Cart + Checkout  ***************** */

/****************************************************** */
.checkout-product {
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px;
  gap: 10px;
}
.checkout-data-diri {
  padding: 10px 20px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px;
  gap: 10px;
}

.checkout-product img {
  width: 100px;
  flex: none;
  margin-right: 20px;
  border-radius: 10px;
}

.checkout-product h6 {
  margin-bottom: 10px;
}

.checkout-product span {
  display: block;
  font-size: 14px;
  line-height: normal;
}

.checkout-product span:not(:last-child) {
  margin-bottom: 5px;
}

.checkout-product span i {
  color: var(--primary-color);
  margin-inline-end: 2px;
}

.checkout-product a {
  color: var(--primary-color);
}

.pilih-seat-btn {
  background-color: #d6f5f5;
  color: #33b8b8;
  font-size: 12px;
  font-weight: bold;
  padding-inline: 10px;
  padding-block: 1px;
  border: none;
  border-radius: 2px;
  width: 5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-discount {
  color: #0ba54e;
  font-weight: 600;
}

.order-summary-title {
  text-align: center;
}

.package-installment {
  display: flex;
  font-weight: 500;
  align-items: center;
  margin-bottom: 10px;
  text-transform: capitalize;
  justify-content: space-between;
}

.total-cart-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}

.cart-title {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 25px;
  align-items: center;
  background: var(--light-color);
  justify-content: space-between;
}

.cart-single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.product-title,
.cart-single-item .product-name {
  margin-bottom: 15px;
  margin-right: auto;
  flex: none;
}

.price-title,
.total-title,
.remove-title,
.quantity-title,
.avilable-title,
.cart-single-item .close,
.cart-single-item .avilable,
.cart-single-item .product-price,
.cart-single-item .quantity-input,
.cart-single-item .product-total-price {
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
  width: 15%;
}

.cart-single-item .avilable i {
  color: var(--primary-color);
  margin-right: 2px;
  font-size: 14px;
}

.cart-single-item .close span {
  font-size: 30px;
  line-height: 0;
}

.update-shopping .theme-btn:first-child {
  margin-right: 15px;
}

.item-checkot {
  width: 48%;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.selectgroup-item-checkbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.select-item-checkbox {
  background-color: #f6d16b;
}

/****************************************************** */

/************** 07. Category Section  ***************** */

/****************************************************** */
.category-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}

.category-item {
  position: relative;
  margin: 0 15px 30px;
  width: calc(20% - 30px);
  max-height: 50%;
}

.category-item img {
  width: 100%;

  /* max-height: 50px; */
}

.category-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgb(3 10 21 / 40%) 0%, #030a15 100%);
}

.category-content h5 {
  margin: 0;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  overflow-x: scroll;
}

.tab {
  width: 100%;
  padding: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  background-color: #f4f4f4;
  color: #888;
  border: 1px solid transparent;
}

.tab.active {
  background-color: #dff6f5;
  color: #007bff;
  border: 1px solid #ccc;
  border-bottom: none;
}

.tab .stock-info{
  font-weight: 400;
  font-size: small;
}

.tab .selected-seats-info .selected-seats-list{
  font-weight: 400;
  font-size: small;
}


/* Konten Tab */
.tab-content {
  display: none;
}

.tab-content:not(.hidden) {
  display: block;
}

#seating-container {
  width: 100%;
  overflow: hidden;

  /* touch-action: none; */
  margin: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

#zoom-container {
  width: 100%; 
  overflow: hidden;
  height: 400px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  touch-action: none;
}

#seat-map {
  transition: transform 0.1s ease-out;
  transform-origin: center center;
  will-change: transform; /* Hint untuk browser optimization */
}

.zoom-controls {
  position: absolute;
  bottom: 20px;

  /* left: 50%;
  transform: translateX(-50%); */
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* #seating-container {
  width: 100%;
  margin: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#zoom-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
}

#seat-map {
  transition: transform 0.2s ease-in-out;
  transform-origin: center center;
  cursor: grab;
} */

#seat-map:active {
  cursor: grabbing;
}

/* Seat Styles */
.seat {
  stroke: #333;
  stroke-width: 1;
  cursor: pointer;
}

.seat.available {
  fill: #fff; /* Kursi tersedia */
}

/* yellow */
.seat.have-charge {
  fill: #f6d16b; /* Kursi berbayar */
}

.seat.unavailable {
  fill: #cccc; /* Kursi tidak tersedia */
  cursor: not-allowed;
  stroke: #cccc;
  stroke-width: 12;
  border: 1px solid #ccc;
}

.seat.stage {
  fill: #00376bcc; /* Kursi tidak tersedia */
  cursor: not-allowed;
  stroke: #00376bcc;
  stroke-width: 12;
  border: 1px solid #00376bcc;
}

.seat.unavailable text {
  display: none; /* Menyembunyikan elemen <text> */
}

.seat.selected {
  fill: #6acfcf; /* Kursi terpilih */
}

.seat.hidden {
  fill: none; /* Hilangkan warna */
  stroke: none; /* Hilangkan border */
  pointer-events: none; /* Nonaktifkan klik */
}

.seat-text {
  font-size: 10px;
  fill: #000;
  text-anchor: middle;
  vertical-align: middle;
  pointer-events: none;
}

/* Kontrol Zoom */
.zoom-controls {
  position: absolute;
  bottom: 10px;
  justify-content: center;

  /* right: 10px; */
  display: flex;
  gap: 5px;
}

.zoom-controls button {
  padding: 8px 10px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  background-color: #f4f4f4;
  border-radius: 5px;
  cursor: pointer;
}

.zoom-controls button:hover {
  background-color: #ddd;
}

/****************************************************** */

/**************** 08. About Section  ****************** */

/****************************************************** */
.about-image-part {
  position: relative;
  padding-left: 45px;
}

.about-image-part img {
  width: 100%;
}

.about-revenues {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 40px 30px;
  border-radius: 10px;
  background: var(--primary-color);
}

.revenue-item {
  display: flex;
}

.revenue-item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid white;
}

.revenue-item i {
  height: 40px;
  width: 40px;
  background: white;
  line-height: 40px;
  margin-right: 20px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary-color);
}

.revenue-item i::before {
  line-height: 40px;
}

.revenue-item h6 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.revenue-item .number {
  color: white;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.about-content {
  max-width: 510px;
}

.about-content .feature-item {
  border: none;
  padding: 0;
}

.about-content .feature-item:last-child {
  margin-bottom: 0;
}

/****************************************************** */

/*************** 09. Feature Section  ***************** */

/****************************************************** */

.feature-item {
  display: flex;
  background: white;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  align-items: center;
}

.feature-item i {
  font-size: 30px;
  margin-right: 20px;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--primary-color);
}

.feature-item h4,
.feature-item h5 {
  margin-bottom: 12px;
}

.feature-item p {
  margin: 0;
}

/****************************************************** */

/************* 10. Work Process Section  ************** */

/****************************************************** */
.work-process {
  margin-top: -330px;
  transform: translateY(330px);
}

.work-process-inner {
  background: white;
  padding-left: 100px;
  padding-right: 100px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 7%);
}

.work-process-item {
  position: relative;
  margin-bottom: 35px;
}

.work-process-item.after::after,
.work-process-item.before::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 55px;
  top: 45px;
  background-size: 100% 100%;
}

.work-process-item.before::before {
  background-image: url("../images/shapes/before.png");
  left: -42.5px;
}

.work-process-item.after::after {
  background-image: url("../images/shapes/after.png");
  right: -42.5px;
}

.work-process-item .icon {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  background: rgb(34 176 175 / 10%);
}

.work-process-item .icon i::before {
  font-size: 50px;
  line-height: 120px;
  color: var(--primary-color);
}

.work-process-item .icon .number {
  position: absolute;
  color: white;
  height: 40px;
  width: 40px;
  top: -5px;
  right: -10px;
  font-size: 18px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  font-family: var(--heading-font);
}

.work-process-item h4 {
  margin-bottom: 15px;
}

.work-process-item p {
  font-size: 14px;
}

/****************************************************** */

/***************** 11. Testimonials  ****************** */

/****************************************************** */
.testimonial-content {
  margin-right: -25px;
}

.total-client-reviews {
  padding: 30px;
  max-width: 340px;
}

.review-images {
  display: flex;
  align-items: center;
}

.review-images img {
  min-height: 42px;
  max-height: 42px;
}

.review-images span {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 4px solid white;
}

.review-images > *:not(:first-child) {
  margin-left: -10px;
}

.review-images .pluse {
  color: white;
  font-size: 12px;
  line-height: 42px;
  text-align: center;
  background: var(--primary-color);
}

.total-client-reviews h6 {
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial-wrap {
  margin-left: 25px;
}

.testimonial-item {
  position: relative;
  margin-bottom: 30px;
  padding: 40px 40px 18px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 7%);
}

.testimonial-item::after {
  position: absolute;
  content: "\f10e";
  font-weight: 600;
  right: 40px;
  top: 40px;
  z-index: -1;
  opacity: 0.05;
  line-height: 1;
  font-size: 100px;
  color: var(--primary-color);
  font-family: "Font Awesome 5 Free";
}

.testimonial-item .author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-item .author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-item .author h5 {
  margin-bottom: 0;
}

.testimonial-item .author span {
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
  color: var(--primary-color);
}

.ratting {
  display: flex;
}

.ratting i {
  color: #f09e00;
  font-size: 12px;
  margin-right: 3px;
}

/****************************************************** */

/***************** 12. Shop Section  ****************** */

/****************************************************** */
.shop-item {
  text-align: center;
  margin-bottom: 25px;
}

.shop-item .image {
  position: relative;
}

.shop-item .image::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  background: black;
}

.product-icons {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  opacity: 0;
  display: flex;
  transition: 0.5s;
  padding: 5px 18px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
}

.product-icons a {
  color: white;
}

.product-icons a:not(:first-child) {
  margin-left: 15px;
}

.shop-item:hover .product-icons {
  opacity: 1;
}

.shop-item:hover .image::before {
  opacity: 0.25;
}

.shop-item .ratting {
  margin-top: 20px;
  margin-bottom: 13px;
  display: inline-flex;
}

.shop-item h6 {
  margin-bottom: 5px;
}

.shop-item .price {
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.shop-item .price del {
  margin-left: 5px;
}

.product-gallery,
.product-thumb-item {
  border: 1px solid rgb(3 10 21 / 10%) !important;
}

.product-thumb .slick-arrow,
.product-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.product-thumb .prev,
.product-gallery .prev {
  left: -15px;
}

.product-thumb .next,
.product-gallery .next {
  right: -15px;
}

.product-thumb-item {
  cursor: pointer;
  margin-inline: 10px;
}

.add-to-cart .theme-btn {
  padding: 10px 20px;
  margin: 0 10px 10px 0;
}

.rating-review .ratting {
  margin-right: auto;
}

.rating-review .in-stock {
  color: white;
  line-height: 1;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--primary-color);
}

.rating-review .in-stock i {
  margin-right: 5px;
  font-size: 10px;
}

.shop-price {
  font-weight: 700;
  color: var(--heading-color);
}

.package-summary {
  padding: 10px 20px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.valid-checkout-personal {
  border-radius: 0px;
}

.package-summary-title h4,
.message_email,
.coupon-title h4,
.methode-partial-payment-title h4,
.payment-summary-title h4 {
  text-align: start;
  font-weight: 400;
}

.payment-summary {
  padding: 0px 0px;
}

.methode-partial-payment {
  padding: 10px 20px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.bg-gray{
  background-color: #dcdee0;
}


.coupon {
  padding: 10px 20px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.product-meta li {
  margin-bottom: 6px;
}

.product-meta li a,
.product-meta li span {
  color: var(--primary-color);
}

.product-information-tab {
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.product-information-tab a {
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-left: 15px;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.product-information-tab li:first-child a {
  margin-left: 0;
  padding-left: 0;
}

.product-information-tab a.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.comment-body {
  display: flex;
  margin-top: 35px;
}

.comment-list .children {
  margin-left: 55px;
}

.author-thumb {
  flex: none;
  max-width: 80px;
  margin-right: 25px;
  margin-bottom: 15px;
}

.comment-content .name-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.comment-content .name-date h6,
.comment-content .name-date .ratting,
.comment-content .name-date .comment-date {
  margin-bottom: 8px;
}

.comment-content .reply-link {
  font-size: 14px;
  font-weight: 600;
}

.comment-content > p {
  margin-bottom: 10px;
}

.products-dropdown {
  text-align: end !important;
}

#products-dropdown-select-button {
  padding: 15px 20px;
  border: 1px solid rgb(3 10 21 / 10%);
}

/****************************************************** */

/***************** 13. Client Logos  ****************** */

/****************************************************** */
.client-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.client-logo-item {
  padding: 15px;
  display: flex;
  align-items: center;
  margin: 0 10px 10px;
  justify-content: center;
  width: calc(20% - 30px);
  border: 1px solid rgb(3 10 21 / 10%);
  border-radius: 10px;
}

/****************************************************** */

/***************** 14. Blog Section  ****************** */

/****************************************************** */
.blog-item {
  margin-bottom: 30px;
}

.blog-image img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.blog-content {
  padding: 25px 30px 15px;
  box-shadow: 0 10px 70px rgb(0 0 0 / 7%);
}

.blog-content h4 {
  margin-bottom: 15px;
}

.blog-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(3 10 21 / 10%);
}

.blog-footer .dot {
  height: 6px;
  width: 6px;
  display: block;
  border-radius: 50%;
  background: rgb(3 10 21 / 20%);
}

.blog-footer li i {
  margin-inline-end: 3px;
  color: var(--primary-color);
}

/* Blog Details */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
}

.blog-meta li {
  margin-bottom: 5px;
}

.blog-meta li:not(:last-child) {
  margin-right: 35px;
}

.blog-meta li i {
  margin-right: 5px;
  color: var(--primary-color);
}

.blog-details-content .image img {
  width: 100%;
}

.tag-share b {
  margin-right: 10px;
}

blockquote {
  font-size: 20px;
  line-height: 1.5;
  padding: 20px 35px;
  margin: 30px 0;
  background: var(--light-color);
  border-left: 5px solid var(--primary-color);
}

.blockquote-footer {
  display: flex;
  margin-top: 15px;
  font-style: italic;
  align-items: center;
}

.blockquote-footer::before {
  line-height: 1;
  font-size: 25px;
  margin-right: 5px;
  color: var(--primary-color);
}

/****************************************************** */

/******************* 15. Widgets  ********************* */

/****************************************************** */
.sidebar {
  background: white;
  box-shadow: 0 5px 50px rgb(0 0 0 / 5%);
}

.widget {
  padding: 30px;
}

.widget:not(:last-child) {
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.widget-title {
  margin-top: -6px;
  margin-bottom: 20px;
}

.widget-search form {
  display: flex;
}

.widget-search form input {
  border: none;
  color: var(--heading-color);
  background: var(--light-color);
}

.widget-search form button {
  width: 60px;
  flex: none;
  color: white;
  background: var(--primary-color);
}

.widget-location h6 {
  margin-bottom: 15px;
}

.widget .ui-selectmenu-button.ui-button {
  width: 100%;
  padding: 20px;
  background: var(--light-color);
}

.custom-checkbox:not(:last-child) {
  margin-bottom: 8px;
}

.custom-radio .custom-control-label,
.custom-checkbox .custom-control-label {
  cursor: pointer;
}

.custom-checkbox .custom-control-label::before {
  border-color: var(--primary-color);
  border-radius: 0;
  top: 5px;
}

.custom-checkbox .custom-control-label::after {
  top: 5px;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: white;
  border-color: var(--primary-color);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.widget-dropdown .custom-control-label {
  display: flex;
  justify-content: space-between;
}

.custom-radio:not(:last-child) {
  margin-bottom: 5px;
}

.custom-radio .custom-control-label::after,
.custom-radio .custom-control-label::before {
  top: 5px;
}

#dropdown-select-button {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 12px;
  background: transparent;
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.by-date {
  display: none;
  margin-top: 25px;
}

.by-date.active {
  display: block;
}

.price-btn {
  display: flex;
  margin-top: 25px;
  align-items: center;
  gap: 10px;
}

.price-btn input {
  padding: 0;
  height: auto;
  border: none;
  font-weight: 300;
  color: var(--heading-color);
}

.price-btn button {
  flex: none;
  padding: 5px 22px;
  border-radius: 10px;
  text-transform: capitalize;
}

.price-slider-range.ui-widget.ui-widget-content {
  height: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
  background: rgb(3 10 21 / 10%);
}

.price-slider-range .ui-widget-header {
  background: var(--primary-color);
}

.price-slider-range .ui-slider-handle {
  height: 16px;
  width: 16px;
  border: none;
  cursor: pointer;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--primary-color);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-bottom: -10px;
}

.tags a {
  padding: 2px 15px;
  margin: 0 10px 10px 0;
  background: var(--light-color);
}

.tags a:hover {
  color: white;
  background: var(--primary-color);
}

/****************************************************** */

/******************** 16. FAQ Page ******************** */

/****************************************************** */
.accordion .card:not(:last-child) {
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.accordion .card-header {
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  background: var(--light-color);
  justify-content: space-between;
  border-bottom: 1px solid rgb(3 10 21 / 10%);
}

.accordion .card {
  border-radius: 0;
  margin-bottom: 15px;
  border: 1px solid rgb(3 10 21 / 10%);
}

.accordion .card-body p {
  margin: 5px 0;
}

.accordion .toggle_btn {
  height: 15px;
  width: 15px;
  display: flex;
  transition: 0.5s;
  position: relative;
  align-items: center;
  justify-content: center;
}

.accordion .toggle_btn::after,
.accordion .toggle_btn::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 2px;
  transition: 0.5s;
  background: var(--primary-color);
}

.accordion .collapsed .toggle_btn {
  transform: rotate(180deg);
}

.accordion .collapsed .toggle_btn::after,
.accordion .collapsed .toggle_btn::before {
  background: rgb(3 10 21 / 50%);
}

.accordion .collapsed .toggle_btn::after {
  transform: rotate(90deg);
}

.accordion .collapsed.card-header {
  color: var(--heading-color);
}

/****************************************************** */

/***************** 17. Contact Section **************** */

/****************************************************** */
.contact-info-item {
  display: flex;
  transition: 0.5s;
  padding: 20px 30px;
  margin-bottom: 30px;
  align-items: center;
  background: var(--light-color);
}

.contact-info-item > i {
  height: 50px;
  width: 50px;
  flex: none;
  font-size: 20px;
  line-height: 50px;
  background: white;
  text-align: center;
  margin-right: 15px;
  border-radius: 50%;
  color: var(--primary-color);
}

.contact-info-item .info-content {
  word-break: break-all;
}

.contact-info-item h5 {
  margin-bottom: 5px;
  transition: 0.5s;
}

.contact-info-item span {
  transition: 0.5s;
}

.contact-info-item:hover {
  background: var(--primary-color);
}

.contact-info-item:hover h5,
.contact-info-item:hover span,
.contact-info-item:hover span a {
  color: white;
}

.contact-form {
  margin-left: 30px;
}

.contact-page-map {
  margin-bottom: -10px;
}

/****************************************************** */

/******************* 18. Footer Area ****************** */

/****************************************************** */
.footer-section p,
.link-widget a:not(:hover) {
  opacity: 0.8;
  color: #f7f7f7;
  text-transform: capitalize;
}

.about-widget p a:not(:hover) {
  color: inherit;
}

.about-widget p i {
  margin-inline-end: 5px;
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-title {
  color: white;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.link-widget {
  max-width: 210px;
}

.link-widget li {
  font-size: 18px;
  text-transform: capitalize;
}

.link-widget li:not(:last-child) {
  margin-bottom: 5px;
}

.copyright-area {
  border-top: 1px solid rgb(232 232 233 / 10%);
  text-align: center;
}

.copyright-area p {
  margin: 20px 15px 20px 0;
}

/* Popup css */
.popup-wrapper {
  display: none;
}

.popup_main-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 32px;
  right: -15px;
  top: -15px;
}

.popup-wrapper {
  position: relative;
  width: auto;
  max-width: 960px;
  margin: 0 auto;
}

.popup-wrapper .form_control {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  line-height: 70px;
}

/* Popup-one */
.popup-one {
  position: relative;
  padding: 138px 120px;
}

.popup-one .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgb(69 29 83 / 80%);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
  color: #fff;
}

.popup-one .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-one .popup_main-content p {
  margin-bottom: 30px;
}

.popup-one .popup_main-content .popup-main-btn {
  padding: 15px 100px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: 0.3s;
}

.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
  background-color: #451d53;
  color: #fff;
  border-color: transparent;
}

/* Popup-two */

.popup-two {
  position: relative;
  padding: 120px;
}

.popup-two .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgb(255 40 101 / 70%);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
  color: #fff;
}

.popup-two .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-two .popup_main-content p {
  margin-bottom: 30px;
}

.popup-two .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-two .popup_main-content .subscribe-form .form_control {
  border: none;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #ff2865;
  color: #fff;
  border-color: transparent;
}

/* Popup-three */

.popup-three .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-three .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-three .popup_main-content .right-content {
  width: 55%;
  padding: 30px 15px;
  text-align: center;
}

.popup-three .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content .popup-main-btn {
  padding: 15px 70px;
  background-color: #ff2865;
  color: #fff;
  font-size: 19px;
  border-radius: 35px;
  display: inline-block;
  text-decoration: none;
}

/* Popup-four */

.popup-four .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-four .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-four .popup_main-content .right-content {
  width: 55%;
  padding: 30px;
  text-align: center;
}

.popup-four .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-four .popup_main-content .subscribe-form .form_control {
  border: 2px solid #c5c5c5;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  background-color: #f8960d;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #f8960d;
  color: #fff;
  border-color: transparent;
}

/* Popup-five */

.popup-five .popup_main-content {
  text-align: center;
  padding: 75px;
}

.popup-five .popup_main-content h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  max-width: 600px;
}

.popup-five .popup_main-content h4 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-five .popup_main-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  background-color: #29a19c;
  border-radius: 40px;
  text-decoration: none;
}

/* Popup-six */
.popup-six .popup_main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  text-decoration: none;
}

.popup-six .popup_main-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.popup-six .popup_main-content .right-content {
  background-color: #930077;
  width: 50%;
  height: 100%;
  padding: 120px 15px;
  text-align: center;
  margin-left: 50%;
}

.popup-six .popup_main-content .right-content h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.popup-six .popup_main-content h4 {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-six .popup_main-content .right-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  background-color: #494949;
  border-radius: 40px;
  text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.popup-wrapper .syotimer__body p {
  color: #fff;
}

.popup-wrapper .syotimer-cell {
  flex: 0 0 24%;
  padding-left: 10px;
  padding-right: 10px;
}

.popup-wrapper .syotimer-cell__value {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f3a52;
  border-radius: 10px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  border: 0;
}

.popup-wrapper .syotimer-cell__value::after {
  content: none;
}

.popup-wrapper .syotimer-cell__unit {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.rate {
  background-image: url("../images/rate-star.png");
  background-position: 0 -13px;
  background-repeat: repeat-x;
  height: 13px;
  transition: all 0.5s ease-out 0s;
  width: 95px;
  margin-bottom: 2px;
}

.rating {
  background-image: url("../images/rate-star.png");
  background-position: 0 0;
  background-repeat: repeat-x;
  height: 13px;
}

.shop-review-area {
  padding-top: 15px;
}

.shop-review-area .shop-review-title .title {
  font-size: 24px;
  font-weight: 700;
}

.shop-review-area .shop-review-user ul li {
  display: inline-block;
}

.shop-review-area .shop-review-user {
  position: relative;
  padding-inline-start: 75px;
  margin-top: 33px;
}

.shop-review-area .shop-review-user img {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.shop-review-area .shop-review-user span {
  padding: 3px 0;
  font-size: 14px;
  display: inline-block;
}

.shop-review-area .shop-review-user span span {
  font-weight: 600;
}

.shop-review-area .shop-review-user p {
  font-weight: 300;
}

.shop-review-area .shop-review-form .input-box {
  margin-top: 25px;
}

.shop-review-area .shop-review-form .input-check {
  margin-bottom: 20px;
  margin-top: 20px;
}

.shop-review-area .shop-review-form .input-box input {
  width: 100%;
  height: 50px;
  border: 2px solid #e9ebef;
  padding-left: 20px;
}

.shop-review-area .shop-review-form .input-box span {
  font-size: 14px;
  color: #5f5f5f;
  padding-bottom: 15px;
  display: inline-block;
}

.shop-review-area .shop-review-form .input-box textarea {
  width: 100%;
  height: 200px;
  border: 2px solid #e9ebef;
  padding-left: 20px;
  resize: none;
  color: #8a8a8a;
}

.shop-review-area .shop-review-form .input-box ul li {
  display: inline-block;
}

.shop-review-area .shop-review-form .input-box ul li a {
  color: #25d06f;
}

.shop-review-area .shop-review-form .input-btn button {
  background: #25d06f;
  color: #fff;
  border-color: #25d06f;
}

.shop-review-area .shop-review-form .input-btn button:hover {
  background-color: transparent;
  color: #25d06f;
}

.review-content ul.review-value {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.review-content ul.review-value::after {
  content: "|";
  color: #0000005a;
}

.review-content ul.review-value:last-child::after {
  display: none;
}

.review-content ul:hover i {
  color: #efcb65;
}

/* end popup


  #=========='Rate


  =============================== */

/* ---------------------------
** Cookie alert css
--------------------------- */

.cookie-consent {
  position: fixed;
  background-color: #262938;
  bottom: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 10000000000;
  color: #fff;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.cookie-consent__agree {
  padding: 5px 16px;
  border: none;
  background-color: #25d06f;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

span.cookie-consent__message {
  background-color: transparent !important;
  color: #fff;
  font-size: 14px;
}

.purchase-message,
.booking-message {
  padding: 120px 0;
  max-width: 780px;
  margin: 0 auto;
}

.purchase-success,
.booking-success {
  background: #f1f1f1;
  padding: 40px 0;
  text-align: center;
  border-radius: 15px;
}

.purchase-success .icon,
.booking-success .icon {
  display: block;
  margin-bottom: 20px;
}

.purchase-success .icon i,
.booking-success .icon i {
  font-size: 60px !important;
}

.purchase-success h2,
.booking-success h2 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.purchase-success p,
.booking-success p {
  line-height: 26px;
}

/* update css */

.gap-20 {
  gap: 20px;
}

.icon-start i {
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

/* -----------------------------------------
    Page-banner CSS
----------------------------------------- */
.page-banner {
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center; /* Mengatur konten di tengah secara vertikal */

  /* justify-content: center; */
}

.page-banner .banner-author {
  text-align: start;
}

.page-banner .banner-author .author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
}

.page-banner .banner-author .author-img {
  flex: 0 0 auto;
  max-width: 100px;
}

.page-banner .banner-author .breadcrumb {
  justify-content: start;
}

/* -----------------------------------------
    Ratings CSS
----------------------------------------- */
.ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.ratings .rate {
  background-image: url("../images/rate-star.png");
  background-position: 0 -13px;
  background-repeat: repeat-x;
  height: 13px;
  transition: all 0.5s ease-out 0s;
  width: 95px;
}

.ratings .rating-icon {
  background-image: url("../images/rate-star.png");
  background-position: 0 0;
  background-repeat: repeat-x;
  height: 13px;
  width: 80%;
}

.ratings .ratings-total {
  font-size: 12px;
  line-height: 1;
}

.lh-1 {
  line-height: 1;
}

/* -----------------------------------------
    Author/Vendor CSS
----------------------------------------- */
.author-area .font-sm {
  font-size: 14px;
}

.author-area .font-xsm {
  font-size: 12px;
}

.author-area .author-tabs .nav-link {
  position: relative;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  color: var(--heading-color);
  padding: 0;
  -webkit-margin-end: 30px;
  margin-inline-end: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  background-color: transparent;
}

.author-area .author-tabs .nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.author-area .author-tabs .nav-link:is(.active) {
  color: var(--primary-color);
}

.author-area .author-tabs .nav-link:is(.active)::after {
  visibility: visible;
  opacity: 1;
}

.author-area .btn-groups {
  gap: 10px;
}

.author-area .btn,
.author-area .theme-btn {
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.author-area .btn:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.author-area .review-box .review-item {
  padding: 30px;
  background-color: var(--light-color);
}

.author-area .review-box .review-item .review-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.author-area .review-box .review-item .review-header .author-img {
  max-width: 70px;
}

.author-area .review-box .review-reply {
  padding: 30px;
}

.author-area .review-box .review-reply .icon {
  font-size: 24px;
}

.author-area .review-box .more-info i {
  color: var(--primary-color);
}

.author-area .review-box .message {
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
}

.author-area .review-submit .author {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.author-area .review-submit .author .author-img {
  flex: 0 0 auto;
  width: 50px;
}

.author-area .review-submit .author p {
  font-size: 14px;
}

.author-area .review-submit textarea.form_control {
  border: 1px solid #e5e5e5;
  height: 150px;
}

.author-area .review-submit .form_group ul.rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.author-area .review-submit .form_group ul.rating li {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  position: relative;
  -webkit-padding-end: 12px;
  padding-inline-end: 12px;
  -webkit-margin-end: 12px;
  margin-inline-end: 12px;
  margin-bottom: 10px;
}

.author-area .review-submit .form_group ul.rating li::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-margin-end: 0;
  margin-inline: auto 0;
  -webkit-margin-start: auto;
  width: 2px;
  transform: translateY(-50%);
  content: "|";
}

.author-area .review-submit .form_group ul.rating li:last-child::after {
  display: none;
}

.author-area .review-submit .form_group ul.rating li:hover span {
  color: var(--primary-color);
}

.author-area .card {
  border-radius: 0;
  border: 0;
  box-shadow: 0 10px 70px rgb(0 0 0 / 7%);
}

.author-area .card.card-center {
  align-items: center;
  text-align: center;
}

.author-area .card .card-img {
  max-width: 80px;
}

.author-area .card .btn-text {
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: underline;
}

.author-area .card .btn-text:hover {
  color: var(--primary-color);
}

.author-area .badge-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.author-area .badge-list > * {
  flex: 0 0 auto;
  width: 25px;
}

.author-area .ui-selectmenu-button.ui-button {
  background-color: #fff;
}

.author-area .product-filter h6 {
  text-align: start;
}

.author-area .product-filter .products-dropdown {
  text-align: end;
}

.authors-search-filter .search-filter-form {
  max-width: 840px;
  margin-inline: auto;
}

.authors-search-filter .search-filter-form .form_control {
  height: 55px;
  line-height: 55px;
  font-size: 14px;
}

.authors-search-filter .search-filter-form .search-item {
  width: 25%;
}

.authors-search-filter .search-filter-form .search-item:last-child {
  width: 20%;
}

.authors-search-filter .search-filter-form .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  padding: 0 25px;
  border-radius: 0;
  background-color: #fff;
  color: var(--base-color);
  border: 1px solid #e1e1e1;
}

.authors-search-filter
  .search-filter-form
  .ui-selectmenu-button.ui-button
  .ui-icon {
  overflow: visible;
}

.authors-search-filter .search-filter-form .theme-btn {
  width: 100%;
  text-align: center;
  padding: 0 30px;
  line-height: 53px;
  background-color: var(--primary-color) !important;
}

.authors-search-filter .search-filter-form .theme-btn:hover {
  color: #fff;
}

.contact-modal .modal-dialog {
  max-width: 767px;
}

.contact-modal .modal-content {
  border: none;
  border-radius: 0;
}

.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: 0 0 0 10px;
  opacity: 1;
  float: none;
  padding: 0;
  margin: 0;
  background: var(--danger);
  z-index: 1;
}

.ui-button {
  margin-right: unset;
  -webkit-margin-end: 0.1em;
  margin-inline-end: 0.1em;
}

.ui-menu .ui-menu-item {
  text-align: start;
}

/* -----------------------------------------
	Sidebar Widget CSS
----------------------------------------- */
.sidebar-widget-area .widget {
  overflow: hidden;
  padding-inline: 30px;
}

.sidebar-widget-area .widget .theme-btn {
  padding-top: 5px;
  padding-bottom: 5px;
}

.sidebar-widget-area .widget .title {
  margin-bottom: 0;
  margin-top: -2px;
}

.sidebar-widget-area .widget .list-group li {
  display: block;
  color: var(--base-color);
}

.sidebar-widget-area .widget .list-group li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-widget-area .widget .list-group a {
  color: inherit;
}

.sidebar-widget-area .widget .show-more-btn {
  display: block;
  text-align: center;
}

.sidebar-widget-area .widget .tabs-navigation-3 .nav {
  align-items: center;
}

.sidebar-widget-area .widget .tabs-navigation-3 .nav .nav-link {
  padding: 10px 22px;
  margin: 0;
  font-size: 14px;
  border-radius: 0 0 5px 5px !important;
}

.sidebar-widget-area .widget-author-details {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.sidebar-widget-area .widget-author-details .author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sidebar-widget-area .widget-author-details .author .author-img {
  flex: 0 0 auto;
  width: 80px;
  margin: 0;
}

.sidebar-widget-area .widget-author-details .author .author-info span {
  font-size: 14px;
}

.sidebar-widget-area .widget-author-details b {
  color: var(--heading-color);
}

.sidebar-widget-area .widget-shared-author .shared-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.sidebar-widget-area .widget-shared-author .shared-author:last-child {
  margin-bottom: 0 !important;
}

.sidebar-widget-area .widget-shared-author .shared-author .shared-author-img {
  flex: 0 0 auto;
  width: 60px;
}

.sidebar-widget-area .widget-shared-author .shared-author .btn {
  font-size: 12px;
}

.sidebar-widget-area .widget-business-days .list-group li {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.sidebar-widget-area .widget-business-days .list-group li > * {
  flex: 0 0 auto;
  width: 33.33%;
}

.sidebar-widget-area .widget-business-days .list-group li .open-t {
  color: var(--success);
}

.sidebar-widget-area .widget-business-days .list-group li .close-t {
  color: var(--danger);
}

.sidebar-widget-area .widget .toggle-list li {
  display: flex;
  justify-content: space-between;
}

.sidebar-widget-area .widget .toggle-list li:not(:last-child) {
  margin-bottom: 5px;
}

.sidebar-widget-area .widget .toggle-list li span {
  display: flex;
}

.sidebar-widget-area .widget .toggle-list li .first {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0;
  flex: 0 0 auto;
  width: 32%;
}

.sidebar-widget-area .widget .toggle-list li .last {
  font-size: 14px;
  word-break: break-all;
}

html[dir*="rtl"] body {
  text-align: right;
}

html[dir*="rtl"] .modal .close {
  right: unset;
  left: 0;
  border-radius: 0 0 10px;
}

.user-dashbord .file-upload-area {
  position: relative;
  max-width: 120px;
  padding-bottom: 30px;
}

.user-dashbord .file-upload-area .file-edit {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-inline: auto;
  border-radius: 100%;
  background: var(--light-color);
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 12%);
  color: var(--primary-color);
  z-index: 1;
}

.user-dashbord .file-upload-area .file-edit input {
  display: none;
}

.user-dashbord .file-upload-area .file-edit input + label {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.user-dashbord .file-upload-area .file-edit input + label::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "\f304";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.user-dashbord .file-upload-area .file-edit:hover {
  background: var(--primary-color);
  color: #fff;
}

.user-dashbord .file-upload-area .file-preview {
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  border: 5px solid var(--light-color);
}

.user-dashbord .file-upload-area .file-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.user-dashbord #errorMsg {
  color: var(--danger);
}

.share-event .button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.share-event .button-group i {
  --size: 35px;

  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
}

.share-event .button-group p {
  margin-bottom: 0;
}

.syotimer-cell__value {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid hsl(0deg 0% 50% / 50%);
  position: relative;
}

.syotimer-cell_type_day {
  --num: 365;
}

.syotimer-cell_type_hour {
  --num: 24;
}

.syotimer-cell_type_minute,
.syotimer-cell_type_second {
  --num: 60;
}

.syotimer-cell__value::after {
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -0.5);
  border-radius: inherit;

  --degree: calc(360deg / var(--num) * (var(--num) - var(--value, 0)));

  background-image: conic-gradient(
    var(--primary-color) var(--degree),
    transparent calc(var(--degree) - 0.1deg)
  );

  --border-size: 3px;
  --mask-image: radial-gradient(
    100% 100%,
    transparent calc(50% - var(--border-size)),
    black calc(50% - var(--border-size) + 1px)
  );

  mask-image: var(--mask-image);
}

.page-banner .social-style-one {
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.page-banner .social-style-one a {
  margin: 0 !important;
}

.error-area .offline {
  margin-bottom: 30px;
}

.error-area {
  position: relative;
  overflow-x: hidden;
  display: grid;
  place-items: center;
  height: 100vh;
  text-align: center;
}

.sidebar-sticky {
  position: sticky;
}

.col-col {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.row-row {
  display: flex;
  align-items: stretch;
}

.toast-message {
  direction: ltr !important;
}

.amount {
  direction: ltr !important;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
  > .input-group-prepend:first-child
  > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
  border-radius: 10px;
}

.padding-90 {
  padding: 90px 0;
}

.bg-facebook {
  background: #4267b2;
}

.bg-google {
  background: #db4437;
}

.mh-60 {
  max-height: 60px;
}

.map-h {
  border: 0;
  width: 100%;
}

.w-60p {
  width: 60% !important;
}

.text-transform-normal {
  text-transform: none;
}

.checkout-product-img {
  min-width: 80px;
}

.object-fit-cover {
  object-fit: cover;
}

/* request loader css start */
.request-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000007a;
  z-index: 10000;
  display: none;
}

.request-loader img {
  position: fixed;
  display: none;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.request-loader.show {
  display: block;
}

.request-loader.show img {
  display: block;
}

/* request loader css end */
.mt_1 {
  margin-top: -15px;
}

/****************************************************** */

/******************** 20. Carousel ******************** */

/****************************************************** */
#banner-section .carousel-section {
  width: 100%;
  display: flex;
  position: relative;
}

#banner-section .carousel-image img {
  display: flex;
  width: 750px;
  height: 250px;
  align-items: center;
  justify-content: center;
  margin-inline: 600px;
}

#banner-section .carousel-item img {
  border-radius: 25px;

  /* max-height: 325px; */
}

#banner-section button .carousel-control-next {
  background-color: black;
}

/****************************************************** */

/***************** 21. Gallery Section **************** */

/****************************************************** */
#gallery-section {
  width: 100%;
  display: flex;
  position: relative;
  background-image: linear-gradient(
    #fff,
    #fff,
    #eaf9f2,
    #afe3da,
    #aae2d8,
    #aae2d8,
    #a5e0d6
  );
}

#gallery-section .carousel-inner {
}

#gallery-section .carousel-item img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.seat-available-cat1 {
  background-color: #feefad;
  font-weight: 500;
}

.seat-available-cat2 {
  background-color: #c40c0c;
  font-weight: 500;
}

.seat-available-cat3 {
  background-color: #a0deff;
  font-weight: 500;
}

.seat-available-cat4 {
  background-color: #ff76ce;
  font-weight: 500;
}

.seat-available-cat5 {
  background-color: #ff6500;
  font-weight: 500;
}

.seat-available-cat6 {
  background-color: #ffc55a;
  font-weight: 500;
}

.seat-available-cat7 {
  background-color: #90d26d;
  font-weight: 500;
}

.seat-available-cat8 {
  background-color: #5755fe;
  font-weight: 500;
}

.seat-separator {
  background-color: white;
  color: white;
}

.seat-used {
  background-color: aliceblue;
}

.seat-notavailable {
  background-color: red;
}

.seat-picked {
  background-color: #eee;
}

.table-container {
  overflow-x: auto;
}

.rectangle {
  width: 25px;
  height: 25px;
}

.rectangle-selected {
  background-color: #eee;
}

.rectangle-red {
  background-color: red;
}

.rectangle-alice {
  background-color: aliceblue;
}

.seating-map-form {
  flex-direction: column;
}

.width-btn {
  width: 100px;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid aliceblue;
  padding-top: 8px;
  padding-bottom: 8px;
}

td {
  min-width: 60px;
  text-align: center;
}

.alert-personal-info {
  padding: 20px;
  background-color: #fcba03;
  color: white;
}

.tab-item[data-tab="tiket"] {
  display: none;
}


.active-tab {
  color: #f2b510 !important;
  border-bottom: 3px solid #f2b510;
  font-weight: 600;
}
.inactive-tab {
  color: #333;
  border-bottom: none;
  font-weight: 400;
  opacity: 0.7; /* misal sedikit abu-abu jika event tidak mendukung cicilan */
}

.event-share {
  align-items: end;
  text-align: end;
  justify-content: end;
}

.icon-border {
  background-color: var(--primary-color); /* Ganti dengan warna pilihan */
  color: #fff !important; /* Warna ikon */
  padding: 5px;
  border-radius: 10px; /* Membuat ikon berbentuk lingkaran */
  display: inline-block; /* Agar padding diterapkan dengan baik */
  text-align: center; /* Pusatkan ikon di dalam lingkaran */
  width: 24px;
  height: 24px;
}

.author-shareevent {
  box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
  padding: 20px 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}

.filter-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
  z-index: 1050;
  display: flex;
  justify-content: flex-end;
}

.filter-sidebar {
  background: white;
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

.close-filter {
  background: none;
  border: none;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.search-form .input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.search-form .form-control {
  border-radius: 0;
  flex: 1;
}

.search-form .btn-search {
  background: none;
  border: none;
  padding: 0 10px;
  color: #555;
  cursor: pointer;
}

.search-form .btn-search i {
  font-size: 16px;
}

.quantity-btn-disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important;
  color: #fff !important;
  opacity: 0.7;
}

.syotimer__body {
  max-width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.syotimer__body > div {
  flex: 1;
  text-align: center;
  width: 35px;
}

.syotimer-cell {
  flex: 0 0 50%;
}


/****************************************************** */

/***************** 22. Responsive **************** */

/****************************************************** */


@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* Wide Mobile Devices (160px to 991) */
@media (max-width: 991.98px) {
  .checkout-container {
    display: flex;
    flex-direction: column;
  }
  .tab-item[data-tab="tiket"] {
    display: flex;
  }
  .tickets-sidebar-wide {
    padding: 0;
    display: none !important;
    order: 2;
  }

  .popup-wrapper {
    max-width: 350px;
  }


  .authors-search-filter .search-filter-form .search-item,
  .authors-search-filter .search-filter-form .search-item:last-child {
    width: 100%;
  }

  .carousel-indicators li {
    width: 5px;
    height: 5px;
    border-radius: 50px;
    margin: 0 3px;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.6s ease;
  }

  .event-share {
    align-items: start;
    text-align: start;
    justify-content: start;
  }

  .event-content .time-info {
    top: -20px;
    /* width: calc(100% - 5px); */
    font-size: 12px;
    padding: 5px;
    background: #22b0a2;
    color: white;
    box-shadow: 0 10px 70px rgb(0 0 0 / 10%);
  }
}

/* Medium Devices (768px to 991px) */
@media (width >= 768px) and (width <= 991px) {
  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .event-share {
    align-items: start;
    text-align: start;
    justify-content: start;
  }

  .order-event-2 {
    order: 1;
  }

  .event-item .syotimer-cell {
    width: calc(100% / 6 - 5px);
  }

  .event-countdown .syotimer-cell {
    --size: calc(100% / 6 - 10px);
  }

  .popup-wrapper {
    max-width: 720px;
  }

  .popup-one,
  .popup-two {
    padding: 80px 30px;
  }

  .cookie-container {
    display: block;
    text-align: center;
  }

  button.cookie-consent__agree {
    margin-top: 15px;
  }

  span.cookie-consent__message {
    line-height: 20px;
    display: block;
  }

  .authors-search-filter .search-filter-form .search-item {
    width: 50%;
  }

  .authors-search-filter .search-filter-form .search-item:last-child {
    width: 30%;
  }

  .page-banner .social-style-one {
    margin-top: 20px;
    justify-content: flex-start;
  }

  .event-item .syotimer__body {
    margin: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/* Large Devices (992px to 1199px) */
@media (width >= 992px) and (width <= 1199px) {
  /* Event Item Styling */
  .event-item .syotimer-cell {
    width: calc(100% / 2 - 5px);
  }

  .event-item .syotimer__body {
    margin: 0;
    width: 100%;
    justify-content: space-between;
  }

  /* Event Details Information */

  .event-countdown .syotimer-cell {
    --size: calc(100% / 2 - 10px);
  }

  /* Popup Styling */
  .popup-wrapper {
    max-width: 720px;
  }

  .popup-one,
  .popup-two {
    padding: 80px 30px;
  }

  /* Cookie Notice Styling */
  .cookie-container {
    display: block;
    text-align: center;
  }

  button.cookie-consent__agree {
    margin-top: 15px;
  }

  span.cookie-consent__message {
    line-height: 20px;
    display: block;
  }

  /* Authors Search Filter */
  .authors-search-filter .search-filter-form .search-item {
    width: 80%;
  }

  .authors-search-filter .search-filter-form .search-item:last-child {
    width: 60%;
  }

  /* Page Banner Social Icons */
  .page-banner .social-style-one {
    margin-top: 20px;
    justify-content: flex-start;
  }
}

/* Devices with maximum width of 1340px */
@media (width <= 1340.98px) {
  .main-menu .navigation > li > a {
    margin-inline-start: 16px !important;
    font-size: 14px;
  }

  .menu-right {
    margin-left: 0;
    margin-inline-start: 60px;
  }
}

/* Devices with maximum width of 1439px */
@media (width <= 1439.98px) {
  .main-menu .navigation > li > a {
    margin-left: 0;
    margin-inline-start: 20px;
    font-size: 15px;
  }
}
