@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; 
  --default-color: #212529; 
  --heading-color: #212529; 
  --accent-color: #0d42ff; 
  --surface-color: #212529; 
  --contrast-color: #212529; 
  --icon-color: #0020c7;
  --yellow: #FFBD13;
  --blue: #4383FF;
  --blue-d-1: #3278FF;
  --light: #F5F5F5;
  --grey: #AAA;
  --white: #FFF;
  --shadow: 8px 8px 30px rgba(0,0,0,.05);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);  
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #0d42ff; 
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 1);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
  border-radius: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


.scrolled .header {
  padding: 10px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header {
  --background-color: rgba(255, 255, 255, 1);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 20px;
  }

}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.container-fluid.d-flex{
  flex-flow: row wrap;
}
.form-search{
  width: 100%;
}
.empty-header{
  height: 126px;
  padding: 0;
  margin: 0;
}
.see-all-row{
  flex-flow: row;
}
.see-all-left{
  min-width: 500px;
}
.see-all-right {
    min-width: 100px;
}
.service-item .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #f7f7f7;
    font-size: 30px;
    margin: 0 auto;
  border-radius: 8px;
    color: var(--icon-color);
}
.page-template-viewall .service-item .icon {
    width: 100px;
    height: 100px;
  }

.service-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}
.service-item a{
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.service-item h4{
  text-align: center;
  font-size: .85rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.see-all{
  background-color: #ffe800;
  color: #000000;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.bottom-menu{
  padding: 0;
  margin: 0;
  background: #e7ad00;
}
.bottom-menu ul{
  padding: 10px;
  margin: 0 auto;
  max-width: 500px;
  justify-content: space-between;
}
.bottom-menu ul li{
  list-style: none;
}
.bottom-menu ul li a{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #000000;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: .85rem;
}
.bottom-menu ul li a i{
  font-size: 24px;
  color: #000000;
}
.location{
  padding: 0;
  margin: 0;
}
.location li{
  list-style: none;
}
.services-item .card{
  border-radius: 8px;
  border: 1px solid #ddd;
}
.services-item .card-img{
  position: relative;
}
.services-item span.featured {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #ffff00;
    padding: 2px 7px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #585858;
}
.services-item  span.heart-react {
    width: 34px;
    height: 34px;
    border-radius: 50px;
    background: #f7f7f7;
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: inherit;
}
.services-item  span.heart-react i{
  line-height: 1;
}
.card-content{
  padding: 10px;
}
.card-content h3{
  font-size: 18px;
}
.card-content p, .card-content ul li{
  color: #002f34a3;
  font-size: 14px;
}

.empty-footer{
  height: 80px;
  padding: 0;
  margin: 0;
}
.addtostory {
    min-width: 170px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-all-section .services-item .card {
    display: flex;
    flex-flow: row;
    align-items: center;
	overflow: hidden;
}
.view-all-section .services-item .card-img{
  width: 40%;
}
.view-all-section .services-item .card-content{
  width: 60%;
  position: relative;
}
.view-all-section .services-item .card-content span.date {
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: #002f34a3;
    font-size: 14px;
}


.modal.show .modal-dialog {
    transform: none;
    padding: 0;
    width: 100%;
    left: 0;
    margin: 0 auto;
}
.modal-content {
    border-radius: 0;
    border: 0;
}

.image-slider {
  overflow: hidden;
  position: relative;
}
.image-slider .counter {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    color: #fff;
    font-size: 14px;
}
.image-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
}
.image-slider .owl-dots button {
    background: transparent !important;
    width: 10px;
    height: 10px;
    display: block;
    position: relative;
    opacity: 1;
    border-radius: 8px;
    border: 2px solid #fff;
}
.image-slider .owl-dots button:hover, .image-slider .owl-dots button.active{
  border-color: #fff;
  background: #fff !important;
}

.product-desc .card-content {
    position: relative;
    padding: 15px 0;
}
.product-desc .card-content span.heart-react {
    position: absolute;
    right: 0;
}
.product-desc .card-content span.date {
    position: absolute;
    right: 0;
    bottom: 13px;
}
.card-content h4 {
    font-size: 20px;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(255 255 255 / 5%);
}
.table-striped>tbody>tr:nth-of-type(odd)>*{
  background: #fff;
}

th {
    color: #002f34a3;
    font-size: 14px;
    font-weight: 500;
}
td{
    color: #002f34a3 !important;
    font-size: 14px;
}
.modal-header .btn-close, .modal-header a {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff !important;
    background: transparent !important;
    opacity: 1 !important;
    z-index: 9;
    cursor: pointer;
    font-size: 24px;
}
.modal .modal-header {
    width: 100%;
    position: sticky;
    background: transparent;
    top: 0;
    margin-bottom: -80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    border-radius: 0;
    border: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.7819502801120448) 25%, rgba(255,255,255,0) 100%);
}
.description-table span {
    color: #002f34a3 !important;
    font-size: 14px;
}

