.more-category {
  width: 15%;
}
.drop-down-box {
  position: relative;
}
.drop-down-box .category-drop-down {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #374b5c;
}
.drop-down-box .category-drop-down li label {
  display: block;
}
.drop-down-box .category-drop-down li label div:hover {
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.5rem;
  overflow: hidden;
  text-transform: capitalize;
}
.file-preview span {
  width: 2%;
  text-align: end;
  font-size: x-large;
  font-weight: lighter;
  cursor: pointer;
}
.file-preview p {
  font-size: 18px;
  width: 53%;
  text-align: center;
  font-weight: 700;
  margin: 2px 0 0 0;
}
.file-preview img {
  width: 100px;
  max-height: 100px;
}
.file-preview {
  padding-left: 25px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}
.drop-down-box .category-drop-down li label div {
  color: #374b5c;
}
.large-content .more-less:focus{
  outline:unset;
}
.large-content .more-less:hover{
  color:#d64f03;
}
.action-dlt-edit {
  display: flex;
  justify-content: space-between;
  width: 13%;
  text-align: end;
}
.action-dlt-edit img {
  width: 23px;
}
.action-dlt-edit i {
  font-size: 23px;
  color: #374b5c;
}
div#category-field-radio label {
  border: 1px solid;
  border-radius: 8px;
}
.gender-s {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: -20px;
    
    .gender {
        width: 30%;
    }
}
.categorieslist-section {
  margin-top: 25px;
}
i.feather.feather-dollar {
  top: 54px;
  left: 11px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.rating {
  --star-size: clamp(2rem, 5vw, 2rem);
  --star-clr-inactive: rgba(128, 128, 128, 0.7);
  --star-clr-active: rgb(245, 158, 11);
  --star-clr-hover: rgba(236, 201, 136, 0.2);
  --star-clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating label {
  position: relative;
  cursor: pointer;
  width: var(--star-size);
  height: var(--star-size);
}
.rating label::before {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  background-color: var(--star-clr-hover);
  transition: rotate 450ms ease-in-out, inset 300ms ease-in-out;
  clip-path: var(--star-clip-path);
}
label:hover::before {
  inset: -1rem;
  rotate: 45deg;
}
.rating  label::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--star-clr-inactive);
  clip-path: var(--star-clip-path);
  transition: 300ms ease-in-out;
  scale: 0.75;
}
.rating label:has(~ label:hover)::after,
.rating label:has(~ label > :checked)::after,
.rating label:has(:checked)::after,
.rating  label:hover::after {
  background-color: var(--star-clr-active);
  scale: 1;
}

.rating label:hover ~ label::after {
  scale: 0.75;
}
.rating label:active::before {
  inset: -2rem;
}


div#methods {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

div#methods .Authmethods {
    width: 50%;
}

div#methods .getOtpcode {
  width: 38%;
}

div#methods .getOtpcode button {
    width: 30%;
}

div#methods .getOtpcode button {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 5px;
}

.loader {
    border: 15px solid #f3f3f3;
    border-top: 15px solid #c10037;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin: auto;
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
  

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .wrapper{
    box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    color: #666666;
    background: #ffffff;
    max-width: 425px;
  }

  .wrapper .slide-controls{
    position: relative;
    display: flex;
    height: 50px;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 10px 0;
    justify-content: space-between;
    border: 1px solid lightgrey;
    border-radius: 15px;
  }
  .slide-controls .slide{
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.6s ease;
  }
  .slide-controls label.signup{
    color: #000;
  }
  .slide-controls .slider-tab{
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    z-index: 0;
    border-radius: 15px;
    background: -webkit-linear-gradient(left,#c10037,#c10037,#c10037
  , #c10037);
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  }
  #signup:checked ~ .slider-tab{
    left: 50%;
  }
  #signup:checked ~ label.signup{
    color: #fff;
    cursor: default;
    user-select: none;
  }
  #signup:checked ~ label.login{
    color: #000;
  }
  #login:checked ~ label.signup{
    color: #000;
  }
  #login:checked ~ label.login{
    cursor: default;
    user-select: none;
  }
  .wrapper .form-container{
    width: 100%;
    overflow: hidden;
  }
  .form-container .form-inner{
    display: flex;
    width: 200%;
  }
  .form-container .form-inner form{
    width: 50%;
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  }


  form .btn:hover .btn-layer{
    left: 0;
  }
 
input#mobileNumber {
    width: 373px;

}

.galleryimg-upload {
  margin: 0 0 30px!important;
  display: flex!important;
  flex-direction: row!important;
  flex-wrap: wrap!important;
  justify-content: space-between!important;
}

.gallery-upload {
  margin: 10px 10px!important;
  flex: 1 0 20%!important;
}

