:root {
  --main-color: #d33753;
  --light-color: #fafafa;
  --padding-lg: 3rem;
  --padding-md: 2rem;
  --padding-sm: 1rem;
  --shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  --shadow-light: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

@font-face {
  font-family: "Macan";
  src: url('/newux/fonts/MacanPanWeb-Regular.ttf');
}

html {
  scroll-padding-top: 16.5rem;
}

@media(max-width: 778px) {
    html {
        scroll-padding-top: 10.5rem;
    }
}

html {
  scroll-padding-top: 16rem;
}

.error{
    border: 1px solid red!important;
    border-radius: 5px;
}

.add-section-button.error {
  border: 1px solid red !important;
  background-color: #ffe6e6;
}

main {
  padding: 16.5rem var(--padding-lg) 2.5rem var(--padding-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 80vh;
}

@media (max-width: 1000px) {
    main {
      padding: 16.5rem var(--padding-md) 2.5rem var(--padding-md);
    }
}

@media (max-width: 778px) {
    main {
      padding: 10.5rem var(--padding-md) 2.5rem var(--padding-md);
    }
}

@media (max-width: 640px) {
    main {
      padding: 10.5rem var(--padding-sm) 2.5rem var(--padding-sm);
    }
}

.italic {
  font-style: italic;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Macan";
  scroll-behavior: smooth;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

h3 {
  font-weight: 400;
}

h4 {
  font-weight: 400;
}

input,
textarea {
  border: none;
  outline: none;
  background-color: none;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Removes spinners */
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* <------------------------------------------------- header ----------------------------------------> */

.map-overlay {
  width: 100%;
  position: fixed;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  padding: 2rem;
  justify-content: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location {
  display: flex;
  width: 400px;
  background-color: #fff;
  padding: 1rem;
  flex-direction: column;
  height: fit-content;
  border-radius: 10px;
  max-height: 80vh;
}

.location-head {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 1rem;
  gap: 1rem;
}

.location-head input {
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 1rem;
  border-radius: 3rem;
}

.location-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.location-title h3 {
  font-size: 14px;
  margin-left: 0.5rem;
}

.location-dropdown {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.loc {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.loc img {
  width: 20px;
  height: 20px;
}

.loc p {
  transition: 0.25s ease;
  cursor: pointer;
}

.loc p:hover {
  color: var(--main-color);
}

.close-btn {
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}

#filterName {
  text-transform: capitalize;
}

.img-medal {
  width: 15px;
  height: 15px;
}

.filter-button {
  position: fixed;
  bottom: 4.5rem;
  padding: 0.75rem 1.5rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
  display: none;
  gap: 10px;
  left: 50%;
  align-items: center;
  z-index: 1000;
  border-radius: 3rem;
}

@media (max-width: 778px) {
  .filter-button {
    bottom: 6.5rem;
  }
}

.filter-button.relative {
  position: relative;
  bottom: unset;
  left: unset;
  transform: unset;
  width: fit-content;
  align-self: center;
  margin-top: 1rem;
}

.filter-btn i {
  fill: #fff;
  font-size: 20px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 10px 0;
}

.nav-container {
  box-shadow: var(--shadow);
  padding: 1rem var(--padding-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.middle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.last {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: relative;
  align-items: center;
  gap: 1rem;
}

.search-start-wrapper {
    padding: 1rem 1rem 0 1rem;
    width: 100%;
    display: none;
    cursor: pointer;
}

.search-start-box {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    border-radius: 3rem;
    padding: 15px;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.search-start-box i {
    font-size: 14px;
}

.last-sticky-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: opacity 0.3s ease;
}

.explore-option {
    margin-right: 5px;
}

.nav-option, .explore-option {
  position: relative;
}

.nav-option::before, .explore-option::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: unset;
}

.explore-btn {
    display: none;
    gap: 5px;
    align-items: center;
    border-radius: 3rem;
    padding: 0.5rem 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.15);
}

.explore-btn i {
    font-size: 14px;
}

.explore-btn li {
    font-size: 12px;
}

.nav-option:hover::before, .explore-option:hover::before {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-user-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 3rem;
}

.last li i {
  font-size: 20px;
}

.notification-indicator::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--main-color);
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.notification-indicator[data-count="0"]::after,
.notification-indicator:not([data-count])::after,
.notification-indicator[data-count=""]::after {
  display: none;
}

.map-txt {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--main-color);
  padding: 0.5rem;
}

.map-icon {
  width: 30px;
  height: 30px;
}

.map-txt p {
  font-size: 12px;
  text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 166px;
    height: 48px;
    object-fit: cover;
}

.beta-logo {
    width: 48px;
    transform: translateY(-3px);
}

.selected-option {
  display: flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  cursor: pointer;
  padding: 0 1rem 0 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}

.selected-option span {
  font-size: 12px;
  text-align: center;
}

.selected-option img {
  width: 25px;
  height: 25px;
}

.search-bar {
  display: flex;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3rem;
  padding: 0rem 1rem;
  align-items: center;
  position: relative;
  gap: 1rem;
  width: fit-content;
  background-color: #fff;
}

.nav-hider {
    width: 30px;
    height: 30px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    border-radius: 50%;
    display: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.nav-hider i {
    font-size: 14px;
}

.search-bar input {
  width: 400px;
  height: 60px;
}

.search-bar input::placeholder {
  font-size: 14px;
}

.search-icon {
  background-color: var(--main-color);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 1rem;
}

.search-icon img {
  width: 15px;
  height: 15px;
  transition: 0.25s ease;
}

.search-icon img:hover {
  transform: scale(1.1);
}

.search-tooltip {
  position: fixed;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  z-index: 10000;
  display: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  animation: fadeIn 0.2s ease-in-out;
}

.search-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.last i {
  font-size: 22px;
  cursor: pointer;
}

.hamburger-menu {
  background-color: var(--main-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 10;
  display: none;
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-basis: 20%;
}

.add-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  height: 40px;
  padding: 0 15px;
  gap: 5px;
  transition: 0.25s ease;
  border-radius: 3rem;
  position: relative;
  --b: 3px;
  --s: 15px;
  --c1: #ca3064;
  --c2: #ec719b;
  cursor: pointer;
}

.add-btn::before {
  content:"";
  border-radius: 3rem;
  position: absolute;
  inset: 0;
  padding: var(--b);
  background:
    repeating-conic-gradient(var(--c1) 0 25%,var(--c2) 0 50%)
    0 0/var(--s) var(--s) round;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.add-btn::after {
    content: "20% Off";
    position: absolute;
    text-align: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(to right, #ca3064, #ec719b);
    border-radius: 50%;
    font-size: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    top: -30%;
    right: 0;
}

/* -----------------------------------------mail-box---------------------------------------- */

.mailbox {
  width: 250px;
  position: absolute;
  padding: 1rem;
  top: 120%;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  flex-direction: column;
}

.mail {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.25s ease;
  padding: 0.5rem;
  border-radius: 3rem;
}

.mail p {
  font-size: 10px;
}

.profile-image-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .profile-image-nav {
    width: 25px;
    height: 25px;
  }
}

.popup-filter-window {
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 100000000;
}

.popup-filter-container {
  background-color: #fff;
  width: 900px;
  position: relative;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  .popup-filter-window {
    padding: 0rem 1.5rem;
  }

  .popup-filter-container {
    width: 100%;
  }
}

.close-filter {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.popup-filter-left {
  display: flex;
  gap: 10px;
}

.popup-filter-head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: #fff;
  background: linear-gradient(to right, #ca3064, #ec719b);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 550px) {
  .popup-filter-head {
    padding: 1rem;
  }
}

.popup-filter-content {
  height: auto;
  width: 100%;
}

.popup-filter-content::-webkit-scrollbar {
  display: none;
}

.mail:hover,
.mail.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.mail img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* --------user-menu-------------------------------------------------- */

.user-menu {
  position: absolute;
  top: 120%;
  background-color: #fafafa;
  border-radius: 5px;
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 1.5rem;
  flex-direction: column;
  right: 0;
  gap: 1.5rem;
  display: none;
}

.user-menu-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-menu-box ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-menu-box ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 14px;
}

.user-menu-box ul li p:hover {
  text-decoration: underline;
}

.user-menu-box h4 {
  color: var(--main-color);
  font-size: 14px;
  margin-left: 5px;
}

.user-menu-box ul li i {
  font-size: 14px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s ease-in;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.service-container {
  width: 700px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.service-heading-popup {
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
}

.service-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.service-item {
  transition: 0.25s ease;
  padding: 1rem;
  border: 1px solid #fff;
  cursor: pointer;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease;
  border-radius: 50%;
  position: relative;
}

.service-item::before {
  content: "+";
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -8px;
  right: 1.1rem;
  background-color: #fff;
  opacity: 0;
  transition: 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.service-item:hover {
  border: 1px solid var(--main-color);
}

.service-item:hover::before {
  opacity: 1;
}

.scroll-top {
  justify-content: flex-end;
  position: fixed;
  left: 1rem;
  display: flex;
  bottom: 1rem;
}

.scroll-top button {
  width: 35px;
  background-color: #fff;
  height: 35px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  cursor: pointer;
}

.scroll-top button a i {
  color: #000;
}

.service-item p {
  font-size: 8px;
  text-align: center;
}

.service-item img {
  width: 25px;
  height: 25px;
}

.close-overlay {
  position: absolute;
  right: 1.5rem;
  top: -1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.close-overlay img {
  width: 20px;
  height: 20px;
}

.dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 10;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    flex-direction: column;
    display: none;
    width: 300px;
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    height: 60vh;
}

.dropdown::-webkit-scrollbar {
  display: none;
}

.dropdown.active {
  display: flex;
}

.dropdown-element {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 1rem 2rem;
  transition: 0.25s ease;
  background-color: #fff;
}

.dropdown-element:hover {
  background-color: rgba(0, 0, 0, 0.1);
  padding-left: 3rem;
}

.dropdown-element li {
  font-size: 12px;
  text-align: center;
}

.dropdown-img {
  width: 20px;
  height: 20px;
}

/* <------------------------------------------------- services slider ----------------------------------------> */

.services-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: -2;
  padding: 0.5rem var(--padding-lg) 0rem var(--padding-lg);
}

.services-container button {
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #000;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  transition: 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.services-container button i {
  color: var(--main-color);
  font-size: 12px;
}

.services-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.left-click {
  left: 1.5rem;
}

.right-click {
  right: 1.5rem;
}

.service {
  min-width: fit-content;
  display: flex;
  justify-content: center;
}

.service-stamp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
  width: fit-content;
  padding: 0.85rem 0;
  border-bottom: 2px solid #fff;
}

.service:hover .service-stamp {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.service.active .service-stamp {
  border-bottom: 2px solid #000;
}

.home-chat-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #222;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-chat-btn i {
  color: #fff;
}

.service-stamp img {
  width: 25px;
  height: 25px;
}

.service-stamp h3 {
  font-size: 10px;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.service:hover .service-stamp h3 {
  color: #000;
}

.service.active .service-stamp h3 {
  color: #000;
}

/* <------------------------------------------------- marquee slider ----------------------------------------> */

.marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.marquee-slide {
  display: flex;
  gap: 1rem;
  animation: slide infinite 25s linear;
  animation-play-state: running;
}

.marquee-slide:hover {
  animation-play-state: paused;
}

.static-slide {
  display: flex;
  gap: 1rem;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pool {
  display: flex;
  gap: 12px;
}

.pool img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

/* <------------------------------------------------- subscriptions ----------------------------------------> */

.sub-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.sub-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.sub-title h3 {
  font-weight: 500;
  font-size: 2rem;
}

.sub-title p {
  text-align: center;
}

.subscriptions {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 900px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .subscriptions {
    width: 100%;
  }

  .nav-container {
    padding: 1rem var(--padding-sm);
  }

}

.subscription {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 1rem;
  cursor: pointer;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  transition: 0.25s ease;
}

.subscription.active,
.subscription:hover {
  color: #fff;
  background-color: var(--main-color);
}

.sub-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sub-head h4 {
  background-color: var(--main-color);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  width: fit-content;
}

.subscription.active .sub-head h4,
.subscription:hover .sub-head h4 {
  background-color: #fff;
  color: var(--main-color);
}

.sub-head h3 {
  font-size: 2.5rem;
  font-family: "pt mono";
}

.sub-item i {
  color: var(--main-color);
}

.plan-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-pricing h3 {
    font-size: 20px;
}

.plan-pricing h3:nth-child(1) {
    text-decoration: line-through;
}

.plan-pricing h3:nth-child(2) {
    color: var(--main-color);
}

.single-pricing h3 {
    font-size: 2rem;
}

.plan-pricing span {
    padding: 5px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 10px;
    border-radius: 2px;
}

.nowraptext {
    white-space: no-wrap;
}

.subscription.active .sub-item i,
.subscription:hover .sub-item i {
  color: #fff;
}

.subscription.active .plan-pricing h3:nth-child(2), .subscription:hover .plan-pricing h3:nth-child(2){
    color: #fff;
}

.subscription.active .plan-pricing span, .subscription:hover .plan-pricing span {
    color: var(--main-color);
    background-color: #fff;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sub-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sub-item p {
  font-size: 12px;
}

#sub-category-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
}

.sub-category {
  display: flex;
  padding: 0.75rem 1.5rem;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3rem;
  cursor: pointer;
}

.sub-category img {
  width: 20px;
  height: 20px;
}

.sub-category p {
  font-size: 14px;
}

.locandmap {
  display: flex;
  gap: 5px;
  align-items: center;
}

.locandmap h4 {
  font-size: 12px;
}

.card-each-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* <------------------------------------------------- card container and img slider ----------------------------------------> */

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: #fff;
}

.card.loaded {
  opacity: 1;
  transform: translateY(0);
}

.slider-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-image.loaded {
  opacity: 1;
}

.wishlist-card {
  position: absolute;
  font-size: 20px;
  top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  right: 1rem;
  color: #fff;
  z-index: 10;
}

.cardcat {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.cardcat i {
  color: #000;
}

.wishlist-card.active {
  color: var(--main-color);
}

.extreme-ends {
  display: flex;
  justify-content: space-between;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.slider-image {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  border-radius: 5px;
  filter: brightness(0.75);
}

.slider-controls {
  position: absolute;
  width: 100%;
  padding: 0 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 10px;
  border-radius: 50%;
  transition: 0.25s ease;
  opacity: 0;
}

.card:hover .slider-controls button {
  opacity: 1;
}

.author {
  position: absolute;
  top: 0.5rem;
  display: flex;
  flex-direction: column;
  left: 0.5rem;
  gap: 5px;
  z-index: 2;
}

.authorImg {
  position: relative;
  width: 35px;
  height: 35px;
}

.authorImg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
}

.authorImg.with-after::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  border: 2px solid #fff;
  top: -1px;
  background-color: rgb(12, 255, 12);
}

.cardDetails {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cardDetails h3{
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cardcat h3 {
  font-weight: unset;
}

.cardDetails h4 {
  color: rgba(0, 0, 0, 0.65);
}

.footer-divs {
  display: flex;
}

.cardDetails h5 {
  font-weight: 400;
  font-size: 14px;
}

.authorName {
  color: #fff;
  text-transform: capitalize;
  font-size: 8px;
}

.cardStats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.cardStats span {
  width: 1px;
  height: 10px;
  background-color: #000;
}

.cardRatings {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.cardRatingsEye p {
  margin-bottom: 2px;
}

.cardStamps {
  display: flex;
  align-items: center;
  gap: 10px;
}

.membership-card-logo {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.mem-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.cardStamps p {
  color: rgba(0, 0, 0, 0.65);
}

.cardStamps i {
  font-size: 16px;
  color: #000;
}

.star {
  width: 15px;
  height: 15px;
}

.not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: column;
  height: 200px;
  border: 1px solid var(--main-color);
  border-radius: 1rem;
  gap: 1rem;
  margin-top: 1rem;
}

.not-found i {
  font-size: 3rem;
}

.message-mover {
  padding: 0.5rem 0;
  overflow: hidden;
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  display: none;
}

.mover-box {
  display: flex;
  gap: 2rem;
  animation: slide infinite 50s linear;
  animation-play-state: running;
  align-items: center;
  cursor: grab;
}

.mover-box:hover {
  animation-play-state: paused;
}

.mover-box p {
  white-space: nowrap;
  font-size: 10px;
}

/* <------------------------------------------------- footer ----------------------------------------> */

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
}

.footer-links {
  padding: 3rem var(--padding-lg);
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.subscribe-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.subscribe-box h3 {
  font-weight: 500;
  text-decoration: underline;
  color: var(--main-color);
}

.subscribe {
  display: flex;
  gap: 5px;
  align-items: center;
}

.subscribe input {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 200px;
}

.subscribe button {
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 1rem 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.subscribe button i {
  font-size: 12px;
  color: #fff;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.links-list h3 {
  font-weight: 500;
  text-decoration: underline;
  color: var(--main-color);
}

.links-list ul li a {
  transition: 0.25s ease;
}

.links-list ul li a:hover {
  color: var(--main-color);
}

.links-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.links-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-contact h3 {
  font-weight: 500;
  text-decoration: underline;
  color: var(--main-color);
}

.footer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-item h4 {
  font-size: 18px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-item p {
  color: rgba(0, 0, 0, 0.75);
}

.copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem var(--padding-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* <------------------------------------------------- forms ----------------------------------------> */

input[type="file"] {
  opacity: 0;
  cursor: pointer;
}

.radio-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.radio-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 3rem;
  width: fit-content;
  padding: 1rem;
  align-items: center;
  gap: 10px;
}

.form-file {
  width: 100%;
  height: 100px;
  border: 1px solid var(--main-color);
  border-style: dashed;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.form-file input {
  width: 100%;
  height: 100%;
  position: absolute;
}

.file-img {
  width: 50px;
  height: 50px;
}

.select {
  cursor: pointer;
  position: relative;
}

.form-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-container {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 1rem;
  padding: 4rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 900px;
  overflow: hidden;
}

.form-checkbox {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.form-submit {
  align-self: center;
  padding: 1rem 3rem;
  border: 1px solid var(--main-color);
  margin-top: 1rem;
  border-radius: 3rem;
  display: flex;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.25s ease;
}

.form-submit:hover {
  background-color: var(--main-color);
  color: #fff;
}

.form-submit::before {
  content: "";
  width: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
  left: 1rem;
  position: absolute;
  transition: 0.25s ease;
  height: 5px;
}

.form-submit::after {
  content: "";
  width: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
  right: 1rem;
  position: absolute;
  transition: 0.25s ease;
  height: 5px;
}

.form-submit:hover::after {
  background-color: #fff;
}

.form-submit:hover::before {
  background-color: #fff;
}

.ribbon {
  position: absolute;
  width: 65px;
  height: 115px;
  background-color: var(--main-color);
  top: 0;
  left: 50px;
  display: flex;
  align-items: end;
  padding: 1rem 0;
  justify-content: center;
  border-radius: 0 0 3rem 3rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.ribbon div {
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
}

.ribbon div img {
  width: 25px;
  height: 25px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-title {
  display: flex;
  justify-content: center;
}

.form-title h3 {
  padding: 0 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
  border-bottom: 1px solid var(--main-color);
  max-width: 300px;
}

.input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}

.three-equal,
.two-equal,
.two-unequal {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.superscript {
  display: flex;
  left: 1rem;
  bottom: 0.5rem;
  gap: 10px;
  position: absolute;
  color: #fff;
}

.super-script-h {
  display: flex;
  gap: 5px;
}

.form-item {
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-item label {
  font-size: 12px;
}

.form-item input {
  font-size: 12px;
}

.sup {
  color: var(--main-color);
}

.two-unequal .form-item:nth-child(1) {
  flex: 1;
}

.two-unequal .form-item:nth-child(2) {
  flex: 2;
}

.form-dropdown {
  display: none;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.25);
  z-index: 1;
  width: 250px;
  border-radius: 3px;
  position: absolute;
  top: 110%;
}

.form-dropdown div {
  padding: 15px;
  font-size: 12px;
  cursor: pointer;
}

.form-dropdown div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ---------------------------------------------toggle-bar-------------------------------------------- */

.toggle-bar {
  display: flex;
  gap: 1rem;
  border-radius: 3rem;
  border: 1px solid rgba;
  padding: 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: fit-content;
  align-self: center;
}

.toggle-option {
  border-radius: 3rem;
  padding: 1rem 2rem;
  background-color: #fff;
  transition: 0.25s ease;
  cursor: pointer;
}

.toggle-option.active {
  background-color: #d33753;
  color: #fff;
}

/* -----testimonials-------------- */

.testimonials-slider {
  position: relative;
  width: 300px;
  overflow: hidden;
}

.testimonials {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: fit-content;
}

.testimonial-card {
  min-width: 300px;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: flex-start;
}

.testimonial-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 1.5rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
}

.testimonial-box i {
  font-size: 30px;
  position: absolute;
  color: var(--main-color);
  top: 1rem;
  right: 1rem;
  transform: rotate(180deg);
}

.testimonial-writer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.writer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.writer-info span {
  font-size: 14px;
  font-weight: 500;
}

.writer-info span:nth-child(2) {
  font-size: 12px;
  font-weight: 400;
}

.testimonial-box p {
  font-size: 14px;
}

.testimonial-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.popup-profile {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.popup-profile-content {
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
  width: 600px;
}

.popup-profile.show {
  display: flex;
}

.pp-author-about {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  gap: 1rem;
}

.pp-tail {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  text-transform: capitalize;
  width: 100%;
}

.pp-ads {
  display: flex;
  overflow: auto;
  scroll-behavior: smooth;
  width: 100%;
  gap: 10px;
  align-items: center;
}

.pp-slider-btn {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pp-ad-prev {
  left: 0.5rem;
}

#pp-ad-next {
  right: 0.5rem;
}

.pp-ad-data {
  display: flex;
  flex-direction: column;
}

.pp-ad-title div {
  display: flex;
  gap: 5px;
  font-size: 13px;
}

.pp-ad-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pp-ad-data p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.pp-ad {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-ad img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.pp-ads::-webkit-scrollbar {
  display: none;
}

.pp-author-title h3 {
  text-transform: capitalize;
}

.pp-author-about h3 {
  text-transform: capitalize;
}

.pp-wrapper {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 85vh;
}

.pp-wrapper::-webkit-scrollbar {
  display: none;
}

.close-profile-btn {
  position: absolute;
  top: -1.5rem;
  right: 1rem;
  background-color: var(--main-color);
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.pp-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 2rem;
}

.pp-head {
  display: flex;
  gap: 2rem;
  width: 100%;
  align-items: center;
}

.pp-ad-data i {
  color: gold;
}

.pp-ad-title span {
  font-size: 12px;
}

.pp-head img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
}

.pp-author-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pp-stamps {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pp-things {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pp-thing {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pp-description {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pp-wrapper h4 {
    font-weight: 1000;
    text-decoration: underline;
}

.pp-stamp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.notifier {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mail {
  cursor: pointer;
}

.notifier p {
  font-size: 10px;
}

.notifier span {
  font-size: 13px;
  font-weight: 500;
}

.chat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 700px) {
  .popup-profile {
    padding: 1.5rem;
  }

  .popup-profile-content {
    width: 100%;
  }

  .pp-thing {
    width: 100%;
  }

  .pp-head {
    flex-direction: column;
  }

  .pp-author-title {
    align-items: center;
  }
}

@media (max-width: 2700px) {
  .services-slider {
    justify-content: unset;
  }

  .services-container button {
    display: flex;
  }
}


@media (max-width: 1100px) {
  .testimonial-card {
    justify-content: start;
  }
}

@media (max-width: 1000px) {

  .footer-links {
    padding: 3rem var(--padding-md);
  }

  .copyright {
    padding: 1.5rem var(--padding-md);
  }
}

@media (max-width: 850px) {
  .radio-container {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .service-container {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 1rem;
    border-radius: unset;
  }

  .close-overlay {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

  .service-container::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-links {
    padding: 3rem var(--padding-sm);
  }

  .copyright {
    padding: 1.5rem var(--padding-sm);
  }

  .copyright {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .form-container {
    padding: 4rem 1.5rem;
  }

  .search-bar {
    width: 100%;
  }

  .ribbon {
    left: 1rem;
    width: 50px;
  }

  .ribbon div {
    width: 35px;
    height: 35px;
  }

  .ribbon div img {
    width: 25px;
    height: 25px;
  }

  .form-title h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 550px) {
  .testimonials-slider {
    width: 100%;
  }

  .testimonials {
    width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
  }
}

@media (max-width: 500px) {
  .search-bar input {
    width: 100%;
  }

  .testimonial-box p {
    font-size: 1rem;
  }

  .service-item {
    width: 85px;
    height: 85px;
    gap: 5px;
  }

  .service-item p {
    font-size: 8px;
  }
}

@media (max-width: 550px) {
  .service-item {
    width: 70px;
    height: 70px;
  }

  .service-item img {
    width: 20px;
    height: 20px;
  }
}

.tc-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .tc-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 800px;
  }

  .tc-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .tc-head h3 {
    font-size: 1.75rem;
    font-weight: 1000;
    color: var(--main-color);
  }

  .tc-head h4 {
    font-weight: 500;
    font-size: 14px;
  }

  .tc-container h3 {
    color: var(--main-color);
  }

  .tc-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .items-faqs {
    gap: 2rem;
  }

  .tc-items h2 {
    font-size: 20px;
    color: var(--main-color);
  }

  .tc-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tc-item h3 {
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
  }

  .items-faqs .tc-item h3 {
    color: #000;
    text-decoration: unset;
    font-weight: 1000;
  }

  .tc-item p {
    font-size: 16px;
  }

  .tc-item h4 {
    font-weight: 500;
  }

  .tc-item-flex {
    display: flex;
    gap: 1rem;
  }

  .tc-item-flex span {
    margin-left: 1rem;
  }

  .tc-items-box {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }

  .tc-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 2rem;
  }

  .tc-item ul li {
    list-style: disc;
  }

  .tc-ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tc-ol-list {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .spanned-text {
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 3px 6px;
    border-radius: 3px;
  }

  .more-text {
    font-size: 10px;
  }

  @media (max-width: 900px) {
    .tc-container {
      width: 100%;
    }
  }

  .tc-item a {
    text-decoration: underline;
    color: #007bff;
  }

.create-section {
  width: 100%;
  padding: 16.5rem 0 3rem 0;
  display: flex;
  gap: 1rem;
  position: relative;
}

@media (max-width: 1100px) {
  .spaced-wrapper {
    margin-top: 10px;
  }
}

.dashboard-section {
  width: 100%;
  display: flex;
  gap: 1rem;
  position: relative;
}

.sidebar {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 16.5rem;
  height: fit-content;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
}

.sidebar h4 {
  font-size: 14px;
  color: #d33753;
  margin-left: 1.5rem;
}

.sidebar li {
  display: flex;
  gap: 10px;
  padding: 12px 1rem;
  font-size: 14px;
  align-items: center;
}

.sidebar li i {
  font-size: 14px;
}

.sidebar-link.active {
  background-color: var(--main-color);
  color: #fff;
}

.sidebar-box {
  display: flex;
  flex-direction: column;
}

.sidebar-box h4 {
    margin-bottom: 10px;
}

.dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  width: 100%;
}

.dashboard-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-title h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

.dashboard-title p {
  font-size: 12px;
}

.dashboard-stamps {
  display: flex;
  gap: 10px;
}

.dashboard-stamp {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .dashboard-stamps {
    flex-wrap: wrap;
  }

  .dashboard-stamp {
    flex: unset;
    min-width: 150px;
    max-width: 100%;
    flex: 1;
  }
}

.dashboard-stamp p {
  font-size: 12px;
}

.dashboard-stamp h4 {
  font-size: 1.25rem;
}

.stamp-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stamp-between img {
  width: 20px;
  height: 20px;
}

.dashboard-boxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-box {
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  .dashboard-box {
    flex: unset;
    min-width: 300px;
    flex: 1;
    max-width: 100%;
  }
}

.db-box-head {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.db-box-head h4 {
  font-size: 12px;
}

.db-box-head button {
  color: var(--main-color);
  text-decoration: underline;
  font-size: 12px;
}

.db-box-body {
  width: 100%;
  max-height: 450px;
  display: flex;
  overflow: auto;
  flex-direction: column;
}

.db-box-body::-webkit-scrollbar {
  width: 8px;
}

.db-box-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.db-box-body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ca3064, #fafafa);
}

.db-object {
  width: 100%;
  padding: 1rem;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-buttons button {
  color: #ca3064;
  font-size: 12px;
}

.pagination-buttons button:disabled {
  color: #999;
  cursor: not-allowed;
}

.pagination span {
  font-size: 12px;
}

.db-box-body a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.db-box-body a:last-child {
  border-bottom: unset;
}

.db-object img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 5px;
}

.db-object:hover {
  background: rgba(0, 0, 0, 0.05);
}

.db-object:last-child {
  border-bottom: unset;
}

.db-object-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.db-object p {
  font-size: 12px;
  font-weight: 600;
}

.db-object p span {
  color: var(--main-color);
}

.db-obj-stamps {
  display: flex;
  gap: 10px;
  align-items: center;
}

.db-obj-stamp {
  display: flex;
  gap: 5px;
  align-items: center;
}

.db-obj-stamp i {
  font-size: 12px;
}

.db-obj-stamp span {
  font-size: 10px;
}

.da-obj-between {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.db-object img.db-object-recent {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  align-self: flex-start;
}

#recentActivity,
#recentActivityEvents {
  padding: 1rem;
  gap: 5px;
}

.act-timestamp {
  font-size: 12px;
  width: 30px;
}

.activity-object {
  display: flex;
  gap: 1rem;
}

.ac-obj-content {
  display: flex;
  gap: 10px;
}

.ac-obj-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ec719b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ac-obj-color span {
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
}

.ac-obj-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
}

.ac-obj-data h4 {
  font-weight: 600;
}

.ac-obj-track {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.track-line {
  background-color: rgba(0, 0, 0, 0.1);
  width: 3px;
  height: 40px;
}

.reviews-section-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-container-page {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
}

.review-container-page-address {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.review-option-selector {
  display: flex;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  align-items: center;
  gap: 1rem;
  transition: 0.25s ease;
}

.review-option-selector button {
  color: var(--main-color);
  text-decoration: underline;
}

.review-option-selector button.active {
  color: #000;
  text-decoration: unset;
}

.review-wrapper-page {
  overflow: auto;
  max-height: 500px;
}

.pagination-paper {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-wrapper-page::-webkit-scrollbar {
  width: 8px;
}

.review-wrapper-page::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.review-wrapper-page::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ca3064, #fafafa);
}

.review-item-page {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-item-page:last-child {
  border-bottom: unset;
}

.review-item-page-person img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.review-item-page-person {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-item-page-person h4 {
  font-weight: 500;
  font-size: 14px;
}

.review-item-page p,
.review-item-page h4 {
  font-size: 12px;
}

.review-item-page h4 {
  font-weight: 600;
}

.review-item-page-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-item-stars {
  color: var(--main-color);
}

.review-item-page-data img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

.activity-date {
  text-align: center;
  font-size: 12px;
  text-decoration: underline;
  margin: 10px 0 20px 0;
}

.db-box-spans {
  display: flex;
  padding: 0 1.5rem 1.5rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.db-box-spans span {
  flex: 1;
  font-size: 12px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.db-box-spans span:last-child {
  border-right: unset;
}

.db-box-spans-address {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.db-box-spans-address span {
  flex: 1;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.db-box-spans-address span:last-child {
  border-right: unset;
}

.wishlist-object {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
  display: flex;
  gap: 10px;
}

.wishlist-object-div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}

.wishlist-object:last-child {
  border-bottom: unset;
}

.wishlist-object:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.chats-wrapper, .wishlist-wrapper, .notification-wrapper, .user-menu {
    z-index: 1;
}

.empty-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    align-items: center;
}

.empty-message i {
    font-size: 50px;
}

.empty-message p {
    font-size: 12px;
}

.wishlist-object img {
  width: 75px;
  height: 65px;
  border-radius: 5px;
  object-fit: cover;
}

.wishlist-object-div button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  background: linear-gradient(to right, #ca3064, #ec719b);
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.25s ease;
}

.wishlist-object-div button.button-action {
    border-radius: 3rem;
}

.wishlist-object-div button:hover {
  transform: translateY(-5px);
}

.wishlist-object-div i {
  font-size: 12px;
}

.offering-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offering-buttons {
  display: flex;
  gap: 1rem;
  font-size: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.offering-buttons button {
  padding: 0 0 15px 0;
  border-bottom: 2px solid #fff;
  font-size: 12px;
}

.offering-buttons button.active {
  border-bottom: 2px solid var(--main-color);
}

.wishlist-object-div h3 {
  text-align: center;
}

@media (max-width: 950px) {
  .sidebar {
    display: none;
  }

  .dashboard-container {
      padding: 0;
      margin-top: 1rem;
    }

}

@media (max-width: 650px) {
  .wishlist-object {
    padding: 10px;
  }

  .wishlist-object-div img {
    width: 40px;
    border-radius: 50%;
    height: 40px;
  }

  .wishlist-object-div button span {
    display: none;
  }

  .wishlist-object-div h3 {
    font-size: 9px;
  }

  .wishlist-object-div button {
    padding: none;
    background: unset;
    color: #ca3064;
  }

  .alt-object-div:last-child {
    flex: 0.5;
  }

  .alt-object-div:first-child {
    flex: 0.25;
  }

  .offering-buttons button {
    font-size: 9px;
  }

  .db-box-spans span {
    font-size: 9px;
  }

  .db-box-spans {
    padding: 0 0px 1.5rem 0px;
  }
}

.chats-container {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.chats-selector-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chats-selector {
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow: auto;
}

.chat-item-selector {
  display: flex;
  padding: 15px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 10px;
  cursor: pointer;
  transition: 0.25s ease;
}

.chat-item-selector:hover,
.chat-item-selector.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.chat-item-selector img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
}

.chat-item-info-selector {
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chat-item-info-selector h4 {
  font-weight: 500;
  font-size: 11px;
}

.chat-item-info-selector p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.75);
}

.chats-selector::-webkit-scrollbar {
  width: 8px;
}

.chats-selector::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chats-selector::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ca3064, #fafafa);
}

.chats-search {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.chats-search i {
  color: #ca3064;
}

.no-chats-found {
  display: flex;
  gap: 5px;
  padding: 15px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.no-chats-found i {
  color: #ca3064;
}

.single-chat-display {
  display: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: column;
  flex-basis: 70%;
  width: 100%;
  position: relative;
}

.single-chat-window-head {
  display: flex;
  min-height: 65px;
  width: 100%;
  padding: 0 15px;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
}

.single-chat-window-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.single-chat-window-head h4 {
  font-size: 14px;
  font-weight: 500;
}

.single-chat-window-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 15px 4.25rem 15px;
  overflow: auto;
  max-height: 400px;
}

.chat-text-page p {
  font-size: 12px;
}

.chat-window-details-page {
  width: fit-content;
}

.chat-window-details-page.sent-message {
  align-self: flex-end;
}

.chat-window-details-page.sent-message .chat-text {
  background: #ca3064;
  color: #fff;
  align-items: flex-end;
}

.single-chat-window-tail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}

.single-chat-submit {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-chat-window-tail textarea {
  font-size: 13px;
  padding-top: 0.5rem;
  width: 200px;
}

.single-chat-window-tail textarea::-webkit-scrollbar {
  display: none;
}

.single-chat-window-tail textarea::placeholder {
  font-size: 13px;
}

.single-chat-window-box::-webkit-scrollbar {
  width: 8px;
}

.single-chat-window-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.single-chat-window-box::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ca3064, #fafafa);
}

@media (max-width: 1100px) {
  .chats-selector-wrapper {
    flex-basis: 40%;
  }

  .single-chat-display {
    flex-basis: 60%;
  }
}

@media (max-width: 950px) {

  .chats-selector-wrapper {
    flex-basis: 30%;
    min-width: 250px;
  }

  .single-chat-display {
    flex-basis: 70%;
  }
}

@media (max-width: 800px) {
  .chats-selector-wrapper {
    flex-basis: 40%;
  }

  .single-chat-display {
    flex-basis: 60%;
  }
}

.single-chat-display.show {
  display: flex;
}

.go-back {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  cursor: pointer;
  gap: 5px;
  font-size: 12px;
}

.go-back i {
  font-size: 14px;
}

@media (max-width: 650px) {
  .chats-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
  }

  .go-back {
    display: flex;
  }

  .single-chat-display {
    display: none;
    position: absolute;
    width: 95%;
    height: 100%;
    background-color: #fff;
  }

  .chats-selector-wrapper {
    width: 95%;
    flex-basis: unset;
    position: absolute;
    height: 100%;
  }
}

.profile-container-page {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.profile-page-head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 0 0 1rem 0;
  font-size: 14px;
}

.submit-profile {
  padding: 15px 25px;
  background: linear-gradient(to right, #ca3064, #ec719b);
  border-radius: 5px;
  color: #fff;
  width: fit-content;
  font-size: 12px;
}

.profile-page-head h3 {
  font-weight: 500;
}

.profile-page-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.profile-page-photo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile-photo {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-svg {
  font-size: 100px;
  color: #888;
}

.form-file-profile {
  padding: 10px;
  width: fit-content;
  border: 1px solid var(--main-color);
  border-style: dashed;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}

.form-file-profile span {
  font-size: 12px;
}

.form-file-profile input {
  width: 100%;
  height: 100%;
  position: absolute;
}

.file-img-profile {
  width: 15px;
  height: 15px;
}

.profile-page-photo p {
  font-size: 11px;
  width: 250px;
}

.profile-page-details {
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1200px) {
  .profile-page-details {
    width: 100%;
  }
}


.input-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-dropdown-div {
  width: 100%;
}

.arrow-down {
  position: absolute;
  right: 10px;
  top: 15px;
  pointer-events: none;
  width: 15px;
  height: 15px;
}

.login-container {
  width: 450px;
  height: 450px;
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 4rem;
}

@media (max-width: 550px) {
  .login-container {
    width: 100%;
  }
}

.or-divider {
  display: flex;
  align-items: center;
  font-size: 10px;
  gap: 10px;
}

.or-divider span {
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.admin-button {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.login-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex: 1;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1rem;
}

.login-form img {
   width: 166px;
   height: 48px;
   object-fit: cover;
}

.login-form h3 {
  font-size: 14px;
}

.login-button-submit {
  padding: 10px 0px;
  width: 100%;
  border-radius: 5px;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 12px;
}

.google-button {
  background-color: unset;
  border: 1px solid #ca3064;
  color: #000;
}

.google-button img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.login-button-submit i {
  font-size: 12px;
}

.login-form .form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 250px;
}

.login-form input {
  border: 1px solid #ec719b;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  font-size: 12px;
}

.checkbox-option {
  display: flex;
  gap: 8px;
  font-size: 12px;
  align-items: center;
}

.login-admin {
  display: flex;
  font-size: 10px;
  gap: 5px;
  align-items: center;
}

.checkbox-option input[type="checkbox"] {
  width: 13px;
  height: 13px;
  background-color: #d33753;
}

.login-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resend {
  font-size: 10px;
}

.profile-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deactivate-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 1rem;
}

.deactivate-container h3 {
  font-size: 16px;
  font-weight: 500;
}

.deactivate-container p {
  font-size: 12px;
  width: 600px;
}

@media (max-width: 700px) {
  .deactivate-container p {
    width: 100%;
  }
}

.deactivate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deactivate-field {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 500px) {
  .deactivate-field {
    width: 100%;
  }
}

.deactivate-field label {
  font-size: 13px;
  color: black;
}

.deactivate-field input {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.renew-overlay,
.purchase-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 100000000;
  top: 0;
  padding: 1rem;
  left: 0;
}

.renew-overlay-wrapper,
.purchase-overlay-wrapper {
  width: 500px;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  overflow: auto;
  justify-content: space-between;
  border-radius: 1rem;
  min-height: 400px;
  max-height: 70vh;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.purchase-overlay-wrapper::-webkit-scrollbar {
  display: none;
}

.purchase-overlay-wrapper {
  min-height: unset;
  max-height: unset;
  height: fit-content;
}

.ticket-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.renew-overlay-wrapper {
  position: relative;
}

.renew-overlay-wrapper .subscriptions {
  flex-direction: column;
  width: 100%;
}

.renew-overlay-wrapper .subscription {
  width: 100%;
}

.renew-overlay-wrapper .sub-title,
.purchase-overlay-wrapper .sub-title {
  gap: 5px;
}

.renew-overlay-wrapper .sub-title h3,
.purchase-overlay-wrapper .sub-title h3 {
  font-size: 1.5rem;
}

.renew-overlay-wrapper .sub-title p,
.purchase-overlay-wrapper .sub-title p {
  font-size: 12px;
}

.submit-posting {
  align-self: center;
  padding: 15px 25px;
  background: linear-gradient(to right, #ca3064, #ec719b);
  color: #fff;
  border-radius: 5px;
}

.renew-container {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.renew-popup-close {
  position: absolute;
  background-color: var(--main-color);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1rem;
  right: 2rem;
}

.renew-image {
  width: 100%;
  object-fit: cover;
  height: 250px;
  border-radius: 8px;
}

.renew-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.renew-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.renew-message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.renew-message i {
  color: var(--main-color);
  font-size: 15px;
}

.renew-message p {
  font-size: 12px;
}

.renew-item:last-child {
  border-bottom: none;
}

.renew-item p {
  font-size: 12px;
}

.renew-item h4 {
  font-size: 14px;
  text-decoration: underline;
}

.checkout-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.checkout-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.checkout-box img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
}

.qr-img {
  width: 75px;
  height: 75px;
  border-radius: unset;
}

.checkout-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-details h4 {
  font-size: 14px;
}

.checkout-details p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.75);
}

.checkout-item span {
  font-weight: 500;
}

.checkout-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-price-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-price-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-price-stamp span {
  font-size: 13px;
}

.total-price {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.total-price span {
  color: var(--main-color);
}

.purchase-overlay-wrapper button {
  align-self: flex-end;
  margin-top: 0.5rem;
  font-size: 10px;
  padding: 15px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.tickets-holder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promocode-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 1.5rem 0 1rem 0;
}

.promocode-input {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  padding: 10px 20px;
}

.promocode-input span {
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  background-color: var(--main-color);
}

.promo-message {
  font-size: 10px;
}

.buyer-price-section {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  align-items: center;
}

.buyer-price-section p {
  text-decoration: underline;
}

.buyer-price-section button {
  font-size: 10px;
  color: var(--main-color);
}

#offering-event {
  gap: 1.5rem;
}

.dashboard-container .car-selector-posting {
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.dashboard-container .car-selector-posting span.active {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 5px;
  color: #000;
}

.selector-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.events-actions {
  display: flex;
  gap: 5px;
  align-items: center;
}

.events-actions button {
  border-radius: 50%;
  padding: 0.75rem;
}

@media (max-width: 640px) {
  .events-actions button {
    padding: 0.25rem;
  }
}

.tracker-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tracker-container {
  min-width: 350px;
  max-width: 100%;
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tracker {
  min-width: 350px;
  max-width: 100%;
  flex: 1;
  height: 455px;
}

.profile-wishlist-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.payment-details-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 600px;
}

@media (max-width: 700px) {
  .payment-details-body {
    width: 100%;
  }
}

.payment-details-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.payment-details-head h4 {
  font-weight: 600;
}

.payment-details-head p {
  font-size: 12px;
}

.index-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dashcard-wrapper {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.dashcard-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dashcard-links li {
    cursor: pointer;
    text-decoration: underline;
    color: var(--main-color);
}

.dashcard-links li.active {
    text-decoration: unset;
    color: #000;
}

.contact-phone {
    display: flex;
    gap: 5px;
    align-items: center;
}

.contact-phone img {
    width: 25px;
    height: 25px;
}

.dashcard-wrap-box {
    width: 100%;
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
}

@media (max-width:900px) {
    .dashcard-wrap-box {
        flex-direction: column;
    }
}

.dashcard-container {
    flex: 1;
    width: 100%;
    min-height: 350px;
    max-height: 350px;
    position: relative;
    border: 2px solid rgba(0,0,0,0.25);
    border-radius: 8px;
    overflow: hidden;
}

.dashcard-video {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dashcard-video img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.dash-wrap-box {
  padding: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 8px;
}

.notification-clicker {
    cursor: pointer;
}

.dashcard-box {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.dashcard-body {
  display: flex;
  gap: 1rem;
  overflow: auto;
}

.dashcard-body::-webkit-scrollbar {
    display: none;
}

.dashcard {
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  border-radius: 16px;
  border: 1px solid var(--main-color);
  transition: 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.dashcard-img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}

.dashcard-head h3 {
    font-size: 24px;
    font-weight: 1000;
}

@media (max-width: 640px) {
    .dash-wrap-box {
        padding: 1rem;
    }
}

.dashcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.dashcard:hover .dashcard-img img {
  transform: scale(1.15);
}

.dashcard p {
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.travel-dc-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
    padding: 1.5rem 0;
}

@media (max-width: 990px) {
  .travel-dc-wrapper {
    gap: 1.5rem;
  }
}

.travel-dc-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  padding-left: 1.5rem;
}

.travel-dc-content h4 {
  font-weight: 600;
  font-size: 20px;
}

.travel-dc-content p {
  font-size: 14px;
}

.dash-button {
  color: var(--main-color);
  font-size: 12px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.dash-button span {
  text-decoration: underline;
}

.dash-button i {
  font-size: 12px;
}

.event-dash-button {
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;
    font-size: 14px;
    cursor: pointer;
}

.event-dash-button span {
    text-decoration: underline;
}

.event-dash-button i {
    font-size: 12px;
}

.travel-dc-body {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow: auto;
  padding: 0 1.5rem;
}

.travel-dc-body::-webkit-scrollbar {
    display: none;
}

.travel-dashcard {
    min-width: 150px;
    height: 150px;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.25);
    overflow: hidden;
}

.travel-dc-img {
    width: 100%;
    height: 100%;
}

.travel-dashcard p {
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.travel-dc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.travel-dashcard:hover .travel-dc-img img{
    transform: scale(1.25) rotate(10deg);
}

.search-dc-wrapper, .city-dc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  position: relative;
}

#recent-searches-wrapper {
    gap: 0.75rem;
}

.pop-search-container, .city-dc-body, .dashboard-event-slider {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow: auto;
}

.pop-search-container::-webkit-scrollbar, .city-dc-body::-webkit-scrollbar, .dashboard-event-slider::-webkit-scrollbar {
  display: none;
}

.recent-searches-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tabs-wrapper {
    position: relative;
    width: 100%;
}

.tab-search-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  background-color: #fafafa;
  color: #000;
  top: 25%;
  z-index: 2;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.tab-search-btn:hover {
  color: var(--main-color);
}

.tab-search-btn:nth-child(1) {
  left: 0;
  transform: translateX(-30px);
}

.tab-search-btn:nth-child(2) {
  transform: translateX(30px);
  right: 0;
}

@media(max-width: 640px) {
    .tab-search-btn:nth-child(1) {
      left: 0;
      transform: translateX(-15px);
    }

    .tab-search-btn:nth-child(2) {
      transform: translateX(15px);
      right: 0;
    }
}

.search-tabs {
  display: flex;
  overflow: auto;
  gap: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-tabs::-webkit-scrollbar {
  display: none;
}

.search-tab {
  cursor: pointer;
  font-weight: 500;
  padding: 15px 0px;
  font-size: 14px;
  color: #666;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.search-tab:hover {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

.search-tab.active {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
  font-weight: 600;
}

.search-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.search-item {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 7px 14px 10px 14px;
  gap: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.search-item h5 {
  font-size: 16px;
  font-weight: bold;
}

.search-item p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .search-tabs {
    gap: 5px;
  }

  .search-tab {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.city-dashcard {
    min-width: 275px;
    border-radius: 8px;
    position: relative;
    display: flex;
    overflow: hidden;
    border: 2px solid rgba(211, 55, 83,0.1);
    flex-direction: column;
    overflow: hidden;
    --color: #E1E1E1;
      background-color: #FaFaFa;
      background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
          linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
      background-size: 55px 55px;
}

.city-img {
    width: 100%;
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.city-img img {
    object-fit: cover;
    transform: translateY(5px);
    object-position: top;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

.city-dc-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 8px 16px;
}

.city-dc-content h4 {
    font-weight: 800;
}

.city-dc-button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 30px;
    height: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.city-dc-button i {
    color: #000;
    font-size: 12px;
}

.search-dashcard {
  min-width: 300px;
  flex: 1;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 300px;
  transition: 0.3s ease;
}

.search-dc-img {
  width: 100%;
  height: 215px;
  overflow: hidden;
}

.search-dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-dc-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 1rem;
  justify-content: end;
}

.search-dc-content h4 {
  font-size: 16px;
  font-weight: 1000;
}

.pop-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  background-color: #fafafa;
  color: #000;
  z-index: 2;
  top: 50%;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.pop-search-btn:hover {
  color: var(--main-color);
}

.pop-search-btn:nth-child(1) {
  left: 0;
  transform: translateX(-20px);
}

.pop-search-btn:nth-child(2) {
  transform: translateX(20px);
  right: 0;
}

@media(max-width: 640px) {
    .pop-search-btn:nth-child(1) {
      left: 0;
      transform: translateX(-10px);
    }

    .pop-search-btn:nth-child(2) {
      transform: translateX(10px);
      right: 0;
    }
}

.searches-wrapper {
  position: relative;
  width: 100%;
}

.travel-dc-container {
    width: 100%
}

.dash-ua-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    overflow: auto;
}

.review-btn-popup {
    background: linear-gradient(to right, #ca3064, #ec719b);
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 5px;
    color: #fff;
}

.edit-review-head {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-edit-review {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-edit-review textarea {
    width: 100%;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 5px;
}

.close-edit-modal {
    background: var(--main-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: -16px;
    right: 24px;
}

.review-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dash-ua-wrapper::-webkit-scrollbar {
    display: none;
}

.activity-map {
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-map i {
    color: var(--main-color);
}

.dashcard-activity {
  min-width: 325px;
  position: relative;
  display: flex;
  height: 400px;
  justify-content: center;
  align-items: flex-end;
}

.dashcard-activity-heading {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 7px 14px;
    border-radius: 48px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.dashcard-activity-heading h4 {
    font-size: 14px;
}

.dashcard-activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 5px;
}

.dashcard-activity-body {
  width: 95%;
  height: fit-content;
  padding: 2rem 1rem 1rem 1rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: absolute;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-direction: column;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.dashcard-activity-author {
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  position: absolute;
}

.dashcard-activity-author img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 1);
}

.dashcard-activity-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.dashcard-activity-details p {
  font-size: 14px;
  font-weight: 600;
}

.dashcard-activity-details span {
  font-size: 12px;
}

.dashcard-activity-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashcard-activity-head h4 {
  font-weight: 600;
  text-decoration: underline;
  color: var(--main-color);
}

.dashcard-activity-head p {
  font-size: 14px;
}

.dashcard-activity-desc {
  font-size: 14px;
}

.dashcard-activity-text {
 display: flex;
 flex-direction: column;
 gap: 10px;
 align-items: center;
}

.dashcard-activity-desc {
    text-align: center;
}

.ua-load-more {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  width: fit-content;
  padding: 1rem 1.5rem;
  align-self: center;
}

.dash-stars i {
    color: gold;
}

.login-clicker {
  border-radius: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: 90px;
  height: 40px;
  background: var(--main-color);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.login-clicker span {
  font-size: 14px;
}

.login-clicker i {
  font-size: 14px;
  transform: translateY(1.5px);
}

.profile-initial {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-overlay {
  display: none;
  z-index: 999999;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.flag-wrapper {
  width: 350px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 2rem;
}

.flag-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.flag-form input,
.flag-form textarea {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

.flag-form button {
  background-color: var(--main-color);
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
}

.flag-form-close {
  background-color: var(--main-color);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  right: 1rem;
}

.flag-form h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

#share-overlay {
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.ticket-slider-container {
  position: relative;
  width: 350px;
  height: 550px;
}

.ticket-card {
  background: #eaeaea;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 550px;
  justify-content: space-between;
  overflow: hidden;
  position: absolute;
  width: 350px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ticket-card.active {
  z-index: 100;
  transform: translateX(0px) scale(1);
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.ticket-card.prev {
  z-index: 90;
  transform: translateX(-20px) scale(0.95);
  opacity: 0.7;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.ticket-card.next {
  z-index: 90;
  transform: translateX(20px) scale(0.95);
  opacity: 0.7;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.ticket-card.hidden {
  z-index: 80;
  transform: translateX(0px) scale(0.9);
  opacity: 0;
}

@media (max-width: 640px) {
  #share-overlay {
    padding: 0 16px;
  }

  .ticket-slider-container {
    width: 100%;
    max-width: 350px;
  }

  .ticket-card {
    width: 100%;
  }
}

.ticket-share {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
}

.purchase-common {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-share-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

.booking-button {
  display: flex;
  gap: 5px;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 0px;
  border-radius: 48px 0 0 48px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 7px 7px 7px 14px;
  background-color: #fff;
  border-radius: 2px solid rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.share-event-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  filter: brightness(0.5);
  object-fit: cover;
}

.booking-button img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  cursor: pointer;
}

.ticket-share-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ticket-share-text h4 {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.ticket-share-text p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.barcode {
  width: 77%;
  height: 250px;
  position: relative;
  padding: 20px 0;
  background: #fff;
}

.barcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  pointer-events: none;
}

.ticket-navigation button {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.ticket-navigation button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: scale(1);
}

.ticket-navigation button:nth-child(1) {
  transform: translateX(-20px);
}

.ticket-navigation button:nth-child(2) {
  transform: translateX(20px);
}

.ticket-navigation button:disabled:nth-child(1) {
  transform: translateX(-20px);
}

.ticket-navigation button:disabled:nth-child(2) {
  transform: translateX(20px);
}

@media (max-width: 640px) {
  .ticket-navigation button:nth-child(1) {
    transform: translateX(-10px);
  }

  .ticket-navigation button:nth-child(2) {
    transform: translateX(10px);
  }

  .ticket-navigation button:disabled:nth-child(1) {
    transform: translateX(-10px);
  }

  .ticket-navigation button:disabled:nth-child(2) {
    transform: translateX(10px);
  }
}

.ticket-navigation button i {
  font-size: 14px;
}

.purchase-agenda-slider {
  display: flex;
  width: 100%;
  overflow: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
}

.purchase-agenda-slider::-webkit-scrollbar {
  display: none;
}

.agenda-dashcard {
  min-width: 100px;
  max-width: 100px;
  padding: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.agenda-dc-img {
  width: 100%;
  height: 50px;
}

.agenda-dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.agenda-dc-content {
  display: flex;
  flex-direction: column;
  padding: 0 2px;
}

.agenda-dc-content h4 {
  font-size: 10px;
}

.agenda-dc-content p {
  font-size: 8px;
  color: #666;
}

.booking-item {
  background: #fff;
  padding: 20px;
  display: grid;
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
}

.booking-stamp {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-stamp span {
  color: var(--main-color);
  font-weight: 700;
  font-size: 10px;
}

.booking-stamp p {
  font-size: 12px;
}

.entry-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #eaeaea;
}

.entry-container {
  width: 400px;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 500px) {
   .entry-container {
     width: 100%;
   }
}

.entry-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom-style: dashed;
}

.entry-head::before, .entry-head::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eaeaea;
  position: absolute;
  top: -15px;
}

.entry-head::after {
  left: -15px;
}

.entry-head::before {
  right: -15px;
}

.entry-head h4 {
  font-weight: 600;
  font-size: 18px;
}

.entry-head img {
  width: 100%;
  height: 125px;
  border-radius: 8px;
  object-fit: cover;
}

.entry-body {
  padding: 1rem 1.5rem;
  width: 100%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom-style: dashed;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entry-buttons {
  width: 100%;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
}

.entry-buttons button {
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.entry-buttons button:nth-child(1) {
  background-color: red;
}

.entry-buttons button:nth-child(2) {
  background-color: green;
}

.entry-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.entry-stamp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.entry-stamp span {
  font-size: 12px;
  font-weight: 600;
}

.entry-detail p {
  font-size: 12px;
}

.two-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.two-entry .entry-detail {
  flex: 1;
}

.entry-buttons::before, .entry-buttons::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eaeaea;
  position: absolute;
  bottom: -15px;
}

.entry-buttons::after {
  left: -15px;
}

.entry-buttons::before {
  right: -15px;
}

.dashboard-event {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-event-slider {
    width: calc(100vw - 400px);
}

@media (max-width:900px) {
    .dashboard-event-slider {
        width: 100%;
    }
}

.event-dashcard {
  min-width: 350px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 300px;
  border: 2px solid rgba(0,0,0,0.1);
}

.event-dash-img {
  height: 100%;
  width: 100%;
  position: absolute;

}

.event-dash-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.event-dash-body {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-dash-head {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.organizers-row img:nth-child(2) {
    transform: translateX(-10px);
}

.event-dash-span {
    background: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 48px;
    padding: 7px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-dash-span p {
    font-size: 12px;
}

.event-dash-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.event-dash-stamps {
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-dash-stamp {
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;
}

.event-dash-stamp p {
    color: black;
    font-size: 12px;
}

.event-dash-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.event-date-day {
    font-size: 24px;
    font-weight: 800;
}

.event-date-month {
    font-size: 12px;
}

.event-date-year {
    font-size: 10px;
}

.event-dash-stamp i {
    color: var(--main-color);
}

.event-dash-text h4 {
    font-weight: bolder;
    color: black;
    font-size: 18px;
}

.event-dash-button i {
    transform: translateY(2px);
}

.event-stamp-img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.event-dash-text h5 {
    color: black;
    font-size: 12px;
    font-weight: 400;
}

.fees-popup, .total-fees-popup {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 100000000;
  top: 0;
  left: 0;
}

.fees-container, .total-fees-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 300px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.fees-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fees-header h3 {
  font-size: 15px;
  font-weight: 800;
}

.fees-header button {
  position: absolute;
  top: -1rem;
  right: 1rem;
  background-color: var(--main-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.fees-header button i {
  color: #fff;
  font-size: 12px;
}

.fees-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.fee-item.total {
  color: blue;
}

.fee-item.paid {
    color: green;
}

.fee-item.balance {
    color: var(--main-color);
    margin-top: 1rem;
}

.organizer-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #fff;
}

.not-found-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
}

.not-found-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.not-found-box {
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 2rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.not-found-box h3 {
  font-size: 10rem;
  line-height: 1;
}

.not-found-box h2 {
  font-size: 5rem;
  text-align: center;
  line-height: 1;
}

.not-found-box p {
  width: 400px;
  text-align: center;
}

.not-found-box button {
  background-color: #fff;
  padding: 15px;
  border-radius: 3rem;
}

@media (max-width: 550px) {

  .not-found-box {
    padding: 1.5rem;
  }

  .not-found-box p {
    width: 100%;
  }

  .not-found-box h2 {
    font-size: 3rem;
  }
}

.posting-summary, .posting-checkout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  padding: 1.5rem;
}

.pc-box {
  background-color: #fff;
  width: 450px;
  min-height: 550px;
  border-radius: 1rem;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
  rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.pc-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.pc-title h4 {
  font-weight: 600;
  font-size: 20px;
}

.pc-title p {
  font-size: 14px;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.pc-stamps {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 5px;
}

.last-stamp {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin-top: 10px;
  padding-top: 10px;
  color: var(--main-color);
}

.pc-stamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-stamp p {
  width: 200px;
  text-align: right;
}

.close-popup-posting, .close-checkout-posting {
  position: absolute;
  background-color: var(--main-color);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -1rem;
  right: 2rem;
}

.close-popup-posting i {
  font-size: 14px;
}

.ps-button {
  width: 100%;
  padding: 10px;
  background-color: var(--main-color);
  border-radius: 3rem;
}

.ps-button a {
  color: #fff;
}

.pc-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.pc-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #ffc33a;
}

.pc-button span {
  color: #fff;
}

.pc-button:nth-child(1) img {
  width: 50px;
  height: 25px;
  object-fit: cover;
  transform: translate(3px, 2px);
}

.pc-button:nth-child(2) img {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

@media (max-width: 500px) {
  .pc-box {
    width: 100%;
  }

  .pc-stamp p {
    font-size: 12px;
  }
}

    .alert-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .alert-box {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
      max-height: 80vh;
      overflow-y: auto;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .alert-box h2 {
      margin: 0;
      font-size: 24px;
      color: #333;
    }
    .alert-box ul {
      list-style-type: disc;
      padding-left: 20px;
      margin: 15px 0;
      text-align: left;
    }

    .alert-box li {
      font-size: 16px;
      color: #444;
      margin-bottom: 10px;
      line-height: 1.5;
      padding-left: 5px;
    }

    .alert-box li:hover {
      color: #ca3064;
      cursor: pointer;
    }
    .alert-box p {
      font-size: 16px;
      color: #666;
    }

    .alert-btn {
      margin-top: 20px;
      padding: 10px 20px;
      background: linear-gradient(to right, #ca3064, #ec719b);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .alert-btn:hover {
      background-color: #45a049;
    }

    .contact-wrapper {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      margin-top: 10px;
    }

    .contact-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: relative;
      width: 100%;
    }

    .contact-box {
      display: flex;
      gap: 2rem;
    }

    .contact-left,
    .contact-right {
      flex: 1;
    }

    .contact-intro {
      width: 100%;
      height: 300px;
      border-radius: 12px;
      position: relative;
      background: #2e2e2e;
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .contact-intro::before {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      background-color: var(--main-color);
      left: -90px;
      bottom: -90px;
      border-radius: 50%;
    }

    .contact-intro::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      background-color: var(--main-color);
      right: -90px;
      top: -90px;
      border-radius: 50%;
    }

    .contact-intro-detail {
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-left: 4rem;
    }

    .contact-intro-detail h4 {
      font-size: 28px;
      font-weight: 1000;
    }

    .contact-intro-detail p {
      font-size: 14px;
    }

    .contact-form {
      background-color: #fff;
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
      display: flex;
      flex-direction: column;
      padding: 3rem;
      gap: 3rem;
      border-radius: 8px;
      width: 650px;
      position: absolute;
      top: 20%;
      right: 1rem;
    }

    .contact-title {
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: center;
    }

    .contact-title h4 {
      font-weight: 600;
      font-size: 20px;
    }

    .contact-title p {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-divider {
      display: flex;
      gap: 1rem;
    }

    .contact-input {
      display: flex;
      gap: 10px;
      flex: 1;
      flex-direction: column;
    }

    .contact-input label {
      transform: translateX(2px);
    }

    .contact-input input,
    .contact-input textarea {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.15);
      padding: 15px;
      border-radius: 8px;
    }

    .contact-button {
      background-color: var(--main-color);
      padding: 10px 15px;
      border-radius: 5px;
      color: #fff;
      display: flex;
      width: fit-content;
      gap: 10px;
      align-items: center;
    }

    .contact-button i {
      font-size: 14px;
      transition: 0.5s ease;
    }

    .contact-button:hover i {
      transform: translateX(5px);
    }

    .contact-left {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-div {
      display: flex;
      gap: 1rem;
    }

    .contact-stamp {
      display: flex;
      gap: 10px;
      flex-direction: column;
    }

    .contact-stamp h5 {
      font-size: 18px;
      font-weight: 400;
    }

    .contact-stamp p {
      color: rgba(0, 0, 0, 0.75);
    }

    .contact-div i {
      color: var(--main-color);
      transform: translateY(5px);
    }

    .contact-detail {
      margin-bottom: 1rem;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .contact-detail p {
      font-size: 13px;
      width: 300px;
    }

    .contact-detail h4 {
      font-size: 20px;
      font-weight: 600;
    }

    .contact-map {
      width: 100%;
      border-radius: 1rem;
      border: 1px solid rgba(0, 0, 0, 0.5);
      height: 400px;
    }

    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      align-items: center;
    }

    .faqs {
      display: flex;
      flex-direction: column;
      width: 900px;
    }

    .faq-title {
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: center;
    }

    .faq-title h4 {
      font-size: 20px;
      font-weight: 600;
    }

    .faq-box {
      display: flex;
      flex-direction: column;
    }

    .faq-stamp {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-block {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      gap: 10px;
      cursor: pointer;
    }

    .faq-block.active {
      background: #fafafa;
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .faq-block h4 {
      font-weight: 500;
    }

    .faq-text p {
      color: rgba(0, 0, 0, 0.5);
      width: 400px;
    }

    @media (max-width:1100px) {
      .faqs {
          width: 100%;
      }

      .contact-form {
        width: 400px;
        padding: 3rem 1.5rem;
      }
    }

    @media (max-width:800px) {
      .contact-form {
        position: relative;
        top: unset;
        right: unset;
        width: 100%;
        padding: 3rem 1rem;
      }

      .contact-divider {
        gap: 5px;
      }
      .contact-box {
        flex-direction: column;
      }
    }

    @media (max-width:600px) {
      .faq-text p {
        width: 90%;
      }
    }

    .flag-icon i.bi-flag-fill {
      color: #D33753;
    }

@media (max-width: 778px) {

    .logo {
        width: 120px;
        height: 35px;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .beta-logo {
        width: 40px;
        transform: translateY(-5px);
    }

    .last {
        justify-content: center;
    }

    .nav-container {
        width: 100%;
        position: fixed;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        background: #fff;
        top: -100%;
        transition: 0.25s ease;
        left: 0;
        border-radius: 0 0 2rem 2rem;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        padding: 1rem 1.5rem 2rem 1.5rem;
    }

    .map-btn {
        width: 100%;
        border-bottom: unset;
        padding: 15px;
        border-radius: 3rem;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .last-sticky-box {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 999;
        background: #fff;
        padding: 20px 0 15px 0;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        justify-content: center;
        border-radius: 1.5rem 1.5rem 0 0;
    }

    .mailbox, .user-menu {
        bottom: 110%;
        top: unset;
        right: 1rem;
    }

    .empty-message i {
       font-size: 25px;
    }

    .explore-btn {
        display: flex;
    }

    .search-start-wrapper {
        display: block;
    }

    .nav-hider {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .nav-container.active {
      top: 0;
    }
}


.explore-btn li i {
    font-size: 25px;
}

@media (max-width:778px) {
    .services-container {
        padding: 0.5rem var(--padding-md) 0rem var(--padding-md);
    }

    .services-container button {
        display: none;
    }

    .services-slider {
        padding: 0;
        overflow: auto;
    }

    .services-slider::-webkit-scrollbar {
      display: none;
    }
}

@media (max-width:640px) {
    .services-container {
        padding: 0.5rem var(--padding-sm) 0rem var(--padding-sm);
    }
}

.detect-box {
    background: #EFEFEF;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.detect-box i {
    color: var(--main-color);
    font-size: 20px;
}

.detect-stamp {
    display: flex;
    flex-direction: column;
}

.detect-stamp h5 {
    font-weight: 700;
    color: var(--main-color);
}

.detect-stamp p {
    font-size: 12px;
}

.card-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.card-row-list {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.row-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.row-item-list {
    display: flex;
}

.main-card-title {
    font-size: 14px;
}

.ph-money, .ph-gauge {
    transform: translateY(1px);
}

.row-item i {
    font-size: 14px;
    color: var(--main-color);
}

.row-item span {
    color: rgba(0,0,0,0.5);
}

.ribbon-card {
  font-size: 14px;
  color: #fff;
}

.ribbon-card {
  --f: .75em;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 2;
  padding-inline: 1lh;
  padding-top: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(
    100% var(--f), 100% 0, calc(100% - var(--f)) var(--f), var(--f) var(--f),
    0 0, 0 var(--f), 999px calc(var(--f) + 999px), calc(100% - 999px) calc(var(--f) + 999px)
  );
  transform: translate(calc((1 - cos(45deg)) * 100%), 100%) rotate(-45deg);
  transform-origin: 0% 0%;
  background-color: var(--main-color);
  color:white;
}

.posted-date-card {
    display: flex;
    align-items: center;
    gap: 5px;
}

.posted-date-card span {
    color: #000;
}

.posted-date-card p {
    color: rgba(0,0,0,0.7);
}

.row-item .ph-eye {
    color: blue;
}

.row-item .ri-star-fill {
    color: gold;
}

.card-row-items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-row-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-bullet {
    background: #000;
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.card-row-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-row-title img {
    width: 17px;
    height: 17px;
}

.dynamic-info-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.card-info-icon {
  width: 22px;
  height: 22px;
  object-fit: cover;
}

.card-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.service-adder-description {
  font-size: 14px;
  color: #555;
  border-left: 4px solid var(--main-color);
  padding-left: 10px;
  background-color: #fff6f7;
  border-radius: 6px;
  padding: 8px 12px;
  width: fit-content;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .card-info-title {
    font-size: 16px;
  }

  .service-adder-description {
    font-size: 12px;
  }
}

.optimize-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 48px 48px 0 0;
    background: #fefefe;
    border-top: 2px solid #fff6f7;
    padding: 80px 24px;
    margin-top: 32px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.optimize-content-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.optimize-content-text {
    text-align: center;
    width: 900px;
    z-index: 99;
}

.optimize-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

@media (max-width: 1024px) {
  .optimize-content-text {
    font-size: 14px;
    width: 650px;
  }
}

@media (max-width: 768px) {
  .optimize-content-text {
    font-size: 14px;
    width: 100%;
  }
}

.illustration {
    width: 250px;
    height: 100px;
    object-fit: cover;
    position: absolute;
}

.top-illustration {
    transform: rotate(180deg);
    right: -50px;
    top: 0;
}

.bottom-illustration {
    left: -50px;
    bottom: 0;
}