.login-section .logo-wrap {
    display: flex;
    background: #f7f7f7;
    align-items: center;
    justify-content: center;
    height: 50vh;
    width: 100%;
}
.main-login {
    background: #c79500;
    padding: 20px;
    height: 50vh;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.main-login p, .main-login p a{
  color: #fff;
  margin: 0;
  font-size: 14px;
}
.main-login p a{
  text-decoration: underline;
  color: #ffff00;
}
.main-login input[type="number"]{
  padding-left: 40px;
}
.form-group{
  width: 100%;
  position: relative;
}
.login-form .form-group span {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 27px;
}

span.total-ratting {
    position: absolute;
    bottom: 15px;
    left: 10px;
    padding: 5px 13px;
    background: #fff;
    margin: 0 !important;
    border-radius: 8px;
}
span.total-ratting p{
  margin: 0;
  padding: 0;
  line-height: 1;
}
video{
  width: 100%;
  height: auto;
}
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 120px;
    overflow: hidden;
    padding: 0;
    margin-top: -80px;
    margin-left: 25px;
    border: 4px solid #fff;
}
.profile-pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content.full{
  padding: 0;
}


ul.tag-list {
    flex-flow: row wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    margin-top: 15px;
}

ul.tag-list li{
  list-style: none;
}
ul.tag-list li a{
  background: #0d6efd;
  color: #fff;
  padding: 2px 15px;
  border-radius: 8px;
  display: flex;
  height: 33px;
  align-items: center;
  justify-content: center;
}

/* 16.01.2025 Start */
.page-template-login-page header, .page-template-login-page .fixed-bottom, .page-template-login-page .empty-header, .page-template-login-page .empty-footer {
    display: none !important;
}
.page-template-product-temp header, .page-template-product-temp .empty-header, .page-template-viewall .empty-header, .page-template-viewall header{
    display: none !important;
}
.page-template-my-add header, .page-template-my-add .empty-header, .page-template-my-account .empty-header, .page-template-my-account header {
	display: none !important;
}
.page-id-971 header {
    display: none !important;
}
.page-template-profiles-temp header, .page-template-profiles-temp .empty-header, .page-template-profiles-temp .empty-header, .page-template-profiles-temp header {
	display: none !important;
}
.page-template-my-sell header, .page-template-my-sell .empty-header, .page-template-my-sell .empty-header, .page-template-my-sell header {
	display: none !important;
}
.single-worker_profile header, .single-worker_profile .empty-header, .single-worker_profile .empty-header, .single-worker_profile header {
  display: none !important;
}
.page-template-allposts header {
  display: none !important;
}
.chat-item{
	position: relative;
}
.chat-item span.notification {
    position: absolute;
    top: 6px;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    right: 10px;
    background: #e7ad00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-template-my-chat header, .page-template-my-chat .empty-header {
  display: none !important;
}
.page-template-my-enquiry header, .page-template-my-enquiry .empty-header {
  display: none !important;
}
.page-template-call-request header, .page-template-call-request .empty-header {
  display: none !important;
}

.login-section .logo-wrap img {
    max-width: 180px;
}
.main-login .auth-container {
    max-width: 600px;
  width: 100%;
}
.auth-form .form-control {
    padding-left: 40px;
    height: 47px;
    border: 0;
    border-bottom: 1px solid #e34cf4;
    border-radius: 0;
}
.auth-form .form-group{
  width: 100%;
  position: relative;
}
.auth-form .form-group span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 25px;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 27px;
  color: #ed2a91;
}
.auth-form form {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

button {
    min-width: 160px;
}
.auth-container h3{
  margin-bottom: 20px;
}




.new-login-section {
    height: 100vh;
    display: flex;
    align-items: center;
}
.new-login-section .auth-container {
    padding: 50px;
}
.login-left-column {
  min-height: 750px;
  max-height: 800px;
    background-size: cover !important;
    background-position: center center !important;
  display: flex;
    align-items: center;
    justify-content: center;
  position: relative;
}
.login-right-column {
    background: #fff;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.login-row {
    border-radius: 40px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 14px -1px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 0px 14px -1px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 0px 14px -1px rgba(0, 0, 0, 0.47);
}
.welcome-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.welcome-title h1 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.site-url {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    bottom: 20px;
  width: fit-content;
}
.auth-container h2{
  margin-bottom: 50px;
  font-weight: 600
}
.auth-container h2 span{
  color: #ed2a91;
}
.auth-container h2 span.hello{
  font-weight: 400;
}
.auth-container button.btn {
    background: rgb(43, 171, 226);
    background: linear-gradient(90deg, rgba(43, 171, 226, 1) 0%, rgba(231, 15, 141, 1) 100%);
    font-size: 20px;
    border: 0;
}

section.new-login-section {
    background: rgb(229, 76, 244);
    background: linear-gradient(90deg, rgba(229, 76, 244, 1) 0%, rgba(135, 75, 235, 1) 100%);
}
.mobile-membur-login, .for-mobile-only{
  display: none;  
}



.location-header{
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-header p{
  margin: 0 !important;
  padding: 0 !important;
  min-width: 170px;
}
ul.location {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 9px;
}
.form-search button.btn {
    width: 80px !important;
    margin: 0;
    padding: 0 !important;
    height: 40px;
  min-width: 60px !important;
}
.header-button-wrapper .btn-header, button.btn.btn-primary{
  min-width: 100px;
  height: 40px;
}
.header-button-wrapper {
    gap: 10px;
}
div#location_dropdown_menu {
    position: absolute;
    width: 100%;
    background: #fff;
    padding: 15px;
  width: 220px;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.43);
-moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.43);
box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.43);
}
div#location_dropdown_menu input{
  display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