.gallery-upload img {
  max-width: 250px !important;
  max-height: 150px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 5px !important;
  object-fit: cover;
  width: 100%;
}

.gallery-upload .profile-img-del {
  top: 5px!important;
  right: 5px!important;
}

.simple-pagination {
  margin-top: 10px;
}
.simple-pagination .pagination {
  gap: 20px !important;
}

.simple-pagination .pagination .active span{
  padding: 10px 19px !important;
  background: #3a4e5e !important;
  color: white !important;
}

.simple-pagination .pagination .page-item .page-link{ 
  padding: 10px 19px !important;
  color: rgb(0, 0, 0);
  border: none;
} 

.blog-img {
  max-height: 266px;
}

.grid-view .Featured-text {
    background: #4c82f7;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px 10px;
}

.bannergallery-section {
  margin-top: 10%;
}
.map-frame{
  height: 200px;
}
.listing-map {

height: 430px;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px; /* Adjust width as needed */
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px; /* Half of the width */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.details-description .callnow {
  text-align: center!important;
}

.details-description .callnow a {
  padding: 14px 30px!important;
}

.details-description .whatsapp a {
  background: #ffffff!important;
  color: #c10037!important;
  border: 1px solid #c10037!important;
}
.details-description .whatsapp a:hover {
  background: #c10037!important;
  color: #ffffff!important;
  border: 1px solid #c10037!important;
}

.send-request {
  background-color: #C10037;
  border-color: #C10037;
  border-width: 2px;
  color: #F1F1F1;
  font-size: 16px;
  font-weight: 400;
  padding: 9px 28px;
  display: flex;
  align-items: center;
}
.send-request:hover {
  background-color: #C10037;
  border: 2px solid #C10037;
  box-shadow: 0 50px 0 0 #ffffff inset;
  color: #C10037;
}

div#send-request {
  top: 30%;
}
form#sendrequest {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

form#sendrequest button {
  width: 34%;
}

div#send-request p {
  font-size: 18px;
  font-weight: 600;
  color: #374b5c;
  text-align: center;
}

div#send-request .modal-content {
  padding: 5px 0 30px 0px;
}
div#send-request .cancel{
background: #ffffff!important;
  color: #c10037!important;
  border: 1px solid #c10037!important;
}

/* div#send-request .cancel:hover{
  background: #c10037!important;
  color: #ffffff!important;
  border: 1px solid #c10037!important;
} */
.request {
  position: relative;
}
span.requestscounts {
  position: absolute;
  bottom: 14px;
  right: 16px;
  color: #fff;
  background: #ff0000;
  width: 22px;
  text-align: center;
  border-radius: 50%;
  font-weight: 800;
}

#fb{
  width:500px;
  border:1px solid gray;
  border-radius:5px;
  position:relative;
  height:175px;
  margin: 0 0 45px 0;
}
#fb p{
  font-family:sans-serif;
  margin: 0 0 0 10px;
  line-height:30px;
}

#fb-top span{
  color:#4267B2;
  float:right;
  margin-right:10px;
}
#fb-top{
  background-color:#efefef;
  height:30px;
  width:500px;
  border-radius:5px 5px 0 0;
  position:absolute;
  top:-1px;
  left:-1px;
  border:1px solid gray;
}

#fb img {
  position: absolute;
  left: 10px;
  top: 38.5px;
}

#info {
  position: absolute;
  left: 120px;
  top: 60px;
}

#info {
  color:#bd0035;
  line-height:25px;
  font-size:18px;
}

#info span{
  color:#777;
  font-size:14px;
}

#button-block{
  position:absolute;
  right: 16px;
  top: 26px;
}

#button-block div{
  display:inline-block;
}

#confirm, #delete{
  background-color: #b90034;
  color: white;
  padding: 7px 12px;
  border-radius: 4px;
  margin-right: 10px;
  font-family: sans-serif;
}

#delete {
  color: #222;
  background-color: #fff;
  border: 1px solid #999;
  padding: 6px 9px !important;
  border-radius: 4px;
  margin-right: 0;
}

#button-block div:hover{
  opacity:.8;
  cursor:pointer;
}
.all-request {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* margin: 0 0 3px 0; */
  width: 100%;
}

div#confirm a {
  color: #ffff;
  font-size: 15px;
  font-weight: 700;
}

div#delete a {
  font-size: 15px;
  font-weight: 700;
  color: #384b5c;
}

.sent {
  text-align: end;
}
.chat-attachment img{
  height: 100%;
  width:100%;
}
section.banner-section-custom {
  margin-top: 14%;
}
.home-top-section img {
  width: 100%;
}

.search-select-radio input {
  display: inline-block;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1;
  width: 1;
  margin: -1;
  padding: 0;
  border: 0;
}
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.5rem;
  overflow: hidden;
  text-transform: capitalize;
}