div#location_dropdown_menu .btn{
  width: 100%;
  margin-bottom: 15px !important;
}
.page-template-viewall .col-10.see-all-left {
    width: 100%;
}
.page-template-viewall .service-item a {
    display: flex;
    flex-flow: column;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
}
.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cover-image {
    height: 450px;
    overflow: hidden;
}
button {
    min-width: unset;
}
.map-wrap iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: 0;
    outline: none;
}
.nav-tabs li.nav-item {
    border: 0;
}
ul#myTab {
    gap: 10px;
    margin-bottom: 20px;
    border: 0;
}
.nav-tabs .nav-link {
    border: 0;
  color: #212529;
    border-bottom: 2px solid #fff;
  background: #fcffb6;
    border-radius: 10px;
    white-space: nowrap;
}
.nav-tabs .nav-link.active{
  color: #000;
  border-bottom: 2px solid #e7ad00;
  background: #fcffb6;
    border-radius: 10px;
}
.services-item .card-img img {
    width: 100%;
}
.rating-verified{
  gap: 10px;
}
.rating-verified img {
    max-height: 50px;
}
.enter-prise {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.enter-prise h2{
  padding: 0;
  margin: 20px 0 0 0 ;
}
.enter-prise p{
  padding: 0;
  margin: 0;
}
.total-rating span {
    background: #0d6efd;
    padding: 7px 15px;
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.enter-prise ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.enter-prise ul li{
  list-style: none;
}
span.total-rating {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #000000;
    background: #ffff00;
    padding: 5px 15px;
    border-radius: 8px;
}
span.total-rating p {
    padding: 0;
    margin: 0;
}
span.date {
    position: absolute;
    right: 15px;
    bottom: 4px;
}
.single-page-post{
  padding-top: 0 !important;
}

.page-template-viewall .see-all-left {
    min-width: unset;
}

/* Rating Start */
.wrapper {
  background: var(--white);
  padding: 2rem;
  max-width: 576px;
  width: 100%;
  border-radius: .75rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.rating {
  display: flex;
  color: #e7ad00;
  justify-content: center;
  align-items: center;
  grid-gap: .5rem;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 2rem;
}
.rating .star {
  cursor: pointer;
}
.rating .star.active {
  color: #e7ad00;
  opacity: 0;
  animation: animate .5s calc(var(--i) * .1s) ease-in-out forwards;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.rating .star:hover {
  transform: scale(1.1);
}
textarea {
  width: 100%;
  background: var(--light);
  padding: 1rem;
  border-radius: .5rem;
  border: none;
  outline: none;
  resize: none;
  margin-bottom: .5rem;
}
.btn-group {
  display: flex;
  grid-gap: .5rem;
  align-items: center;
}
.btn-group .btn {
  padding: .75rem 1rem;
  border-radius: .5rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
}
.btn-group .btn.submit {
  background: var(--blue);
  color: var(--white);
}
.btn-group .btn.submit:hover {
  background: var(--blue-d-1);
}
.btn-group .btn.cancel {
  background: var(--white);
  color: var(--blue);
}
.btn-group .btn.cancel:hover {
  background: var(--light);
}
textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.total-rating{
  color: var(--yellow);
}
.review-item{
  border-radius: 8px;
    border: 1px solid #ddd;
    padding: 15px;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.13);
-moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.13);
box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.13);
}



/* Rationg End */


.profile-header { 
    display: flex;
	gap: 10px;
}
.profile-header .profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}
.profile-header h5, .profile-header p{
  padding: 0;
  margin: 0;
}
.post-footer {
    padding: 10px;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.post-footer ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.post-footer ul li{
  list-style: none;
	font-size: 12px;
}
.post-footer ul li i{
  font-size: 24px;
  color: #0d6efd;
}
ul.post-footer-top-list li i {
    color: #ffbf00;
}
.post-footer ul li a{
  padding-left: 0;
  padding-right: 0;
  display: flex;
  gap: 7px;
  font-size: 12px;
	align-items: center;
}
.post-image img {
    margin: 0 auto;
    display: block;
}
.facebook-poxt-header, .facebook-post-header {
    padding: 15px;
}
.page-template-allposts .header {
    border-bottom: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 11%);
}
.fb-user-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    gap: 10px;
}
.fb-user-item .fb-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0;
	display: block;
}
.fb-user-item span.fb-user-name {
    width: calc(100% - 164px);
    display: block;
}
.fb-user-item button.fb-follow {
    width: 100px;
    padding: 5px 10px;
}
.facebook-poxt-header .post-description {
    padding: 15px 0 0;
	font-size: 14px;
}
.facebook-poxt-header p{
	font-size: 14px;
}
.profile-header h5{
    font-size: 1rem;
}

.rating-content-box .image-wrap img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.rating-content-box .image-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.all-post-section .post-image img {
  width: 100%;
}
.form-search {
    margin: 0;
}
.form-control {
    margin: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
}
.post-slider .close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: #000;
    width: 30px;
    height: 30px;
    line-height: 1;
    text-align: center;
    z-index: 999;
    border-radius: 50%;
}
iframe {
    width: 100%;
    height: 400px;
    border: none;
}
.poster-wrap {
    overflow: hidden;
    border-radius: 15px;
}
.poster-wrap .profile-image {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.poster-wrap h4 {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    background: #00000045;
    margin: 0;
    border-radius: 0 0 15px 15px;
}



.form-message {
    display: none;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
}

.form-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.form-message.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}



/*myAdd*/
/* Popup Overlay */
#story-popup-overlay {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

/* Popup Container */
#story-popup-container {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.story-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.story-popup-close:hover {
    color: #ff4d4d;
}

/* Popup Heading */
#story-popup-container h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

/* Buttons Container */
#story-button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* Yes/No Buttons */
#story-button-container button {
    padding: 12px 20px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

#story-button-container button:hover {
    background: #0056b3;
}

/* Business Details Section */
#story-popup-details {
    margin-top: 15px;
    display: none;
}

/* Textarea */
#story-popup-details textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    min-height: 80px;
    font-size: 14px;
    outline: none;
}

/* Video URL Input */
#story-popup-details input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
}

/* Submit Button */
#story-submit {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
    width: 100%;
}

#story-submit:hover {
    background: #218838;
}

.location-header_ p {
    width: 314px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #000a97;
}
.logo p{
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #000a97;
}
.page-template-allposts .header .logo {
    line-height: 1;
    gap: 15px;
}

.header .logo img {
    max-height: 80px;
    margin-right: 8px;
    border-radius: 8px;
}

.frainds-section .profile-header {
    align-items: center;
    gap: 22px;
}
.frainds-section .profile-desc {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.frainds-section .profile-header .profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
}
span#get-location-btn {
    position: relative;
    background: #0d6efd;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
}
.page-template-my-sell .sell-form-wrapper .location-details .form-control, .page-template-my-sell .sell-form-wrapper .location-details .form-control:focus {
    padding: 10px;
	border: 1px solid #ddd !important;
}
.sell-form p{
    margin-bottom: 0;
    padding: 7px 10px;
	border: 1px solid #ddd !important;
}
.select2-results span img {
    width: 67px !important;
    height: auto !important;
}
.select2-selection__rendered span img {
    width: 50px !important;
    height: 50px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #1877f2 !important;
    border: 1px solid #1877f2 !important;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
    color: #fff !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff !important;
	font-size: 20px !important
}
.sell-row {
    position: relative;
    border: 1px solid #ddd;
    padding: 10px;
	background: rgb(241 241 241 / 21%);
}
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}
.sell-form span.edit {
    position: absolute;
    right: 12px;
    top: 7px !important;
    color: #1877f2;
}
.sell-form-wrapper .form-control, .sell-form-wrapper .form-control:focus, .sell-form-wrapper textarea, .sell-form-wrapper textarea:focus {
    outline: 0;
    box-shadow: none;
	background: transparent;
	border: 1px solid #ddd !important;
}
input[type="number"] {
  -webkit-appearance: none !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input spinner in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
.page-template-my-sell .sell-form-wrapper .form-control, .page-template-my-sell .sell-form-wrapper .form-control:focus {
    border: 1px solid #ddd !important;
}
/* Responsive Styling */
@media (max-width: 480px) {
    #story-popup-container {
        width: 95%;
        padding: 15px;
    }

    #story-button-container {
        flex-direction: column;
    }

    #story-button-container button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    #story-popup-details textarea {
        min-height: 70px;
        font-size: 13px;
    }

    #story-submit {
        padding: 14px;
        font-size: 15px;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


    /* Comment Popup Styling */