.icon:hover {
  cursor: pointer;
  background-color: rgb(193 0 55);
  letter-spacing: 0px;
  font-family: proxima-nova, ProximaNova, noto, var(--my-gess), GESS, GE-SS, sans-serif;
  line-height: 1.5;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5rem;
  text-transform: capitalize;
}

.peer:checked ~ .icon {
  cursor: pointer;
  background-color: rgb(193 0 55);
  letter-spacing: 0px;
  font-family: proxima-nova, ProximaNova, noto, var(--my-gess), GESS, GE-SS, sans-serif;
  line-height: 1.5;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.search-heading-radio {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}

.search-form-container {
  width: 85%;
}

.heading-form {
  width: 15%;
  text-align: justify;
}

.search-select-radio {
  width: 80%;
  text-align: justify;
}
.home-top-section {
  position: relative;
}

.search-form-container {
  position: absolute;
  top: 40%;
  right: 8%;
  background-color: rgba(33, 34, 35, 0.6);
  padding: 8px 16px;
}

.heading-form span {
  margin: 0px;
  letter-spacing: 0px;
  font-family: proxima-nova, ProximaNova, noto, var(--my-gess), GESS, GE-SS, sans-serif;
  line-height: 1.5;
  color: white;
  font-size: 16px;
  font-weight: 700;
  width: 180px;
} 

.inpt-submit-btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.inpt-submit-btn .form-submit-btn {
  width: 15%;
}
.inpt-submit-btn .form-group {
  width: 83%;
}
#category-field-radio .icon {
  color: #000;
}

#category-field-radio .icon:hover {
  color: #fff;
}
#category-field-radio .peer:checked ~ .icon{
  color: #fff;
}

.latest-ad {
  height: 174px;
}
/*Menu text over write on hover*/
ul.submenu {
  width: 270px;
}
/* image allignment with  height in Feature ads section */
.blog-img {
  height: 172.71px;
}
/*Our Category” detail page need to fix the top images section */
.bannergallery-section .gallery-widget img {
  width: 345.27px;
  height: 258.96px;
}
/*blog image black color change */
.blogbanner:after {
  content: "";
   background:none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/*subscribe section equal height */
footer.footer .container {
  margin-top: 80px !important;
}
/* footer reduce margin */
.footer .footer-top .footercount {
  border-top: 1px solid #666666;
  margin: 40px 0 0;
   padding: 0 0; 
}
footer.footer .container {
   margin-top: 0px; 
}
/* faq top margin */
section.faq-section {
  margin-top: 50px;
}
/*faq in between space */
.faq-card {
  margin-top: 20px !important;
}
/* privacy policy margin top */
.terms-content {
  margin-top: 50px;
}
/* name is going outside the area */
ul.info-list li {
  font-size: 14px;
}
/*gallery delete button going out */
.gallery-upload .profile-img-del {
  position: absolute;
  top: -17px !important;
  left: 228px;
  right: px;
}

/*links buttons in ads fix */
.align-items-center.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: nowrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
  justify-content: center;
}


/***************** Ravi CSS Start *******************************/
.footer .social-icon ul li a {
  color: #fff !important;
  border: 1px solid #ffffff !important;
}

/***************** Ravi CSS END *******************************/


@media only screen and (max-width: 1200px) {
  .Custom-Nav-category {
    display: none !important;
  }
  .amount-details {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .grid-view .blog-location-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .header .main-menu-wrapper .main-nav > li {
    margin-right: 30px;
  }
  .search-form-container {
    top: 20%;
  }
  .search-heading-radio {
  display: none;
  }
}

@media only screen and (max-width: 992px) {
  .category-section .row, .featured-section .row, 
  .latestad-section .row, .blog-section .row {
    flex-wrap: wrap;
  }
  .latestad-section .lateestads-content .row {
    justify-content: flex-start !important;
  }
  .bloglist-section .blog .entry-meta.meta-item {
    justify-content: flex-start;
  }

}

@media only screen and (max-width: 768px) {
  .bloglist-section .blog .entry-meta.meta-item {
    justify-content: flex-start;
  }
    
    
}
@media only screen and (max-width: 680px) {
  .filter-form-mb-tb {
    --bs-gutter-y: 10px !important;
    flex-direction: column;
  }
  section.banner-section-custom {
    margin-top: 25%;
  }
  .home-top-section img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  .blog-content .entry-meta {
    justify-content: flex-start;
  }
  .cta-section .align-items-center.row{
  flex-direction: column;
  }
    
}

@media only screen and (max-width: 480px) {
  .category-section .col-md-3 {
    flex: 0 0 auto;
    width: 50% !important;
  }
      
}

@media only screen and (max-width: 320px) {
      
}