#comment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); /* Light background with slight transparency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}


/* Popup Content */
.popup-content {
    position: relative;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #ff0000;
}

/* Comments List */
#comment-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding-right: 10px;
}

/* Comment Item (Facebook Style) */
.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
}

/* Profile Image */
.comment-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Comment Content */
.comment-content {
    flex: 1;
    background: #f0f2f5;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 100%;
}

/* User Name */
.comment-content strong {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 2px;
}

/* Comment Text */
.comment-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Comment Form */
#comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Textarea */
#comment-text {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    resize: none;
    min-height: 50px;
    padding-left: 12px;
}

/* Submit Button */
#comment-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#comment-form button:hover {
    background: #0056b3;
}

label.file-label i {
      margin-right: 10px;
    }
        .cover-image {
            position: relative;
            width: 100%;
            height: 250px;
        }
        .cover-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .profile-pic {
      z-index: 99;
      position: relative;
      margin-left: 13px;
    }
        .profile-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .upload-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 5px;
        }
        .profile-upload-btn {
      position: absolute;
      bottom: 6px;
      right: 6px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 5px;
      cursor: pointer;
      border-radius: 50%;
      width: 30px;
      height: 30px;
    }
      
      .post-box {
            background: #fff;
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
        }
        .post-box textarea {
            width: 100%;
            height: 80px;
            border: none;
            resize: none;
            padding: 10px;
            font-size: 16px;
            border-radius: 5px;
            background: #f0f2f5;
        }
        .image-preview {
            width: 100%;
            margin-top: 10px;
            display: none;
            border-radius: 5px;
        }
        .buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            gap: 10px;
        }
        .file-label {
            background: #1877f2;
            color: #fff;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            white-space: nowrap;
        }
        .post-btn {
            background: #1877f2;
            color: #fff;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
        }
        input[type="file"] {
            display: none;
        }
   video {
            width: 100%;
            border-radius: 5px;
        }
  .media-preview {
            width: 100%;
            margin-top: 10px;
            display: none;
            border-radius: 5px;
        }


/*chat*/
.chat-container {
            display: flex;
            width: 100%;
            height: 80vh;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        .chat-sidebar {
            width: 30%;
            background: #f8f9fa;
            padding: 15px;
            border-right: 1px solid #ddd;
        }
        .sidebar-header h2 {
            margin: 0;
            padding: 10px 0;
            text-align: center;
        }
        .chat-list {
            list-style: none;
            padding: 0;
        }
        .chat-item {
            display: flex;
            align-items: center;
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
        }
        .chat-item:hover {
            background: #e9ecef;
        }
        .chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        .chat-details h4 {
            margin: 0;
            font-size: 16px;
        }
        .chat-details p {
            margin: 0;
            font-size: 12px;
            color: gray;
        }
        .chat-window {
            width: 70%;
            display: flex;
            flex-direction: column;
            background: #fff;
        }
        .chat-header {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #ddd;
            background: #f8f9fa;
        }
        .chat-messages {
			flex: 1;
			padding: 15px;
			overflow-y: auto;
			display: flex;
			flex-flow: column;
		}
        .message {
            max-width: 60%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 10px;
        }
        .received {
			background: #178feb;
			align-self: flex-start;
			color: #fff;
		}
        .sent {
            background: #178feb;
			align-self: flex-end;
			text-align: right;
			color: #fff;
        }
        .timestamp {
            display: block;
            font-size: 10px;
            color: #fff;
        }
        .chat-input {
            display: flex;
            padding: 10px;
            background: #f8f9fa;
            border-top: 1px solid #ddd;
        }
        .chat-input input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
            outline: none;
        }
        .chat-input button {
            padding: 10px 15px;
            margin-left: 10px;
            border: none;
            background: #25d366;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }



/* Comment Popup Styling */

#comment-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    display: none;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

/* Popup Content */
.popup-content {
    position: relative;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #ff0000;
}

/* Comments List */
#comment-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding-right: 10px;
}

/* Comment Item (Facebook Style) */
.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    flex-flow: row wrap;
}
.comment-item p{
  margin: 0;
  width: 100%;
  padding-left: 42px;
}
/* Profile Image */
.comment-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* Comment Content */
.comment-content {
    flex: 1;
    background: #f0f2f5;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 100%;
}

/* User Name */
.comment-content strong {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 2px;
}

/* Comment Text */
.comment-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Comment Form */
#comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Textarea */
#comment-text {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    resize: none;
    min-height: 50px;
    padding-left: 12px;
}

/* Submit Button */
#comment-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#comment-form button:hover {
    background: #0056b3;
}


/* Mobile Responsive */
@media (max-width: 480px) {
    
}
#location_dropdown_icon {
    display: flex;
    gap: 14px;
}

ul.al-post-header {
    padding: 0;
    margin: 0;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
}
ul.al-post-header li{
  list-style: none;
}
ul.al-post-header li a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid transparent;
  padding: 10px;
}
ul.al-post-header li a:hover, ul.al-post-header li.active a{
  border-bottom: 5px solid #e7ad00;
}
ul.al-post-header li a img{
  max-width: 30px;
  max-height: 30px;
}

ul.al-post-header .profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

ul.al-post-header .profile-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category_profile .card-img a {
    height: 193px;
    display: block;
}
.category_profile .card-img a img{
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto;
  height: auto !important;
  margin: 0 auto;
  display: block;
}


/*Responsive */
@media (max-width: 1440px) {
.login-left-column {
  min-height: 500px;
}
.new-login-section .container, .new-login-section .container-lg, .new-login-section .container-md, .new-login-section .container-sm {
    max-width: 900px;
}
}
@media (max-width: 1199px) {
.empty-header{
  height: 100px;
}
section, .section {
    padding: 40px 0;
}
.auth-container h2 {
    margin-bottom: 30px;
}
.auth-form .form-control {
    padding-left: 35px;
    height: 40px;
}
.auth-form .form-group span {
    top: 0px;
    font-size: 22px;
}
.new-login-section .auth-container {
    padding: 30px;
} 
.new-login-section .container, .new-login-section .container-lg, .new-login-section .container-md, .new-login-section .container-sm {
    max-width: 800px;
}
}

@media (max-width: 991px) {
.login-left-column {
    height: 54vh;
}
.auth-container h2 {
    margin-bottom: 30px;
}

.new-login-section .auth-container {
    padding: 30px;
} 
  

.login-left-column{
  display: none !important    
}
.new-login-section .login-right-column {
  background: rgb(43, 171, 226);
  background: linear-gradient(0deg, rgba(43, 171, 226, 1) 0%, rgba(231, 15, 141, 1) 100%);
  border-radius: 0px;
  height: 100vh;
} 
.auth-container h2, .auth-container h3, .new-login-section p{
  color: #fff;
  text-align:center;
}
.auth-container h3{
  margin-bottom: 20px;
}
.new-login-section p a{
  color: #f9c04a;
}
.new-login-section .auth-container h2 span {
    color: #ffe3f2;
}
.new-login-section .auth-container button.btn {
    background: #ffc107;
    background: linear-gradient(90deg, #f9c04a 0%, #f9c04a 100%);
    font-size: 20px;
    border: 0;
    color: #000;
  border-radius: 30px;
}
.new-login-section .auth-form .form-group span {
  top: 0px;
  font-size: 22px;
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
}
 .new-login-section .auth-form .form-control {
   padding-left: 50px;
   height: 40px;
   border-radius: 30px;
   background: rgb(0 0 0 / 36%);
   border-color: #ffffffb0;
   color: #fff !important;
   border: 1px solid #fff;
}
::-webkit-input-placeholder { 
  color: #fff !important;
}
::-moz-placeholder { 
  color: #fff !important;
}
:-ms-input-placeholder { 
  color: #fff !important;
}
:-moz-placeholder { 
  color: #fff !important;
}

	
	
.My-account-cus input::-webkit-input-placeholder { 
  color: #000 !important;
}
.My-account-cus input::-moz-placeholder { 
  color: #000 !important;
}
.My-account-cus input:-ms-input-placeholder { 
  color: #000 !important;
}
.My-account-cus input:-moz-placeholder { 
  color: #000!important;
}
	
	
.form-search input::-webkit-input-placeholder { 
  color: #000 !important;
}
.form-search input::-moz-placeholder { 
  color: #000 !important;
}
.form-search input:-ms-input-placeholder { 
  color: #000 !important;
}
.form-search input:-moz-placeholder { 
  color: #000 !important;
}

.wrapper textarea::-webkit-input-placeholder { 
  color: #000 !important;
}
.wrapper textarea::-moz-placeholder { 
  color: #000 !important;
}
.wrapper textarea:-ms-input-placeholder { 
  color: #000 !important;
}
.wrapper textarea:-moz-placeholder { 
  color: #000 !important;
}

.mobile-membur-login .profile {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 2px solid #f9f9f9;
    margin: 0 auto 20px auto;
}
.mobile-membur-login, .for-mobile-only{
  display: block; 
}
.mobile-none{
  display: none;
}
.login-row {
  border-radius: 0px;
}
.new-login-section p a.btn-transparent {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    width: 160px;
    margin-top: 12px;
} 
.wrapper textarea::-webkit-input-placeholder { 
  color: #000 !important;
}
.wrapper textarea::-moz-placeholder { 
  color: #000 !important;
}
.wrapper textarea:-ms-input-placeholder { 
  color: #000 !important;
}
	
.post-box textarea::-webkit-input-placeholder { 
  color: #000 !important;
}
.post-box textarea::-moz-placeholder { 
  color: #000 !important;
}
.post-box textarea:-ms-input-placeholder { 
  color: #000 !important;
}
	
.sell-form input::-webkit-input-placeholder { 
  color: #000 !important;
}
.sell-form input::-moz-placeholder { 
  color: #000 !important;
}
.sell-form input:-ms-input-placeholder { 
  color: #000 !important;
}
	
	
}


@media (max-width: 640px) {
.see-all-row{
  overflow: scroll;
}
.login-left-column {
    height: 48vh;
}
.login-row {
  border-radius: 00px;
}
.new-login-section {
    height: auto;
    padding: 0;
}
ul.location{
  width: 100%;  
}
.header .logo img {
    max-height: 50px;
    margin-right: 8px;
} 
ul.location li:first-child {
    height: 50px;
    margin-top: 0px;
    align-items: center;
    display: flex;
  }
.header ul.location li:first-child {
    height: 50px;
    margin-top: -50px;
    align-items: center;
    display: flex;
  } 
.location li:last-child{
  width: 100%
} 
div#location_dropdown_menu {
    position: absolute;
  top: 54%;
}
.service-item h4 {
    font-size: .65rem;
}
.page-template-home-page .card-content ul.location li:first-child{
  margin-top: 0;
}
.cover-image {
    height: 200px;
    overflow: hidden;
}
ul#myTab {
    overflow: scroll;
    display: flex;
    flex-flow: row;
    align-items: flex-start;
  padding-bottom: 10px;
}
}

@media (max-width: 480px) {
    #comment-popup {
        width: 95%;
        max-width: 350px;
    }

    .popup-content {
        padding: 10px;
    }

    .close-popup {
        font-size: 18px;
    }

    .comment-user-img {
        width: 35px;
        height: 35px;
    }

    .comment-content {
        padding: 6px 10px;
    }

    #comment-text {
        min-height: 45px;
    }

    #comment-form button {
        padding: 6px 10px;
        font-size: 14px;
    }
    #comment-popup {
        width: 95%;
        max-width: 350px;
    }

    .popup-content {
        padding: 10px;
    }

    .close-popup {
        font-size: 18px;
    }

    .comment-user-img {
        width: 35px;
        height: 35px;
    }

    .comment-content {
        padding: 6px 10px;
    }

    #comment-text {
        min-height: 45px;
    }

    #comment-form button {
        padding: 6px 10px;
        font-size: 14px;
    }
  .location-header_ p {
        width: 318px;
    }
  .total-rating span {
    padding: 4px 15px;
    font-size: 12px;
  }
  .poster-wrap h4 {
    font-size: 12px;
  }
.poster-wrap {
    height: 200px;
}
span.date {
    position: relative;
    right: inherit;
    bottom: auto;
}
.category_profile .card-content h4, .profile-view-row .card-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.col-3.service-item {
    width: 33.333%;
}
}

@media (max-width: 420px) {
.new-login-section .auth-container {
    padding: 30px 20px;
}
.location-header_ p {
    width: 316px;
  }
}
@media (max-width: 400px) {
.location-header_ p {
    width: 273px;
  }
}


@media (max-width: 370px) {
.location-header_ p {
    width: 210px;
  }
}

 .my-account-container { max-width: 400px; padding: 20px; border: 1px solid #ddd; background: #f9f9f9; border-radius: 8px; text-align: center; }
    .profile-img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 10px; }
    .logout-button { display: inline-block; margin-top: 10px; padding: 10px 15px; background: #e74c3c; color: #fff; text-decoration: none; border-radius: 5px; }
    .logout-button:hover { background: #c0392b; }
    form { margin-top: 10px; }
    input { width: 100%; padding: 8px; margin: 5px 0; border: 1px solid #ccc; border-radius: 4px; }
    button { width: 100%; padding: 8px; background: #3498db; color: white; border: none; border-radius: 4px; cursor: pointer; }
    button:hover { background: #2980b9; }
    /* 🔹 UNIQUE IMAGE MODAL STYLES */
.custom-image-modal {
    display: none; /* Ensure modal is hidden on load */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Remove any extra padding */
}

/* Ensure the image is full screen on mobile */
.custom-modal-content {
    width: 100vw;  /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    object-fit: contain; /* Ensures the image scales correctly */
}

/* Close button */
.custom-close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
.page-template-allposts section.empty-header {
    height: 200px;
}
/* 🔹 Responsive Design */
@media (min-width: 768px) {
    .custom-modal-content {
        max-width: 90%; /* Slightly smaller on desktops */
        max-height: 90vh;
    }
}
@media (max-width: 991px) {
.page-template-allposts section.empty-header {
    height: 200px;
}
span.notification {
    position: absolute;
    top: 10px;
    border-radius: 15px;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 900;
    right: 10px;
    background: #e7ad00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.24);
}
}

@media (max-width: 767px) {
.sell-form span.edit {
    top: -4px !important;
}
	.sell-row {
    position: relative;
    border: 1px solid #ddd;
    padding: 10px;
    background: rgb(241 241 241 / 21%);
    margin: 15px auto;
    width: 92%;
}

.chat-container {
    flex-flow: column;
    gap: 20px;
    height: auto;
}
.chat-sidebar {
    width: 100%;
  }
.chat-window {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.page-template-allposts section.empty-header {
    height: 140px;
}
}
@media (max-width: 390px) {
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    width: 100% !important;
}
}


/* Full-Screen Video Popup */
.reels-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    background: black; /* No transparent overlay */
    z-index: 9999;
}

/* Full-Screen Video Container */
.reels-video-popup .video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video Takes Full-Screen */
.reels-video-popup iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    z-index: 10000;
    background: black;
}

/* BIG Close Button - Top Right */
.reels-video-popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px 20px; /* Increased size */
    font-size: 28px; /* Larger font */
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    width: 55px; /* Bigger button */
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Close Button Hover Effect */
.reels-video-popup .close-btn:hover {
    background: rgba(255, 0, 0, 0.8); /* Red Hover Effect */
}

button#sendMessage {
    width: 48px;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 50%;
    margin-left: 10px;
}
#share-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}

.share-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  width: 90%;
  max-width: 320px;
  padding: 40px 24px 24px;
  border-radius: 16px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.share-popup h4 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #222;
}

.share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 16px;
}
.share-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.share-fb {
  background-color: #1877f2;
}
.share-wa {
  background-color: #25d366;
}
.share-tw {
  background-color: #1da1f2;
}

.share-more {
  background-color:yellow ;
}
.share-links a:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.share-links a i {
  font-size: 18px;
}




.share-close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 360px) {
  .share-popup {
    padding: 36px 16px 16px;
  }

  .share-popup h4 {
    font-size: 18px;
  }

  .share-links a {
    font-size: 14px;
    padding: 10px;
  }

 
}

.fb-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 9999; /* Ensures it's above all other elements */
}


        .fb-modal-content {
            background: white;
            width: 95%;
            max-width: 450px;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .fb-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #ddd;
            font-weight: bold;
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .fb-close {
            font-size: 22px;
            cursor: pointer;
        }

        .fb-tabs {
            display: flex;
            justify-content: space-around;
            background: #f0f2f5;
            padding: 10px 0;
            position: sticky;
            top: 50px;
            background: white;
            z-index: 10;
        }

        .fb-tab {
            padding: 10px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
        }

        .fb-active-tab {
            background: #e7f3ff;
            color: #1877f2;
            font-weight: bold;
        }

        .fb-modal-body {
            max-height: 65vh;
            overflow-y: auto;
            padding: 10px;
        }

        .fb-user-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid #ddd;
        }

        .fb-user-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-right: 12px;
        }

        .fb-user-name {
            flex-grow: 1;
            font-size: 16px;
             width: 100%
        }
       .fb-follow-btn {
            padding: 3px 8px;
            background: #e4e6eb;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            white-space: nowrap;
        }
        @media (max-width: 768px) { 
    .fb-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }

    .fb-modal-body {
        max-height: calc(100vh - 100px); /* Adjust based on header height */
        overflow-y: auto;
    }
}

/* Fullscreen overlay with blur */
.payment-popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Card popup */
.popup-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeInUp 0.35s ease;
}

/* Heading and text */
.popup-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}
.popup-card .message {
  font-size: 16px;
  margin-bottom: 8px;
  color: #555;
}
.popup-card .subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* Button with gradient */
#payNowBtn {
  background: linear-gradient(to right, #00b09b, #96c93d);
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
#payNowBtn:hover {
  background: linear-gradient(to right, #00a08a, #85b42e);
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}    

