/*
 Theme Name:   My Listing Child
 Theme URI:    http://mylisting.27collective.net/my-city/
 Description:  MyListing Child Theme
 Author:       27collective
 Author URI:   https://27collective.net/
 Template:     my-listing
 Version:      1.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         one-column, two-columns, three-columns, left-sidebar, right-sidebar, grid-layout, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 Text Domain:  my-listing-child
*/

/* Import parent theme styles */
@import url("../my-listing/style.css");

/* Add your custom styles here */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --white: 255, 255, 255;
  --gray-100: #f1f1f1;
  --gray-200: #d4d4d4;
  --gray-300: #b8b8b8;
  --gray-400: #9c9c9c;
  --gray-500: #808080;
  --gray-600: #636363;
  --gray-700: #474747;
  --gray-800: #2a2a2a;
  --gray-900: #0e0e0e;
  --black: #000000;

  --color-mint-green-light: #adf6dc;
  --color-mint-green-dark: #6dd19c;
  --color-gold: #f2e060;
  --color-gold-light: #f7ec99;
  --color-error: #cb4848;
  --color-success: #46b47f;
  --color-warning: #efbd4b;

  --color-yellow: #ffebce;
  --color-blue: #d1e7ff;
  --color-green: #aff3dc;
  --color-purple: #f7e3fc;
}

@-moz-document url-prefix() {
  body {
    padding-right: 0 !important;
  }
}

body {
  overflow-x: hidden;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.main-loader.site-logo-loader img {
  max-width: none;
}

.mb-4 {
  margin-bottom: 24px;
}

.custom-checkbox {
  display: block;
  position: absolute;
  padding-left: 35px;
  right: 0;
  top: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-400);
}

.custom-checkbox:hover input~.checkmark {
  background-color: var(--gray-200);
}

.custom-checkbox input:checked~.checkmark {
  background-color: var(--color-mint-green-dark);
  border-color: var(--color-mint-green-dark);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked~.checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.d-none {
  display: none !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.alert {
  border-width: 1px;
  border-style: solid;
  padding: 8px 16px;
  border-radius: 6px;

  &.alert-info {
    background-color: #cff4fc;
    border-color: #9eeaf9;
    color: #055160;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
}

.toast-message {
  min-width: 220px;
  margin-bottom: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
  animation: fadein 0.3s, fadeout 0.3s 2.2s;
  transition: opacity 0.3s;
}

.toast-success {
  background: #28a745;
}

.toast-error {
  background: #dc3545;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.95;
  }
}

@keyframes fadeout {
  from {
    opacity: 0.95;
  }

  to {
    opacity: 0;
  }
}

/* Toast Notifications */

.pagination,
.job-manager-pagination {
  display: flex !important;
  justify-content: center;
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
  gap: 10px;

  a.page-numbers,
  span.page-numbers {
    box-shadow: none;
    border: 1px solid var(--gray-200);
    color: var(--gray-900) !important;
  }

  a.page-numbers:hover {
    color: rgba(var(--white), 1) !important;
  }

  span.page-numbers.current {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: rgba(var(--white), 1) !important;
  }
}

.groups {
  padding-bottom: 32px !important;

  .heading-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;

    h2 {
      font-weight: 700;
      margin: 0;
    }
  }
}

.mobile-logo {
  width: 190px;
  padding-left: 20px;

  img {
    width: 100%;
  }
}

.select2-container--default .select2-selection--single {
  border: none !important;
  height: auto !important;

  .select2-selection__rendered[class] {
    font-weight: 400 !important;
    color: var(--gray-900) !important;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    border: 1px solid var(--gray-200) !important;
    line-height: 18px !important;

    .select2-selection__placeholder {
      color: var(--gray-800) !important;
      font-size: 16px !important;
    }
  }

  .select2-selection__arrow {
    right: 12px !important;
    top: 5px !important;

    &::before {
      content: "" !important;
      background-image: url("/wp-content/uploads/2025/02/down-arrow.svg");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 14px;
      height: 14px;
      margin-left: 4px;
      position: absolute;
      top: 12px;
    }
  }
}

.dashboard-filter-stats~span.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 14px 16px !important;
  height: 40px;
}

.select2-container--below.select2-container--open .select2-selection__rendered:after {
  display: none !important;
}

.select2-dropdown {
  border-radius: 8px !important;
  /* margin-top: 0px !important; */
}

.sign-in-form input {
  border-radius: 0 !important;
}

.dropdown {
  position: relative;

  .dropdown-btn {
    display: flex;
    gap: 5px;
    font-size: 16px;
    border: 1px solid var(--gray-200);
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(var(--white), 1);
    transition: all 0.3s ease;
    align-items: center;
    min-width: 250px;
    position: relative;

    &:hover {
      background-color: var(--gray-100);
    }

    &.dropdown-toggle::after {
      content: "";
      background-image: url("/wp-content/uploads/2025/02/down-arrow.svg");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 14px;
      height: 14px;
      margin-left: 4px;
      position: absolute;
      right: 16px;
    }
  }

  .custom-dropdown-menu {
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    border-bottom: 1px solid var(--gray-200);
    margin-top: 5px;
    margin-bottom: 0;
    background-color: rgba(var(--white), 1);
    /* display: none; */
    position: absolute;
    width: 100%;
    z-index: 999;
    overflow: hidden;

    li {
      padding: 12px 16px;
      border-bottom: 1px solid var(--gray-200);
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease-in-out;
      background-color: rgba(var(--white), 1);

      &:hover {
        background-color: var(--gray-100);
      }

      &:last-child {
        border-bottom: none;
      }

      &[data-selected="true"] {
        font-weight: 600;
        background-color: var(--color-mint-green-light);
      }
    }
  }

  &.show {
    .custom-dropdown-menu {
      display: block;
    }
  }
}

button {
  outline: none !important;
  box-shadow: none !important;
}

.btn {
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  border: 1px solid;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-gold {
  background-color: var(--color-gold) !important;
  color: var(--gray-900) !important;
  border-color: var(--color-gold) !important;
  border-width: 2px;

  &:hover {
    background-color: var(--color-gold-light) !important;
    border-color: var(--color-gold-light) !important;
  }
}

.btn-dark {
  background-color: var(--black);
  color: rgba(var(--white), 1) !important;
  border-color: var(--black);

  &:hover {
    background-color: transparent;
    color: var(--black) !important;
  }
}

.btn-dark-outline {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);

  &:hover {
    background-color: var(--black);
    color: rgba(var(--white), 1);
  }
}

.form-group {
  margin-bottom: 24px;

  label {
    display: block;
    margin-bottom: 3px !important;
    font-weight: 500;
    font-size: 16px;
  }

  &.required {
    position: relative;

    label {
      position: relative;
      display: inline-block;

      &:after {
        content: "*";
        right: -12px;
        font-size: 16px;
        color: var(--color-error);
        top: 1px;
        position: absolute;
      }
    }
  }

  .form-select {
    display: block;
    width: 100%;
    padding: 11px 36px 11px 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-900);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(var(--white), 1);
    background-image: url("/wp-content/uploads/2025/02/down-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
  }

  .form-control {
    display: block;
    width: 100%;
    padding: 11px 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-900);
    background-size: 16px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
    background-color: rgba(var(--white), 1);
  }
}

.form-control:disabled {
  background-color: var(--gray-100);
  opacity: 1;
}

/* .main-loader.loader-bg {
    z-index: 99999 !important; 
} */

/* .c27-top-content-margin{
    display: none;
} */

body:not(.logged-in) .user-area.signin-area {
  margin-right: 0px !important;
}

header.header[class] {
  height: 80px !important;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;

  *:not(i) {
    font-family: "Poppins", serif !important;
  }

  .view-cart-contents {
    font-size: 22px;
    margin-left: 24px;
    margin-right: 0;
  }

  .chat-counter-container,
  .header-cart-counter {
    top: -8px;
    bottom: auto !important;
  }

  .user-profile-dropdown .i-dropdown li a {
    display: flex;
    align-items: center;

    i {
      font-size: 22px !important;
      top: 0 !important;
    }
  }

  .user-profile-dropdown.dropdown {
    .user-profile-name {
      font-size: 16px;
      text-transform: capitalize;

      i {
        color: #000 !important;
      }
    }
  }

  .user-area div.avatar {
    height: 35px !important;
    width: 35px !important;

    img {
      height: 35px;
      width: 35px;
      min-height: 35px;
      min-width: 35px;
    }
  }

  .main-menu>.menu-item {
    >a {
      color: var(--gray-900) !important;
      min-height: 0;
      padding-top: 7px;
      padding-bottom: 7px;
      font-size: 16px;
    }
  }

  .user-area.signin-area {
    height: auto;

    a {
      background-color: var(--color-gold);
      color: var(--gray-900) !important;
      padding: 7px 16px;
      border-radius: 8px;
      opacity: 1;
      font-size: 16px;
      text-transform: capitalize;

      i {
        font-family: eicons !important;

        &::before {
          line-height: 1.7;
        }
      }
    }
  }

  .header-top {
    padding-left: 64px;
    padding-right: 64px;
  }

  .messaging-center {
    display: none;
  }
}

/* Home search start */
.search-banner-section {
  position: relative;

  &.inner {

    &::before,
    &::after {
      display: none;
    }
  }

  &::before {
    content: "";
    position: absolute;
    background-image: url("/wp-content/uploads/2025/04/search-desgin1.png");
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: left bottom;
    left: 0;
    bottom: 0;
  }

  &::after {
    content: "";
    position: absolute;
    background-image: url("/wp-content/uploads/2025/01/search-desgin2.png");
    background-repeat: no-repeat;
    background-size: 250px;
    width: 120px;
    height: 250px;
    right: 0px;
    top: 40px;
  }

  .banner-heading {
    strong {
      font-weight: 700;
    }
  }
}

.banner-rating {
  padding: 16px;
  background-color: rgba(var(--white), 0.35);
  border-radius: 8px;
  width: auto;
  flex-wrap: nowrap;

  .elementor-icon-wrapper {
    line-height: 0;
  }
}

.ych-search-bar {
  position: relative;
  z-index: 1;

  .search-tab-disabled {
    pointer-events: none;
    opacity: 0.5;
  }

  .tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    display: none;
  }

  .tab-link {
    background-color: rgba(var(--white), 0.35);
    border: none;
    padding: 12px 10px 7px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 165px;
    font-weight: 500;
  }

  .tab-link.active {
    background-color: rgba(var(--white), 1);
  }

  .tab-content {
    padding: 24px;
    background-color: rgba(var(--white), 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
}

.search-area {
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;

  .suggestions-list {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1);
    background-color: rgba(var(--white), 1);
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    overflow: hidden;
    margin-top: 6px;
    max-height: 450px;
    overflow: auto;
    text-align: left;

    h4 {
      background-color: var(--gray-100);
      padding: 8px 16px;
      margin: 0;
      font-size: 16px;

      ~li {
        padding: 10px 16px;
        cursor: pointer;
        padding-left: 72px;

        &:hover {
          background-color: #e5fff6;
        }

        span {
          font-size: 15px;
          font-weight: bold;
          display: block;
        }

        &::before {
          content: "";
          position: absolute;
          left: 16px;
          width: 40px;
          height: 40px;
          border-radius: 6px;
          background-color: var(--color-success);
          background-image: url("/wp-content/uploads/2025/04/home-search.png");
          background-size: 20px;
          background-position: center;
          background-repeat: no-repeat;
        }

        &[data-type="care-home"]::before {
          background-image: url("/wp-content/uploads/2025/04/home-search.png");
        }

        &[data-type="region"]::before {
          background-image: url("/wp-content/uploads/2025/04/region-search.png");
        }
      }
    }
  }

  input {
    padding: 0;
    border: none;
    font-size: 18px;
    height: 100%;
  }

  button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    border: none;
    border-radius: 6px;
    height: 100%;
    font-size: 18px;
    background-color: var(--color-gold);
    min-width: 142px;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease-in-out;

    &:hover {
      background-color: var(--color-gold-light);
      border-color: var(--color-gold-light);
    }
  }

  .search-loading,
  .search-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    flex-direction: column;
    padding: 16px;
  }

  .spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-300);
  opacity: 1;
}

/* Home search end */

/* Services start */
.services .ych-carousel .tabs {
  display: none;
}

.services-box {
  border: 2px solid;
  border-radius: 8px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;

  .icon {
    max-width: 150px;
    margin-bottom: 24px;
  }

  .title {
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
  }

  .badge {
    background-color: rgba(var(--white), 1);
    border-radius: 100px;
    font-size: 13px;
    padding: 5px 12px;
    margin-top: 5px;
    border: 1px solid transparent;

    &:hover {
      background-color: transparent;
      color: var(--black);
      border-color: var(--black);
    }
  }

  &:nth-child(4n + 1) {
    background-color: var(--color-yellow);
    border-color: #f5d8af;
  }

  &:nth-child(4n + 2) {
    background-color: var(--color-blue);
    border-color: #b6d7fc;
  }

  &:nth-child(4n + 3) {
    background-color: var(--color-green);
    border-color: #6cebc0;
  }

  &:nth-child(4n + 4) {
    background-color: var(--color-purple);
    border-color: #e4aff1;
  }
}

.ych-carousel,
.sitemap-tabs {
  .tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
    text-align: center;
  }

  .tab-link {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    padding: 13px 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px;
    width: 190px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;

    &:hover,
    &:focus {
      background-color: var(--color-gold);
      color: inherit;
    }
  }

  .tab-link.active {
    background-color: var(--color-gold);
  }
}

/* Services end */

/* Featured Care Home Groups start */
.featured-groups,
.providers,
.towns {
  padding: 10px !important;
}

.btn-view-all {
  height: auto !important;

  .data-card {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-direction: column;
    gap: 16px;
  }
}

.groups .data-card {
  margin-bottom: 24px;
}

.data-card {
  background-color: rgba(var(--white), 1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  color: var(--gray-900) !important;

  .img-wrapper {
    img {
      height: 180px;
      width: 100%;
      object-fit: cover;
    }
  }

  .carehome-logo,
  .towns-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--white), 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    width: calc(100% - 48px);
    margin: 0 auto;
    border-radius: 8px;
    padding: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 9;

    img {
      max-height: 38px;
      width: auto;
      max-width: 95%;
      height: auto;
    }
  }

  .towns-info {
    flex-direction: column;

    .towns-count {
      font-size: 30px;
      font-weight: 500;
      line-height: 1;
    }

    .town-label {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
  }

  .card-body {
    padding: 16px 24px;

    .title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      min-height: 46px;
    }

    .locations {
      font-size: 16px;
      font-weight: 500;
      margin-top: 5px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      height: 44px;
      margin-bottom: 0;
    }

    .description {
      margin-bottom: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;

  .swiper-pagination {
    text-align: left;
    position: relative;
    top: 8px !important;
    bottom: auto !important;

    .swiper-pagination-bullet-active {
      background-color: var(--color-mint-green-dark);
    }

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin-left: 2px !important;
      margin-right: 2px !important;
    }
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: relative;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-color: var(--color-mint-green-light);
    border-radius: 50%;
    margin: 16px 0 0 0;
    top: auto;
    bottom: auto;

    &::after {
      font-size: 11px;
      font-weight: 800;
      color: var(--black);
    }
  }

  .swiper-button-prev {
    left: -14px;
  }

  .swiper-button-next {
    right: 0;
  }
}

/* Featured Care Home Groups end */

/* locations start */
.location-banner-img {
  max-width: 1000px;
  margin: 0 auto;
}

.location-section {
  margin-top: -90px;

  .ych-location {
    .tabs {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 50px;
    }

    .tab-link {
      border: 1px solid var(--color-gold);
      padding: 13px 16px;
      cursor: pointer;
      transition: background-color 0.3s;
      border-radius: 8px;
      width: 215px;
      font-size: 20px;
      font-weight: 500;
      background-color: rgba(var(--white), 1);
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      transition: all 0.3s ease-in-out;

      &:hover {
        background-color: var(--color-gold);
      }

      .homes-count {
        font-size: 14px;
        font-weight: 400;
      }
    }

    .tab-link.active {
      background-color: var(--color-gold);
    }
  }

  .location-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;

    .location-city {
      width: 307px;
      min-width: 307px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      border-radius: 8px;
      background-color: #e3fef4;
      border: 1px solid var(--color-mint-green-light);

      .location-info {
        div:first-child {
          font-size: 22px;
          font-weight: 600;
        }
      }

      i {
        font-family: eicons !important;
        font-size: 20px;
      }
    }

    .location-towns {
      i {
        font-family: eicons !important;
        font-size: 13px;
        width: 24px;
        height: 24px;
        background-color: var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
      }

      padding: 16px;
      border-radius: 8px;
      background-color: rgba(var(--white), 1);
      border: 1px solid var(--gray-200);
      flex-grow: 1;

      ul {
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 24px;

        li {
          width: 31.5%;

          .location-info {
            display: flex;
            align-items: center;
            justify-content: space-between;

            >div div:first-child {
              font-size: 16px;
              font-weight: 600;
            }
          }
        }
      }
    }
  }
}

.view-all-location {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* locations end */

/* testimonials start */
.testimonials {
  position: relative;

  &:before {
    background-image: url("/wp-content/uploads/2025/01/bg-design.png");
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
  }

  .testimonial-swiper {
    padding: 20px 10px;
  }

  .testimonial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    height: auto;
  }

  .owl-item {
    background-color: rgba(var(--white), 1);
    padding: 48px 24px;
    border-radius: 8px;
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15); */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    height: auto;

    * {
      opacity: 0.7;
    }

    .client-info {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 18px;

      .client-name {
        font-weight: 600;
      }
    }

    &.swiper-slide .icon {
      * {
        opacity: 1;
      }

      svg path {
        fill: var(--color-gold);
      }
    }

    &.active.center {
      * {
        opacity: 1;
        color: rgba(var(--white), 1);

        svg path {
          fill: var(--color-gold);
        }
      }

      background-color: var(--color-mint-green-dark);
      box-shadow: 0px 0px 20px 0px var(--color-mint-green-dark);
    }
  }

  .swiper-navigation {
    margin-top: 24px;

    .swiper-pagination {
      text-align: center;
    }
  }

  .quote {
    position: absolute;
    bottom: 4px;
    right: 15px;
  }
}

/* testimonials end */

/* blogs start */
.blog-swiper,
.news-advice {
  padding: 24px !important;

  .img-wrapper {
    position: relative;
    height: 250px;

    &:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(0, rgba(0, 0, 0, 0.8), transparent);
      left: 0;
      top: 0;
    }

    img {
      height: 100%;
    }

    .blog-badge {
      background-color: var(--color-mint-green-light);
      position: absolute;
      color: var(--black);
      padding: 10px 16px;
      border-radius: 20px;
      bottom: 10px;
      right: 10px;
      text-transform: capitalize;
    }
  }

  & .card-body {
    .title {
      -webkit-line-clamp: 1;
      height: auto;
    }

    .user-box {
      display: flex;
      align-items: center;
      margin-top: 16px;
      gap: 16px;

      .user-img {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .user-info {
        .user-name {
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 2px;
          text-transform: capitalize;
        }
      }
    }
  }

  .swiper-navigation {
    .swiper-pagination {
      .swiper-pagination-bullet-active {
        background-color: var(--color-success) !important;
      }
    }

    .swiper-button-next,
    .swiper-button-prev {
      background-color: var(--color-mint-green-dark);
    }
  }
}

.ych-blog-title {
  font-size: 50px !important;
  line-height: 1.5 !important;
}

/* blogs end */

/* newsletter start */
.wpcf7-spinner {
  display: none !important;
}

.news-letter-form .tnp-subscription {
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 80px;
  background-color: rgba(var(--white), 1);
  margin: 0;
  max-width: 100%;

  form {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;

    label {
      display: none;
    }
  }

  .tnp-field-email {
    flex-grow: 1;
  }

  .tnp-field-email,
  .tnp-field-button {
    margin-bottom: 0;
    height: 100%;
  }

  input {
    padding: 0;
    border: none;
    font-size: 18px;
    height: 100%;
    margin-bottom: 0 !important;
    background-color: transparent;
  }

  input[type="submit"] {
    display: flex;
    align-items: center;
    padding: 8px 16px 8px 52px;
    gap: 10px;
    border: none;
    border-radius: 6px;
    height: 100%;
    font-size: 18px;
    background-color: var(--black);
    width: 178px;
    justify-content: center;
    font-weight: 500;
    color: rgba(var(--white), 1);
    margin: 0;
    background-image: url("/wp-content/uploads/2025/01/sent.png") !important;
    background-size: 28px !important;
    background-position: 18px center !important;
    background-repeat: no-repeat !important;
  }
}

.wpcf7-response-output[class] {
  text-align: left !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* newsletter end */

/* footer start */
.social-icons {
  .icon-box>div {
    width: 30px;
    min-width: 30px;
    height: 30px !important;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
      height: 17px !important;
    }
  }
}

.footer-links {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;

  a {
    color: rgba(var(--white), 1);

    &:hover {
      color: var(--color-gold);
    }
  }
}

.bottom-footer {
  a {
    margin-left: 16px;
    white-space: nowrap;
  }
}

/* footer end */

/* list page start */
@keyframes loadinga {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.view-more-button {
  max-width: fit-content;
  margin: 35px auto 0;
}

.list-wrapper {
  margin-top: -130px;

  .search-area {
    border: none;
    background-color: rgba(var(--white), 1);
  }

  .list-main-container {
    margin-top: 50px;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;

    .list-filter {
      width: 400px;
      min-width: 400px;
      background-color: rgba(var(--white), 1);
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
      border-radius: 8px;
      overflow: hidden;
      position: sticky;
      top: 20px;
      height: fit-content;
      display: flex;
      flex-direction: column;

      .filter-header {
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        border-bottom: 1px solid var(--gray-200);
        font-weight: 500;

        >div {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .btn-close-filter {
          display: none;
          cursor: pointer;
        }
      }

      .filter-body {
        padding: 24px;
        flex-grow: 1;
      }

      .filter-footer {
        padding: 16px 24px;
        border-top: 1px solid var(--gray-200);
        display: flex;
        gap: 24px;

        .btn {
          flex-grow: 1;
          width: 100%;
        }
      }
    }

    .list-container {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      width: 100%;
      align-self: normal;

      .top-filter {
        display: flex;
        justify-content: space-between;

        .filter-btn {
          display: none;
        }

        .page-show {
          font-size: 16px;
          display: flex;
          align-items: center;
          gap: 6px;
        }
      }

      #map-view {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px;
        margin-top: 24px;
        overflow: hidden;

        .marker-box {
          width: 250px;
          display: flex;
          gap: 16px;
          padding-top: 12px;

          img {
            width: 60px;
            object-fit: cover;
            border-radius: 6px;
          }

          .marker-info {

            h4,
            p {
              margin: 0;
            }

            h4 {
              font-size: 16px;
            }

            p {
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-line-clamp: 1;
              -webkit-box-orient: vertical;
            }
          }
        }

        .gm-style-iw-ch {
          display: none;

          +button {
            width: 22px !important;
            height: 26px !important;
            position: absolute !important;
            top: 0;
            right: 0;

            span {
              width: 18px !important;
              height: 18px !important;
              margin: 0 !important;
            }
          }
        }
      }

      .list-card {
        background-color: rgba(var(--white), 1);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        overflow: hidden;

        .list-card-body {
          padding: 16px;
          gap: 24px;
          display: flex;
          position: relative;
        }

        .img-wrapper {
          min-width: 400px;
          width: 400px;
          height: 350px;
          border-radius: 6px;
          overflow: hidden;
          position: relative;

          .special-offer {
            position: absolute;
            left: 10px;
            top: 10px;
            width: calc(100% - 20px);
          }

          &:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(0,
                rgba(0, 0, 0, 0.8),
                transparent);
            left: 0;
            top: 0;
          }

          img {
            object-fit: cover;
            width: 100%;
            height: 100%;
          }

          .img-overlay {
            display: flex;
            justify-content: space-between;
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 16px;

            .overlay-chip {
              background-color: var(--color-gold);
              color: var(--black) !important;
              display: flex;
              align-items: center;
              gap: 10px;
              padding: 5px 12px 5px 5px;
              border-radius: 100px;
              font-weight: 500;

              .chip-icon {
                background-color: var(--black);
                border-radius: 50%;
                width: 36px;
                min-width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                  width: 20px;
                  height: auto;
                }
              }
            }

            .img-count {
              background-color: rgba(var(--white), 1);
              color: var(--black) !important;
              padding: 5px 20px;
              border-radius: 100px;
              font-weight: 600;
              display: flex;
              align-items: center;
            }
          }
        }

        .list-content {
          display: flex;
          flex-direction: column;
          width: 100%;

          .title-wrapper {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 10px;
            width: 100%;

            >div:first-child {
              width: 80%;
            }

            .title {
              font-size: 20px;
              font-weight: 700;
              margin-bottom: 4px;
              max-width: 90%;
              display: block;
              color: var(--gray-900) !important;
            }

            .location {
              display: flex;
              align-items: center;
              gap: 5px;
              overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-line-clamp: 1;
              -webkit-box-orient: vertical;
              max-width: 90%;
            }
          }

          .caregroup-logo {
            min-width: 100px;
            min-width: 100px;
            margin-top: 12px;
          }

          .care-services {
            margin-top: 24px;
            width: 100%;

            .heading {
              font-size: 16px;
              font-weight: 600;
              margin-bottom: 8px;
            }

            ul {
              margin-bottom: 0;
              display: flex;
              flex-wrap: wrap;
              gap: 16px;

              li {
                width: 45%;
                margin-bottom: 16px;
                display: flex;
                align-items: center;
                gap: 8px;
              }
            }
          }

          .description {
            line-height: 1.4;
            color: var(--gray-800);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 0;
          }

          .pricing {
            font-size: 16px;
            line-height: 22px;

            div:last-child {
              display: flex;
              align-items: baseline;
              margin-top: 2px;
              gap: 5px;

              strong {
                font-size: 22px;
                font-weight: bold;
                color: #70be93;
              }
            }
          }
        }

        .list-action {
          display: flex;
          justify-content: space-between;
          align-items: center;
          background-color: var(--color-mint-green-light);
          padding: 12px 16px;

          .phone {
            display: flex;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-800);
            padding-left: 10px;
          }
        }
      }
    }

    .card-loader {
      margin-top: 24px;
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
      display: flex;
      gap: 16px;
      position: relative;
      overflow: hidden;

      .skeleton {
        background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
        background-size: 200% 100%;
        animation: loadinga 1.5s infinite;
        border-radius: 8px;
      }

      .skeleton-image {
        width: 400px;
        height: 250px;
        border-radius: 8px;
      }

      .skeleton-text {
        width: 100%;
        height: 18px;
        margin-top: 12px;
      }

      .skeleton-button {
        width: 150px;
        height: 48px;
        border-radius: 8px;
        margin-top: 40px;
      }

      .list-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 24px;
        margin-top: 40px;
      }

      .skeleton-list {
        flex-basis: 45%;
        height: 14px;
        margin-bottom: 6px;
      }

      .content {
        flex: 1;
      }
    }
  }

  .btn-group {
    border: 2px solid #f2e060;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;

    &.btn-toggle {
      button {
        background-color: #fff;
        border: none;
        padding: 10px 16px;
        font-size: 16px;
        font-weight: 500;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;

        &.active {
          background-color: #f2e060;
        }
      }
    }
  }

  .end-message {
    padding: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
}

.filter-right {
  display: flex;
  gap: 16px;

  /* button {
        gap: 10px;
        display: inline-flex;
        align-items: center;
        padding: 6px 24px;
        display: none;
    } */
}

/* list page end */

/* list detail page start */

.main-wrapper,
.inner-wrapper,
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 16px !important;
  padding-right: 16px !important;
  width: 100% !important;
}

.navigation-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray-200);
  padding: 20px 5px;
  font-size: 16px;
  font-weight: 600;

  & .back-btn>a>svg {
    vertical-align: -0.07143em;
    height: 1em;
    margin-right: 0.5rem;
  }
}

.navigation-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
}

.navigation-wrapper.breadcrum-wrapper {
  justify-content: center;
}

svg.svg-inline--fa.fa-arrow-left-long.fa-sm {
  vertical-align: -0.07143em;
  height: 1em;
}

.breadcrumb {
  text-align: end;
  font-weight: 600;
  font-size: 16px;
}

.breadcrumb span:after {
  content: ">";
  padding: 0 5px;
}

.breadcrumb span.current {
  font-weight: 400;
}

.breadcrumb span.current:after {
  content: "";
}

.inner-search {
  &.search-area {
    border: none;
    background-color: rgba(var(--white), 1);
  }
}

.page-header {
  background-color: var(--color-mint-green-light);
  padding: 50px 0;
  margin-bottom: 32px;

  .inner-wrapper {
    gap: 32px;
    display: flex;
    flex-direction: column;
    text-align: center;

    h1 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 52px;
    }

    p {
      font-size: 16px;
    }

    .page-header-logo {
      width: 160px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      background-color: rgba(var(--white), 1);
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);

      img {
        width: auto !important;
        max-width: 100%;
        max-height: 100%;
      }
    }
  }
}

.listing-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 30px;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
  }

  &.verified {
    color: var(--color-success);

    &::before {
      background-image: url("/wp-content/uploads/2025/02/check-circle.svg");
    }
  }

  &.not-verified {
    color: var(--color-error);

    &::before {
      background-image: url("/wp-content/uploads/2025/02/close-circle.svg");
    }
  }
}

.list-details {
  display: flex;
  align-items: flex-start;
  padding: 32px 0 60px;
  gap: 80px;

  .left-section {
    max-width: 67%;
    width: 850px;
    flex-grow: 1;
    gap: 40px;
    display: flex;
    flex-direction: column;

    .main-info {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .section {
      padding-top: 60px;
      border-top: 1px solid var(--gray-200);
      display: flex;
      flex-direction: column;
      gap: 32px;

      .subheading {
        font-size: 16px;
        font-weight: normal;
        gap: 5px;
        display: flex;
        align-items: center;
      }
    }

    .top-carehome-details {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 72px;

      >div:first-child {
        display: flex;
        gap: 8px;
        flex-direction: column;
        width: 100%;

        .carehome-name {
          margin: 0;
          font-weight: 700;
          max-width: 90%;
        }
      }

      .favourites {
        min-width: 40px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-gold);
        border-radius: 50%;
        cursor: pointer;

        &.bookmarked {
          svg {
            transition: all 0.3s ease-in-out;
            fill: var(--black);
          }
        }
      }
    }

    .action-btn-group {
      display: flex;
      align-items: center;

      .btn-list-action {
        flex-grow: 1;
        flex-basis: 25%;
        display: flex;
        border: 1px solid var(--gray-300);
        background-color: rgba(var(--white), 1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 12px 16px;
        border-radius: 0;
        gap: 8px;
        font-size: 14px;
        color: var(--gray-900) !important;
        cursor: pointer;

        &:hover {
          background-color: var(--gray-100);
        }

        &:not(:first-child) {
          margin-left: -1px;
        }

        &:first-child {
          border-radius: 8px 0px 0px 8px;
        }

        &:last-child {
          border-radius: 0px 8px 8px 0px;
        }
      }
    }

    .gallery-swiper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background-color: #dfdfdf;
      border-radius: 12px;

      .swiper-wrapper {
        align-items: center;
      }

      .swiper-slide {
        overflow: hidden;

        img {
          height: 645px;
          width: 100%;
          object-fit: cover;
        }

        video {
          max-height: 645px;
          width: 100%;
          display: block;
        }
      }

      .swiper-navigation {
        height: 0;

        .swiper-button-next,
        .swiper-button-prev {
          position: absolute;
          margin-top: -44px;
          top: 50%;
          bottom: auto;
          background-color: var(--black);

          &::after {
            color: rgba(var(--white), 1);
          }
        }
      }

      .swiper-button-next {
        right: 16px;
      }

      .swiper-button-prev {
        left: 16px;
      }

      .swiper-pagination {
        text-align: center;
        top: auto !important;
        bottom: 38px !important;
        background-color: #fff;
        margin: 0 auto;
        width: auto;
        padding: 6px 14px;
        border-radius: 100px;
        font-weight: 600;
      }
    }

    .scroll-tab {
      ul {
        margin-bottom: 0;
        display: flex;
        gap: 24px;
        border-bottom: 2px solid var(--gray-200);
      }

      li {
        &.active {
          .nav-link {
            color: var(--color-success);
            border-bottom: 2px solid var(--color-success);
            margin-bottom: -2px;
          }
        }

        .nav-link {
          padding: 16px 0;
          display: block;
          font-weight: 500;
          font-size: 16px;

          &:hover {
            color: var(--color-success);
          }
        }
      }

      &.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

        ul {
          max-width: 1300px;
          margin: 0 auto;
          border: none;
          padding-left: 16px;
          padding-right: 16px;
        }
      }
    }

    .section-heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .overview {
      padding-top: 0 !important;
      border: none;

      .section-heading {
        margin-bottom: 0;
      }

      p {
        font-size: 16px;
        margin-bottom: 0;
        line-height: 1.5;
      }

      .more-info {
        display: flex;
        flex-wrap: wrap;

        .info-box {
          flex: 0 0 33.33%;
          max-width: 33.33%;
          margin-top: 32px;
          box-sizing: border-box;

          .icon-box-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--color-mint-green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
          }

          .title {
            font-size: 16px;
            font-weight: 600;
          }

          .value {
            font-size: 16px;
            color: var(--gray-700);
            max-width: 90%;
          }
        }
      }
    }
    .care-available {
      ul {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;

        li {
          display: flex;
          align-items: center;
          flex-basis: 45%;
          margin-bottom: 16px;
          gap: 10px;
        }
      }
    }

    .cqc-rating {
      .rating-and-report {
        border: 1px solid var(--color-success);
        border-radius: 12px;
        overflow: hidden;
        width: 100%;

        .report-section {
          background-color: var(--color-green);
          padding: 32px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 24px;

          .description {
            max-width: 585px;
            font-size: 18px;
            text-align: center;
            line-height: 1.5;
            font-weight: 500;
          }
        }

        .rating-section {
          padding: 24px;
          background-color: #ddfdf2;

          .overall-rating {
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .heading {
              font-size: 24px;
              font-weight: 700;
            }

            .rating {
              font-size: 24px;
              font-weight: 700;
              display: flex;
              align-items: center;
              gap: 5px;
            }
          }

          .all-ratings {
            background-color: rgba(var(--white), 1);
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
            border-radius: 8px;

            li {
              font-size: 16px;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 16px 24px;
              border-bottom: 1px solid var(--gray-200);

              &:last-child {
                border-bottom: 0;
              }

              .value {
                display: flex;
                align-items: center;
                gap: 5px;
                font-weight: 600;

                img {
                  width: 16px;
                }
              }
            }
          }
        }
      }
    }

    .map-section {
      .map {
        height: 250px;
        border-radius: 8px;
        overflow: hidden;
      }
    }

    .reviews {
      .rating-details {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;

        .total-reviews {
          span {
            display: block;
            font-size: 18px;
            font-weight: 500;

            &:last-child {
              font-weight: 600;
            }
          }
        }

        .star-rating {
          background-color: #ddfdf2;
          padding: 12px 16px;
          border-radius: 8px;
          display: flex;
          align-items: center;
          gap: 10px;
          font-weight: 500;

          >div {
            display: flex;
            gap: 5px;
          }
        }
      }

      .all-reviews {
        display: flex;
        flex-wrap: wrap;
        gap: 0 8%;

        .review-box {
          flex-basis: 46%;
          margin-bottom: 24px;

          .title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;

            .chip {
              background-color: var(--gray-100);
              border: 1px solid var(--gray-300);
              font-size: 10px;
              border-radius: 100px;
              padding: 2px 8px;
            }
          }

          .progressbar-box {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
          }

          .progress {
            height: 100%;
            transition: width 0.5s ease-in-out;
          }

          .progressbar-box[data-width^="0"],
          .progressbar-box[data-width^="1"],
          .progressbar-box[data-width^="2"],
          .progressbar-box[data-width^="3"] {
            --progress-color: var(--color-error);
          }

          .progressbar-box[data-width^="4"],
          .progressbar-box[data-width^="5"],
          .progressbar-box[data-width^="6"] {
            --progress-color: var(--color-warning);
          }

          .progressbar-box[data-width^="7"],
          .progressbar-box[data-width^="8"],
          .progressbar-box[data-width^="9"],
          .progressbar-box[data-width^="10"] {
            --progress-color: var(--color-success);
          }

          .progress {
            background-color: var(--progress-color, red);
          }
        }
      }
    }

    .add-reviews {
      padding: 24px;
      background-color: var(--gray-100);
      border: none !important;
      border-radius: 8px;

      .section-heading {
        margin-bottom: 0;
      }

      .rating-box {
        display: flex;
        gap: 24px;

        .box {
          flex-grow: 1;
        }

        h6 {
          font-size: 14px;
          font-weight: 500;
        }

        .rating {
          display: flex;
          justify-content: flex-end;
          overflow: hidden;
          flex-direction: row-reverse;
        }

        .rating-0 {
          filter: grayscale(100%);
        }

        .rating>input {
          display: none;
        }

        .rating>label {
          cursor: pointer;
          width: 30px;
          height: 30px;
          margin-top: auto;
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23C5C5C5' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: center;
          background-size: 76%;
          transition: 0.3s;
        }

        .rating>input:checked~label,
        .rating>input:checked~label~label {
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23FFD128' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
        }

        .rating>input:not(:checked)~label:hover,
        .rating>input:not(:checked)~label:hover~label {
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
        }
      }

      .form-footer {
        display: flex;
        justify-content: flex-end;
        margin-top: 24px;
      }
    }
  }

  .right-section {
    overflow: hidden;
    position: sticky;
    top: 60px;
    height: fit-content;
    min-width: 295px;
    max-width: 338px;
    flex-grow: 1;

    .view-map {
      border-radius: 8px;
      padding: 13px 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid var(--color-success);
      margin-bottom: 32px;

      .icon-wrapper {
        min-width: 40px;
        width: 40px;
        height: 40px;
        background-color: var(--color-success);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .location {
        display: flex;
        flex-direction: column;

        span {
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }

        a {
          color: var(--color-success);
          font-weight: 500;
          font-size: 16px;
        }
      }
    }

    .info-box {
      background-color: var(--color-mint-green-light);
      border: 1px solid var(--color-mint-green-dark);
      padding: 24px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      gap: 24px;

      .provider-logo {
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--black);
        border-radius: 6px;
        background-color: rgba(var(--white), 1);
      }

      .room-info {
        border: 1px solid var(--black);
        border-radius: 6px;
        background-color: rgba(var(--white), 1);
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;

        .overlay-chip {
          font-size: 16px;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 10px;

          .chip-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--black);
          }
        }

        button {
          width: 100%;
        }
      }

      .contant-info {
        border: 1px solid var(--black);
        border-radius: 6px;
        background-color: rgba(var(--white), 1);
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;

        h5 {
          margin-top: 0;
          font-size: 20px;
        }

        p {
          margin-bottom: 0;
        }

        .btn {
          width: 100%;
          display: flex;
          gap: 10px;
          font-size: 16px;
          font-weight: 600;
          text-align: center;
          justify-content: center;
          border: none;
          background-color: var(--color-mint-green-light);
          color: var(--black);
        }
      }
    }
  }
}

/* list detail page end */

/* explore page start */
.explore-page {
  .list-wrapper {
    margin-top: 0;

    .list-main-container {
      margin-top: 0px;
      padding-top: 0px;

      .list-container {
        .tag-location {
          white-space: nowrap;
          background-color: var(--color-mint-green-light);
          color: var(--black) !important;
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 8px 14px;
          border-radius: 100px;
          font-weight: 500;
          margin-top: 16px;
        }

        .list-card {
          .list-content {
            align-items: flex-start;
          }

          .img-wrapper .img-overlay .overlay-chip .chip-icon {
            color: #fff;
          }
        }
      }
    }
  }
}

/* explore page end */

/* Blog detail page start */
.post-cover-buttons>ul>li>a>i,
.post-cover-buttons>ul>li>div>i {
  color: var(--color-success);
  opacity: 1 !important;
}

.share-options {
  li a {
    color: var(--gray-900) !important;
  }
}

.sidebar-wrapper {
  overflow: hidden;
  position: sticky !important;
  top: 0px;
  height: fit-content;
}

.sidebar {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 73px;

  .widget-title {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .blog-compact-item-container {
    margin-bottom: 24px;
    display: block;
    color: var(--gray-900) !important;

    &:last-child {
      margin-bottom: 0;
    }
  }

  .blog-compact-item {
    display: flex;
    gap: 16px;

    h4 {
      font-size: 16px;
      margin-top: 5px;
    }

    .thumbnail {
      width: 100px;
      min-width: 100px;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #dfdfdf;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  .question-box {
    padding: 24px;
    background-color: var(--color-mint-green-light);
    margin-top: 16px !important;
    border: 1px solid var(--color-success);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;

    p {
      font-size: 16px;
      font-weight: 600;
      max-width: 250px;
    }
  }
}

/* Blog detail page end */

/* contact page start */
.contact-frm {

  input,
  select,
  textarea {
    margin: 0 !important;
  }

  select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/wp-content/uploads/2025/02/down-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
  }

  .frm-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.contact-heading {
  svg path {
    fill: inherit !important;
  }
}

/* contact page end */

/* pricing page start */
.pricing-wrapper {
  .pricing-box {
    .price {
      sub {
        font-size: 16px;
        bottom: 2px;
      }
    }

    .plan-btn a {
      width: 100%;

      .elementor-button-icon {
        opacity: 0;
        position: absolute;
        transition: all 0.3s ease-in-out;
        margin-left: -142px;
      }

      &:hover {
        .elementor-button-icon {
          opacity: 1;
          transition: all 0.3s ease-in-out;
          margin-left: -122px;
        }
      }
    }
  }
}

/* pricing page end */

/* User dashboard CSS start */
.mlduo-welcome-message h1 {
  text-transform: capitalize;
}

.mlduo-stat-box {
  border-radius: 8px;
}

.mlduo-stat-box h2 {
  font-weight: 600 !important;
}

.element {
  border-radius: 8px !important;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15) !important;
}

.search-my-listings input {
  font-weight: 400 !important;
}

table.job-manager-jobs tr {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15) !important;
}

.listing-cell img {
  border: 1px solid var(--gray-300);
}

.bookmark-actions a,
.job-dashboard-actions li a {
  color: var(--gray-800) !important;
}

.job-manager-pagination {
  text-align: center;
  margin-top: 24px;
}

.ac-details-container {
  label {
    font-size: 14px !important;
  }

  legend {
    display: none !important;
  }
}

/* User dashboard CSS end */

.ych-pagination {
  display: flex;
  justify-content: center;
}

/* Faq start */
.faq-container {
  width: 100%;
  padding-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-success);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: var(--gray-800);
  padding: 0;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
  box-sizing: content-box;

  a {
    color: var(--color-mint-green-dark);
  }
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-wrapper {
  .section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
  }
}

/* Faq end */

/* Login page start */
.login-tabs li {
  padding-right: 20px !important;
}

.login-tabs {
  margin-bottom: 24px;
}

.login-content {
  width: 380px !important;

  .form-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
}

.md-checkbox input[type="checkbox"]:checked+label:before,
.md-checkbox input[type="radio"]:checked+label:before {
  background: var(--gray-900) !important;
}

form.sign-in-form .form-group,
form.sign-in-form .social-networks-repeater {
  margin-bottom: 30px !important;
}

form.sign-in-form .form-group label {
  font-size: 14px !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  outline: none !important;
}

.lost_reset_password {
  .button {
    background-color: var(--color-gold) !important;
    color: var(--black) !important;
  }
}

/* Login page end */

/* choose package start */

.section-title[class] {
  margin-bottom: 60px;

  h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
  }
}

.job_listing_packages {
  .section-body {
    justify-content: center;

    .pricing-item {
      box-shadow: none;
      border: 2px solid;
      border-radius: 8px;
      height: 100%;
      text-align: left;
      padding: 16px;
      display: flex;
      flex-direction: column;

      .buttons {
        background-color: var(--black);
        color: rgba(var(--white), 1) !important;
        border: 1px solid var(--black);
        font-weight: 500;
        padding-left: 0;
        padding-right: 0;
        text-align: center;

        &:hover {
          background-color: transparent;
          color: var(--black) !important;
        }
      }

      .select-package,
      .plan-desc,
      .plan-features,
      .plan-price {
        padding: 0;
      }

      .plan-name {
        font-size: 18px;
        color: #242429;
        font-weight: 500;
        padding: 0px;
        text-transform: capitalize;
        letter-spacing: 0;
      }

      .plan-desc {
        order: 0;

        &:empty {
          display: block;
        }
      }

      .select-package {
        order: 1;
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;

        .package-available {
          .dropdown-menu {
            margin-bottom: 4px;
            box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.04);
            border: none;
            background: #fff;
            padding: 10px 20px;
            max-height: 316px;
            overflow-y: auto;
            transition: all 0.3s;
            width: 100%;
          }

          >.use-package-toggle {
            margin-left: 0;
            margin-bottom: 0;
            border-bottom: none;
            background-color: #fff;
            padding: 8px 16px;
            width: 100%;
            border-radius: 4px;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
          }
        }
      }

      .plan-features {
        order: 2;
        margin-bottom: 0;
        margin-top: 40px;

        h5 {
          margin-top: 0;
          font-size: 16px;
          margin-bottom: 16px;
        }

        li {
          position: relative;
          padding-left: 25px;

          &::before {
            content: "";
            position: absolute;
            background-image: url("/wp-content/uploads/2025/03/check-circle-black.svg");
            width: 18px;
            height: 18px;
            left: 0;
          }
        }
      }

      .plan-price {
        >span {
          font-size: 32px !important;
          font-weight: 600;
          color: var(--black) !important;
        }

        span.woocommerce-Price-currencySymbol {
          font-size: 32px !important;
          top: 0 !important;
          padding-right: 3px !important;
          font-weight: 600;
        }
      }
    }

    .col-md-6:nth-child(1) .pricing-item {
      background-color: var(--color-yellow);
      border-color: #f5d8af;

      .buttons {
        background-color: #fad8a7;
        color: var(--black) !important;

        &:hover {
          background-color: rgba(var(--white), 1);
          color: var(--black) !important;
        }
      }
    }

    .col-md-6:nth-child(2) .pricing-item {
      background-color: var(--color-blue);
      border-color: #b6d7fc;
    }

    .col-md-6:nth-child(3) .pricing-item {
      background-color: var(--color-green);
      border-color: #6cebc0;
    }

    .col-md-6:nth-child(4) .pricing-item {
      background-color: var(--color-purple);
      border-color: #e4aff1;
    }
  }
}

/* choose package end */

/* checkout page start */
.wc-block-checkout,
.wc-block-cart {
  max-width: 1300px;
  margin: 0 auto !important;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
  border: 1px solid var(--gray-200);
}

/* checkout page end */

/* cart page start */
.wc-block-cart {
  padding-top: 60px !important;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  border: 1px solid var(--gray-200);
}

.wc-block-cart-item__image {
  padding-left: 0 !important;
}

.wp-block-woocommerce-proceed-to-checkout-block {
  margin-top: 24px !important;
}

.wc-block-components-button,
.wc-block-components-button {
  background-color: var(--color-gold) !important;
  color: var(--gray-900) !important;
  border-color: var(--color-gold) !important;
  border-width: 2px;
  border-radius: 6px;
  font-weight: 500;
  border: none;

  &:hover {
    background-color: var(--color-gold-light) !important;
    border-color: var(--color-gold-light) !important;
  }
}

.wc-block-components-product-name {
  font-size: 17px !important;
  font-weight: 600 !important;
}

.is-large.wc-block-cart .wc-block-cart-items th,
.is-large.wc-block-cart .wc-block-cart__totals-title {
  font-size: 14px !important;
}

/* cart page end */

/* order received page start */
.woocommerce-checkout #c27-site-wrapper>.woocommerce {
  padding-top: 0px !important;
}

p.job-manager-submitted-paid-listing-actions {
  display: flex;
  gap: 16px;
}

/* order received page end */

.submit-claim-form {
  .button-2 {
    background-color: var(--color-gold) !important;
    color: var(--gray-900) !important;
    border-color: var(--color-gold) !important;
    border-width: 2px;
    border-radius: 6px;

    &:hover {
      background-color: var(--color-gold-light) !important;
      border-color: var(--color-gold-light) !important;
    }
  }
}

.ych-file-types {
  h6 {
    margin-top: 5px;
    margin-bottom: 4;
  }

  small {
    font-size: 14px;
    word-wrap: break-word;
    text-transform: uppercase;
  }
}

.job-manager-error {
  width: fit-content;
}

.submit-claim-form {
  .field-head label {
    font-weight: 600;
  }

  .button-2 {
    background-color: var(--color-gold) !important;
    color: var(--gray-900) !important;
    border-color: var(--color-gold) !important;
    border-width: 2px;
    text-transform: capitalize !important;

    &:hover {
      background-color: var(--color-gold-light) !important;
      border-color: var(--color-gold-light) !important;
    }
  }

  .file-upload-field {
    padding: 2px 0 0 !important;
    position: relative;

    .review-gallery-input {
      padding-bottom: 0 !important;
      height: 100%;
    }
  }

  .field-type-file.form-group {
    .review-gallery-add {
      margin-right: 0px;
      width: 100%;
      margin-bottom: 7px;
      border-radius: 6px;
      height: 130px;

      .content {
        padding-bottom: 0 !important;
        position: absolute;
        height: 100%;
      }

      i {
        font-size: 40px;
        transform: translate(-52%, -66%);
      }
    }
  }

  small.description {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
  }

  .job-manager-uploaded-file {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 6px;
    width: 100%;
    height: auto;

    .uploaded-file-preview {
      display: flex;
      align-items: center;
      justify-content: space-between;

      .job-manager-uploaded-file-name {
        display: flex;
        flex-direction: row;
        align-items: center;

        i.insert_drive_file {
          position: static;
          transform: none;
          font-size: 30px;
          color: var(--black);
        }

        code {
          position: static;
          font-size: 14px;
          font-family: "Poppins";
        }
      }

      progress {
        display: none !important;
      }
    }

    .review-gallery-image-remove {
      position: static;
      width: 26px;
      height: 26px;
      background: var(--color-error);
      opacity: 1;
      visibility: visible;
      display: flex;
      align-items: center;
      justify-content: center;

      i {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        font-size: 16px;
      }
    }
  }
}

/* add listing form start */
.add-listing-step,
.edit-listing-step {
  .select2-container--default .select2-selection--single {
    .select2-selection__rendered[class] {
      font-weight: 400 !important;
      color: var(--gray-900) !important;
      padding: 0 !important;
      border-radius: 0 !important;
      border: none !important;
    }
  }

  .select2-container--default .select2-selection--single {
    .select2-selection__arrow {
      right: 0 !important;
    }
  }

  #submit-job-form .form-section {
    width: 100%;
  }

  #form-section-general .pf-body {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
    gap: 30px;
  }

  #submit-job-form .element .pf-head {
    padding: 20px !important;
    border-bottom: 2px solid var(--gray-300);
    margin-bottom: 20px;
  }

  .form-group {
    flex-basis: calc(50% - 15px);
    flex-grow: 1;
  }

  .fieldset-job_cover,
  .field-type-textarea,
  .fieldset-job_description,
  .fieldset-job_logo,
  .fieldset-county,
  .fieldset-job_location {
    flex-basis: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
  }

  #submit-job-form .form-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none !important;
  }

  #submit-job-form .form-group.field-type-date,
  #submit-job-form .form-group.field-type-email,
  #submit-job-form .form-group.field-type-number,
  #submit-job-form .form-group.field-type-password,
  #submit-job-form .form-group.field-type-related-listing,
  #submit-job-form .form-group.field-type-select,
  #submit-job-form .form-group.field-type-select-product,
  #submit-job-form .form-group.field-type-select-products,
  #submit-job-form .form-group.field-type-term-multiselect,
  #submit-job-form .form-group.field-type-term-select,
  #submit-job-form .form-group.field-type-text,
  #submit-job-form .form-group.field-type-textarea,
  #submit-job-form .form-group.field-type-texteditor,
  #submit-job-form .form-group.field-type-url,
  #submit-job-form .form-group.field-type-work-hours {
    padding: 0 !important;
  }

  .review-gallery-add[class] {
    position: relative !important;

    .content {
      padding: 0 !important;
      height: 100%;

      input {
        padding: 0 !important;
        height: 100%;
      }
    }
  }

  .event-picker .date-add-new,
  .social-networks-repeater>input[type="button"] {
    margin-top: 45px !important;
  }

  .preview-btn,
  .save-listing-button {
    flex-basis: calc(50% - 10px);
  }

  .skip-preview-btn {
    margin-bottom: 0px !important;
  }

  .listing-form-submit-btn {
    gap: 20px;
  }
}

/* add listing form end */

/* sitemap page start */
.rank-math-html-sitemap {
  padding-bottom: 50px;
}

.rank-math-html-sitemap__section {
  border-radius: 8px;
  background-color: rgba(var(--white), 1);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
  overflow: hidden;

  &:last-child {
    margin-bottom: 0;
  }

  .rank-math-html-sitemap__title {
    margin: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 24px;
    background-color: #e3fef4;
  }
}

.rank-math-html-sitemap__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 24px;

  li {
    flex-basis: calc(33.3% - 32px);

    a {
      text-decoration: underline;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      padding: 8px 40px 8px 0;

      &:hover::before {
        background-color: var(--color-mint-green-dark);
        color: rgba(var(--white), 1);
      }

      &::before {
        content: "\e87d";
        position: absolute;
        right: 0;
        font-family: eicons !important;
        font-size: 14px;
        width: 24px;
        height: 24px;
        background-color: var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--black);
      }
    }

    &.location-parent-one {
      ul li {
        flex-basis: calc(33.33% - 32px) !important;
      }

      >a {
        font-weight: 600;
        text-decoration: none;
        font-size: 20px;
        margin-bottom: 8px;

        &::before {
          display: none;
        }

        +ul {
          border-radius: 8px;
          background-color: rgba(var(--white), 1);
          border: 1px solid var(--gray-200);
          overflow: hidden;
        }
      }

      &:first-child {
        >a {
          font-weight: 600;
          text-decoration: none;
          font-size: 20px;
          margin-bottom: 8px;

          &::before {
            display: none;
          }

          +ul {
            padding: 0;
            border: none;

            >li {
              border-radius: 8px;
              background-color: rgba(var(--white), 1);
              border: 1px solid var(--gray-200);
              overflow: hidden;

              >a {
                padding: 16px 24px;
                border-bottom: 1px solid var(--gray-200);
                background-color: var(--gray-100);
                font-weight: 600;

                &::before {
                  display: none;
                }
              }
            }
          }
        }

        ul li {
          flex-basis: 100% !important;

          ul li {
            flex-basis: calc(33.33% - 32px) !important;
          }
        }
      }
    }
  }
}

.rank-math-html-sitemap__section--region h2+ul>li a+ul li a+ul li {
  flex-basis: calc(33.33% - 32px);
}

.rank-math-html-sitemap__section--region h2+ul>li {
  flex-basis: 100%;
}

.rank-math-html-sitemap__section--region h2+ul>li a+ul li {
  flex-basis: 100%;
}

/* sitemap page end */

/* Coming soon page start */

.coming-soon[class] {
  input[type="submit"] {
    background-color: var(--color-gold) !important;
    color: var(--black) !important;
    background-image: url("/wp-content/uploads/2025/03/sent-black.png") !important;
  }
}

/* Coming soon page end */

.modal {
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow: auto;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-dialog {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.modal-content {
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);

  .modal-title {
    margin: 0;
  }
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid var(--gray-200);

  .btn.close-btn {
    font-size: initial;
  }
}

.modal-lg {
  max-width: 900px;
}

.modal-body {
  padding: 24px;
}

/* Close Button */
.close-btn {
  font-size: 30px;
  cursor: pointer;
}

.form-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("/wp-content/uploads/2025/04/checkbox-check.svg");
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input {
  flex-shrink: 0;
  width: 1.3em !important;
  height: 1.3em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(var(--white), 1);
  background-image: url("/wp-content/uploads/2025/04/radio-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--gray-200) !important;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
  outline: none !important;
}

.form-check-input:checked {
  background-color: var(--color-success);
  border-color: var(--color-success) !important;
}

.modal.detail-page-popup {
  h5 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 30px;
  }

  label {
    font-size: 14px;
  }

  .form-group {
    margin-bottom: 0;
  }

  .form-check {
    label {
      display: flex;
      flex-direction: column;
    }

    span {
      font-size: 16px;
      font-weight: 500;
    }
  }

  .option-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  &.phone-popup {
    .content-wrapper {
      margin-top: 32px;
      padding: 24px 24px 16px;
      border-top: 1px solid var(--gray-200);

      h5 {
        margin-bottom: 16px !important;
      }

      .contant-info a {
        display: inline-flex;
        gap: 10px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        border: none;
        background-color: var(--color-mint-green-light);
        color: var(--black);

        &:hover {
          background-color: var(--color-gold);
        }
      }
    }
  }

  .frm-section {
    margin-bottom: 32px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.booktour-popup,
.email-popup,
.brochure-popup {
  .modal-body {
    h4 {
      margin-top: 0;
      margin-bottom: 24px;
      color: var(--color-success);
    }
  }
}

.email-popup,
.brochure-popup {
  .alert {
    margin-bottom: 32px;
  }

  .option-wrapper {
    margin-bottom: 48px;
  }

  .email-content {
    margin-bottom: 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sitemap-tabs {
  padding-bottom: 50px;
}

.sitemap-dropdown {
  position: relative;

  .btn-sitemap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 16px;
    padding-right: 40px;
    background-color: rgba(var(--white), 1);

    &::after {
      content: "";
      position: absolute;
      right: 10px;
      background-image: url("/wp-content/uploads/2025/02/down-arrow.svg");
      width: 14px;
      height: 14px;
    }
  }
}

.sitemap-cards {
  .card-box {
    flex-basis: calc(33.33% - 22px);
    background-color: rgba(var(--white), 1);
    transition: all 0.3s ease-in-out;

    &:hover {
      background-color: #e3fef4;
      border-color: var(--color-mint-green-dark);
    }
  }

  &.main-sitemap-container {
    position: absolute;
    display: none;
    top: 100%;
    z-index: 99;
    margin-top: 10px;
    min-width: 300px;
    right: 0;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.15);
    background-color: rgba(var(--white), 1);
    border-radius: 8px;
    overflow: hidden;

    &.show {
      display: block;
    }

    .card-box {
      flex-basis: 100%;
      border-top: 1px solid #cacaca;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px;

      &:first-child {
        border: none;
      }

      .icon-box {
        width: 25px;

        img {
          width: 100%;
        }
      }

      h2 {
        font-size: 16px;
        margin: 0;
        font-weight: 500;
      }
    }
  }
}

.sitemap-action {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  .tabs {
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 0px;

    .tab-link {
      width: 120px;
    }

    .sitemap-heading {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 600;
      margin: 0;

      img {
        width: 40px;
      }
    }
  }
}

.dashboard {
  padding-top: 40px;
  padding-bottom: 40px;

  .border-box {
    border: 1px solid var(--gray-300);
    overflow: hidden;
    border-radius: 8px;
  }

  .plan-overview {
    margin-bottom: 32px;

    .content {
      padding-top: 16px;
      padding-bottom: 16px;

      a {
        color: var(--color-mint-green-dark);

        &:hover {
          text-decoration: underline;
        }
      }
    }
  }

  .content {
    padding: 24px;
  }

  .dashboard-filters h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-300);
    background-color: #f9f9f9;

    h2 {
      font-size: 20px;
      margin: 0;
    }

    .btn {
      padding: 8px 24px;
      font-size: 14px;
    }
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;

    tr:last-child td {
      border-bottom: none !important;
    }
  }

  table th,
  table td {
    padding: 16px 8px;
    border-bottom: 1px solid #ddd;
  }

  .summary-cards {
    margin-bottom: 8px;
  }

  .card {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;

    &.one {
      background-color: #3f87d6;
    }

    &.two {
      background-color: #e19d3b;
    }

    &.three {
      background-color: #47d7a6;
    }

    &.four {
      background-color: #bd4fd9;
    }
  }

  .card h3 {
    margin-bottom: 6px;
    margin-top: 0;
    font-size: 30px;
    font-weight: 600;
    color: rgba(var(--white), 1);
  }

  .card p {
    font-size: 14px;
    color: rgba(var(--white), 1);
    margin-bottom: 0;
  }

  .status.red {
    color: red;
  }

  .status.green {
    color: green;
  }

  .lead-breakdown {
    margin-bottom: 32px;

    .content {
      padding-bottom: 16px;
    }

    table {
      .form-check {
        /* flex-direction: row-reverse; */
        white-space: nowrap;

        .btn {
          border-radius: 4px;
          padding: 5px 12px;
          font-size: 13px;
          min-width: 80px;

          /* &.btn-dark {
            min-width: 139px;
          } */
        }
      }

      thead tr th:last-child {
        width: 10%;
      }

      thead tr th {
        white-space: nowrap;
      }
    }
  }

  .view-response-button {
    background-color: transparent;
    border: none;

    svg {
      width: 22px;
      height: 22px;

      path {
        fill: #75c699;
      }
    }
  }

  .spam-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid;
    padding: 4px 10px;
    font-size: 12px;

    &.pending {
      color: #e19d3b;
      background-color: #fff3e6;
      border-color: #e19d3b;
    }

    &.approved {
      color: #75c699;
      background-color: #f0fff9;
      border-color: #75c699;
    }

    &.rejected {
      color: #e13b3b;
      background-color: #fff0f0;
      border-color: #e13b3b;
    }
  }

  .reject-info {
    display: flex;
    align-items: center;
    gap: 5px;

    svg {
      width: 16px;
      height: 16px;
    }

    .reason-btn {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .request-spam {
    background-color: #cff4fc;
    border-radius: 6px;
    border: 1px solid #9eeaf9;
    color: #055160;
    padding: 16px;
    margin-bottom: 16px;
  }

  .badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: rgba(var(--white), 1);
    width: 125px;
    display: block;
    text-align: center;
  }

  .badge.pending {
    background: var(--color-warning);
  }

  .badge.spam {
    background: var(--color-error);
  }

  .badge.billed {
    background: var(--color-success);
  }

  .badge.confirmed {
    background: var(--color-success);
  }

  .lead-bid .form-check {
    padding: 10px 0;
    margin-bottom: 16px;
  }

  .lead-bid input[type="text"] {
    width: 180px;
  }

  .submit-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 5px;
  }

  .chart-placeholder {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-300);
    display: flex;
    justify-content: flex-end;
  }

  .premium-leads {
    margin-bottom: 32px;
  }

  .footer-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
}

.chart-container {
  padding: 16px 20px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgb(255, 255, 255);
  z-index: 999;
}

.full-modal-header {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);

  +div {
    padding: 24px;
  }

  h2 {
    margin: 0;
  }
}

.modal-close {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
}

.listing-form-submit-btn {
  justify-content: flex-start !important;
  flex-direction: row-reverse;

  button {
    width: fit-content !important;
    flex-basis: auto !important;
  }
}

.end-message {
  display: none !important;
}

.no-result {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.signup-signin-link {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.login-container a {
  color: var(--color-mint-green-dark) !important;
}

.distance {
  margin-top: 4px;
}

.distance img {
  width: 14px;
}

.date-input {
  position: relative;

  svg {
    width: 20px;
    position: absolute;
    height: 20px;
    right: 12px;
    top: 12px;
    cursor: pointer;
  }
}

button[disabled],
html input[disabled] {
  pointer-events: none;
  opacity: 0.6;
}

body.admin-bar .user-profile-dropdown {

  li:nth-child(1),
  li:nth-child(2),
  li:nth-child(3),
  li:nth-child(4),
  li:nth-child(5),
  li:nth-child(6),
  li:nth-child(7) {
    display: none;
  }
}

body.admin-bar .woocommerce-MyAccount-navigation ul {

  li:nth-child(1),
  li:nth-child(2),
  li:nth-child(3),
  li:nth-child(4),
  li:nth-child(5),
  li:nth-child(6),
  li:nth-child(7) {
    display: none;
  }
}

.purchase-disabled {
  opacity: 0.7;
  pointer-events: none;
}

.c27-picked {
  cursor: not-allowed;
}

/* --------New CSS added------- */
.select2-container--default .select2-selection--single .select2-selection__clear:before {
  top: 5px;
  position: absolute;
  right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 48px;
  height: 32px;
}

.job-manager-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: flex;
  order: 1;
  gap: 10px;
  align-items: center;
}

.job-manager-form .select2-container--default .select2-selection--single .select2-selection__clear {
  order: 2;
  margin-top: 14px;
}

.select2-results__option {
  margin: 8px;
  padding: 8px;
  border-radius: 6px;
}

.select2-container--default .select2-results__option[aria-selected="true"]:after {
  top: 6px;
  right: 8px;
}

.select2-container.select2-container--open .select2-dropdown--above {
  border: none;
}

.add-listing-step #submit-job-form {
  padding-bottom: 0px !important;
}

.woocommerce-account .i-section {
  padding-bottom: 0px;
}

ul.select2-results__options.select2-results__options--nested .select2-results__option {
  padding-left: 6px !important;
}

.step-form {
  min-height: 100vh;
  background-color: #d7fff1;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.step-box {
  max-width: 750px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px 2px 17px 2px rgba(0, 0, 0, 0.05);
}

.steps {
  display: flex;
  gap: 8px;
  margin-bottom: 50px;
}

.step-progress-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;

  &.active {
    span {
      color: #000;
    }

    .step-progress {
      background-color: #62bf92;
    }
  }

  span {
    color: #8a8a8d;
  }
}

.step-progress {
  height: 6px;
  width: 100%;
  background-color: #ebebeb;
}

.step:last-child>div {
  margin-bottom: 20px;
}

.step {
  h3 {
    margin-top: 0px;
    font-size: 32px;
    font-weight: bold;
    max-width: 415px;
    margin-bottom: 24px;
  }

  input[type="radio"]+label {
    border: 1px solid #cccccc;
    padding: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 16px;

    .radio-button {
      min-width: 24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid #000;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;

      &:before {
        content: "";
        position: absolute;
        border-radius: 50%;
        width: 14px;
        height: 14px;
        background-color: #62bf92;
        display: none;
      }
    }

    h5 {
      margin: 0;
    }

    p {
      margin: 0;
    }
  }

  input[type="radio"] {
    position: relative;
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  input[type="radio"]:checked+label {
    border-color: #62bf92;
    background-color: #d7fff1;

    .radio-button::before {
      display: block;
    }
  }
}

.step-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  gap: 16px;
}

.suggestions-list.step-suggestions-list {
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #fff;
  padding: 16px;
  left: 0;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  margin-top: 5px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;

  h4 {
    display: none;
  }

  li li {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;

    span {
      font-size: 16px;
      font-weight: 600;
    }

    &:hover {
      span {
        color: #62bf92;
      }
    }
  }
}

.step-suggestions-list-enquiry {
  position: relative;
  top: 100%;
  width: 100%;
  background-color: #fff;
  padding: 16px;
  left: 0;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  margin-top: 5px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;

  h4 {
    display: none;
  }

  li li {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;

    span {
      font-size: 16px;
      font-weight: 600;
    }

    &:hover {
      span {
        color: #62bf92;
      }
    }
  }
}

.btn-help-floating {
  .elementor-icon {
    box-shadow: 0px 0px 7px 4px rgba(0, 0, 0, 0.09);
    cursor: pointer;
  }
}

.btn-help-close {
  cursor: pointer;
}

.help-box {
  display: none;
}

.backdrop {
  background-color: #00000080;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.carehome-suggestion {
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* .container-wrapper {
    max-width: 750px;
  } */
  .card {
    width: 100%;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .card-wrapper {
    display: flex;
    gap: 24px;
    padding: 16px;
  }

  .card-image {
    flex: 1;
    min-width: 400px;
    width: 400px;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }

  .card-image .carehome-image {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 350px;
  }

  .card-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0, rgba(0, 0, 0, 0.8), transparent);
    left: 0;
    top: 0;
  }

  .img-overlay {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
  }

  .overlay-chip {
    background-color: #f2e060;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px 5px 5px;
    border-radius: 100px;
    font-weight: 500;
  }

  .chip-icon {
    background-color: #000;
    border-radius: 50%;
    width: 28px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-content {
    flex: 1;
    padding-top: 8px;
    font-size: 13px;
    color: #555;
  }

  .enquiry-badge {
    margin: 0;
    background: #fffbde;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #f4e578;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .card-title {
    margin: 24px 0 0;
    font-size: 20px;
    color: #000;
    font-weight: bold;
  }

  .location {
    margin: 16px 0 14px 0;
    font-size: 16px;
    color: #000;
    display: flex;
    gap: 6px;
    align-items: flex-start;
  }

  .distance {
    margin-bottom: 24px;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .description {
    font-size: 14px;
    line-height: 1.4;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
  }

  .card-buttons {
    border-top: 1px solid #dfdfdf;
    padding: 12px 16px;
    display: flex;
    gap: 16px;
    text-align: center;
  }

  .btn {
    background: #f2f2f2;
    color: #2a2a2a;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    width: 100%;
    line-height: 2.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .btn img {
    width: 14px;
  }

  .step-footer {
    .btn {
      width: auto;
    }
  }

  .no-results {
    text-align: center;
    padding: 80px 0;

    h3 {
      margin-bottom: 8px;
    }

    .content {
      margin-bottom: 32px;
    }

    .btn {
      width: auto;
      font-weight: 500;
    }

    i {
      font-size: small;
    }
  }
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.cqc-rating {
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cqc-rating .dot {
  width: 10px;
  height: 10px;
  background-color: #00b67a;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -2px;
}

.bold {
  font-weight: 700;
}

.review {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  color: #000;
}

.review img {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.unsubscribe {
  .page-header {
    padding: 70px 0;
    margin: 0;
  }

  .content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-top: 80px;
    width: 100% !important;

    .content-heading {
      font-weight: 600;
      font-size: 16px;
    }
  }

  .content-footer {
    margin-top: 20px;
    text-align: right;
  }

  p {
    font-size: 16px;
  }
}

.facilities,
.activities {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 10px;
  position: relative;

  li {
    flex-basis: 30% !important;
  }

  .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    position: absolute;
    background-color: #fff;
    top: -19px;
    padding: 8px;
    left: 16px;
  }

  img {
    width: 12px;
  }
}

.special-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 10px;
  background-color: #fffcea;
  border-radius: 6px;
  width: 100%;
  color: #000;

  svg {
    min-width: 16px;
    min-height: 16px;
  }

  span {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .main-wrapper {
    display: flex;
    gap: 16px;
    font-size: 16px;
    padding: 13px;
    align-items: center;

    svg {
      min-width: 30px;
      min-height: 30px;
    }
  }
}

.special-offer:hover .offer-tooltip {
  opacity: 1;
  visibility: visible;
}

.offer-tooltip {
  position: absolute;
  top: 100%;
  background-color: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  padding: 9px;
  border-radius: 6px;
  left: 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.offer-tooltip:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.spin-animation {
  animation: spin 6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fieldset-special-offer.field-type-checkbox.form-group {
  /* flex-basis: 100%; */
  padding: 0 !important;

  .md-checkbox label {
    line-height: 1.2;
  }
}

.fieldset-gallery-slider {
  padding: 0 !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;

  .notification {
    position: relative;
    padding-left: 24px;
    border-left: 1px solid #ccc;

    .notification-btn {
      background-color: transparent;
      border: none;
      padding: 0;
    }

    .no-notifications {
      padding: 24px;
      font-size: 16px;
      margin-bottom: 0;
      text-align: center;
      font-weight: 500;
    }

    .view-all {
      padding: 14px;
      text-align: center;
      font-weight: 500;
    }
  }
}

.view-notifications {
  .card {
    background-color: rgba(var(--white), 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    margin-bottom: 40px;
    overflow: hidden;

    .not-found {
      text-align: center;
      padding: 30px 0;
      margin: 0;
      font-size: 16px;
      font-weight: 500;
    }
  }

  .notification-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #efefef !important;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }

  .notification-icon {
    width: 40px;
    height: 40px;
    background-color: #adf6dc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: #6dd19c;

    svg {
      width: 24px;
    }
  }

  .notification-text {
    flex: 1;

    h4 {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      line-height: 1.4;
    }
  }
}

.logged-in .notification {
  display: block;
}

.notification {
  position: relative;
  display: none;
}

.notification-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.notification-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.notification-dot {
  position: absolute;
  top: 1px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #db2323;
  border-radius: 50%;
  border: 2px solid white;
}

.notification-box {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  max-height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.notification-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-panel {
  border-radius: 12px;
  overflow: hidden;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.notification-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #666;
  transition: color 0.2s ease;
  border-radius: 4px;
}

.close-btn:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}

.notification-tabs {
  display: flex;
  padding: 0 24px;
  border-bottom: 1px solid #f0f0f0;
}

.notification .tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  margin-right: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.notification .tab-btn.active {
  color: #6dd19c;
}

.notification .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #6dd19c;
  border-radius: 1px;
}

.notification .notification-content {
  max-height: 564px;
  overflow-y: auto;
}

.notification .tab-content {
  display: none;
}

.notification .tab-content.active {
  display: block;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  border-bottom: 1px solid #efefef !important;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.notification-item:hover {
  background-color: #fafafa;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item.read {
  opacity: 0.7;
}

.notification-icon {
  width: 40px;
  height: 40px;
  background-color: #adf6dc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  color: #6dd19c;
}

.notification-text {
  flex: 1;
}

.notification-date {
  font-size: 12px !important;
  margin-top: 8px !important;
}

.notification-text h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.notification-text p {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.notification-text strong {
  font-weight: 600;
  color: #706969;
}

.nav-link {
  color: var(--e-global-color-accent);
  font-weight: 500;
}

/* Information Disclaimer Section */
.info-disclaimer {
  padding-bottom: 80px;

  .disclaimer-box {
    background: #ddfdf2;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .icon-wrapper {
    margin-top: 4px;

    img {
      width: 18px;
      height: 18px;
    }
  }

  .disclaimer-content {
    flex: 1;

    p {
      font-size: 14px;
      line-height: 1.6;
      color: #000000;
      margin: 0;
    }
  }

  .disclaimer-title {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 6px;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .steps {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
    width: calc(100% - 40px);
  }

  .step-form,
  .step-box {
    padding: 16px;
  }

  .step-label,
  .step-progress {
    display: none;
  }

  .step-number {
    background-color: #e3e3e3;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    border-radius: 50%;
    color: black;
    align-items: center;
    justify-content: center;
  }

  .step-progress-box {
    align-items: center;

    span {
      color: #000000;
    }
  }

  .step-progress-box {
    z-index: 999999;

    &.active {
      .step-number {
        color: #ffffff;
        background-color: #62bf92;
      }
    }
  }

  .notification-box {
    width: 320px;
    right: -20px;
  }

  .notification-header,
  .notification-tabs,
  .notification-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 496px) {}

@media (max-width: 480px) {
  .notification-box {
    width: 300px;
    right: -40px;
  }
}

/* Scrollbar styling */
.notification-content::-webkit-scrollbar {
  width: 4px;
}

.notification-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.notification-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.notification-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

@media only screen and (min-width: 991px) {
  .my-listings-tab-con {
    flex-wrap: nowrap;
    display: flex;
  }

  .sort-my-listings {
    min-width: 210px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .header-top {
    padding-top: 13px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .dashboard-filters .col-md-4 {
    min-width: 400px;
  }

  .dashboard-filters .row {
    flex-wrap: nowrap;
    display: flex;
  }
}

@media only screen and (min-width: 1024px) {
  .dashboard-filters .col-md-4 {
    max-width: 380px;
  }

  .c27-top-content-margin {
    height: 80px !important;
  }

  body.admin-bar {
    .right-section {
      top: 92px;
    }

    .scroll-tab.sticky {
      top: 32px !important;
    }
  }
}

@media only screen and (max-width: 1300px) {
  .list-details {
    gap: 40px;
  }

  .list-wrapper {
    .list-main-container {
      .list-filter {
        min-width: 346px;
        max-width: 400px;
      }
    }
  }

  .pricing-wrapper {
    h5 {
      font-size: 16px !important;
    }
  }
}

@media only screen and (max-width: 1200px) {
  .newsletter-content {
    width: 100%;
  }

  header.header[class] {
    .header-top {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  .testimonials {
    .owl-item {
      padding: 32px 16px 48px;

      .client-info {
        font-size: 14px !important;
      }
    }
  }

  .location-section {
    & .location-row {
      & .location-towns {
        & ul {
          li {
            width: 30.7%;
          }
        }
      }
    }
  }

  .list-wrapper {
    & .list-main-container {
      .list-filter {
        width: 100%;
      }
    }
  }

  .pricing-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mlduo-account-menu {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .list-wrapper {
    & .list-main-container {
      flex-direction: column;

      .list-filter {
        position: fixed;
        z-index: 99999;
        right: -5000px;
        top: 0;
        border-radius: 0;
        height: 100%;
        min-width: auto;
        width: 360px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease-in-out;

        &.active {
          right: 0;
        }

        .filter-header {
          .btn-close-filter {
            display: block;
          }
        }
      }
    }
  }

  .filter-right {
    button {
      display: flex;
    }

    .btn-gold {
      width: 100%;
      justify-content: center;
      font-size: 12px;
      padding: 10px;
      align-items: center;
    }
  }

  .list-details {
    gap: 24px;

    .left-section {
      .scroll-tab {
        overflow-x: auto;
        overflow-y: hidden;

        li {
          .nav-link {
            font-size: 14px;
            white-space: nowrap;
          }
        }
      }

      .add-reviews {
        .rating-box {
          flex-wrap: wrap;
          gap: 24px;
          /* margin-bottom: 24px; */

          .box {
            width: 44%;
          }
        }

        .section-heading {
          margin-bottom: 16px;
        }
      }
    }
  }

  .list-wrapper {
    .list-main-container {
      .list-container {
        .top-filter {
          position: relative;
          padding-bottom: 45px;
          gap: 8px;

          .filter-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 6px 12px;
            font-size: 12px;

            img {
              width: 14px;
            }
          }

          .dropdown {
            .dropdown-btn {
              min-width: 0;
              width: 100%;

              span {
                display: none;
              }
            }

            .custom-dropdown-menu {
              min-width: 165px;
            }
          }

          .page-show {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            justify-content: center;
          }

          .dropdown,
          .filter-right,
          .filter-btn {
            width: 33.33%;
            flex-grow: 1;

            .dropdown-btn {
              font-size: 12px;
            }

            .btn-group {
              width: 100%;

              &.btn-toggle {
                button {
                  width: 100%;

                  img {
                    width: 14px;
                  }

                  span {
                    font-size: 12px;
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  .rank-math-html-sitemap__list {
    li {
      flex-basis: calc(50% - 32px);

      &.location-parent-one {
        ul li {
          flex-basis: calc(50% - 32px) !important;
        }

        &:first-child {
          ul li ul li {
            flex-basis: calc(50% - 32px) !important;
          }
        }
      }
    }
  }

  .rank-math-html-sitemap__section--region h2+ul>li a+ul li a+ul li {
    flex-basis: calc(50% - 32px);
  }
}

@media only screen and (max-width: 1100px) {
  .three-box-wrapper {
    .e-con-inner {
      flex-direction: column !important;
      gap: 0;

      .box:not(:last-child) {
        padding-bottom: 0 !important;
      }
    }
  }
}

@media only screen and (max-width: 1024px) {
  .care-home-section {
    .heading-box {
      background-color: transparent !important;
      box-shadow: none !important;
      flex-wrap: nowrap;

      >div {
        min-width: 40px;
      }
    }
  }

  .swiper-navigation {

    .swiper-button-next,
    .swiper-button-prev {
      width: 30px;
      min-width: 30px;
      height: 30px;

      &::after {
        font-size: 12px;
      }
    }
  }

  .ych-search-bar {
    .tab-link {
      img {
        width: 24px;
      }
    }
  }

  .section-heading {
    h2.elementor-heading-title {
      font-size: 38px !important;
      line-height: 1.2;
    }

    >div:last-child>div p {
      font-size: 16px !important;
    }
  }

  .location-section {
    .location-row {
      .location-towns {
        ul {
          li {
            width: 46.5%;
          }
        }
      }
    }
  }

  .search-banner-section {
    gap: 24px;
  }

  .banner-heading h1,
  .page-header .inner-wrapper h1 {
    font-size: 40px !important;
  }

  .page-header {
    padding: 32px 0 72px;
  }

  .news .e-con-inner,
  .services .e-con.e-child,
  .locations .e-con-inner>.e-con.e-child,
  .testimonials .e-con-inner>.e-con.e-child,
  .blogs>.e-con-inner,
  .newsletter,
  .footer {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .care-home-section .e-con-inner {
    padding-bottom: 35px;
  }

  .footer {
    .elementor-widget-container {
      font-size: 16px;
    }
  }

  .bottom-footer {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column !important;
    align-items: flex-start;

    a {
      margin-right: 16px;
      margin-left: 0;
    }
  }

  .newsletter-content {
    div:last-child>div {
      font-size: 16px;
    }
  }

  .location-section {
    & .ych-location {
      .tab-link {
        padding: 12px 10px;
        font-size: 14px;

        .homes-count {
          font-size: 12px;
          font-weight: 400;
        }
      }
    }
  }

  .list-wrapper {
    margin-top: -135px;

    .list-main-container {
      margin-top: 60px;
    }
  }

  .list-details {
    .left-section {
      max-width: 100%;
      width: 100%;
    }

    .right-section {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      top: auto !important;
      max-width: 100%;

      .view-map {
        display: none;
      }

      .info-box {
        flex-direction: row-reverse;
        padding: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-color: var(--gray-800);
        gap: 0;

        .provider-logo {
          display: none;
        }

        .room-info,
        .contant-info {
          padding: 0;
          border-radius: 0;
          width: 50%;
          border: none;

          .overlay-chip {
            display: none;
          }

          >div {
            display: none;
          }

          .btn {
            border-radius: 0;
            height: 48px;
            align-items: center;
            padding: 12px 16px;
            font-size: 14px !important;
          }
        }
      }
    }
  }

  body.single-job_listing {
    padding-bottom: 45px;
  }

  .ych-blog-title {
    font-size: 32px !important;
  }

  .breadcrumb>*:not(:nth-last-child(2)) {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .location-row {
    flex-direction: column;
    gap: 0 !important;

    .location-city {
      width: 100% !important;
      border-radius: 8px 8px 0px 0px !important;
    }

    .location-towns {
      border-radius: 0px 0px 8px 8px !important;
      border-top: none !important;
    }
  }

  .news-logos {
    gap: 60px !important;
  }

  .list-wrapper {
    .list-main-container {
      .list-container {
        .list-card {
          .img-wrapper {
            min-width: 350px;
            width: 350px;
            height: 300px;
          }

          .list-content {
            .title-wrapper {
              .title {
                font-size: 18px;
                line-height: 1.3;
              }
            }
          }
        }
      }
    }
  }

  .explore-page {
    .list-wrapper .list-main-container .list-container .list-card .list-content .title-wrapper {
      flex-direction: column;

      .listing-status {
        margin-top: 10px;
        margin-bottom: 16px;
      }
    }
  }

  .sidebar {
    margin-left: 0px;
  }

  .rank-math-html-sitemap__list {
    li {
      flex-basis: 100%;

      &.location-parent-one {
        ul li {
          flex-basis: 100% !important;
        }

        &:first-child {
          ul li ul li {
            flex-basis: 100% !important;
          }
        }
      }
    }
  }

  .rank-math-html-sitemap__section--region h2+ul>li a+ul li a+ul li {
    flex-basis: 100%;
  }

  .modal.detail-page-popup {
    .option-wrapper .form-check {
      flex-basis: 100%;
    }
  }
}

@media only screen and (max-width: 768px) {
  .user-area.signin-area {
    display: block !important;
  }

  .mob-sign-in[class] {
    display: none !important;
  }

  header.header[class] {
    .header-top {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  .testimonials {
    & .owl-item {
      &.swiper-slide-active {
        box-shadow: 0px 0px 6px 0px var(--color-mint-green-dark);
      }
    }
  }
}

@media only screen and (max-width: 767px) {
  .ych-carousel {
    .tabs {
      gap: 0;
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;

      .tab-link {
        font-size: 14px;
        line-height: 1.3;
        border-radius: 0;

        &:first-child {
          border-radius: 8px 0px 0px 8px;
        }

        &:last-child {
          border-radius: 0px 8px 8px 0px;
        }
      }
    }
  }

  .banner-heading {
    strong {
      margin-top: 5px;
      display: block;
    }
  }

  .search-area {
    .suggestions-list {
      h4~li {
        padding-left: 62px;

        span {
          font-size: 13px;
        }

        &::before {
          width: 34px;
          height: 34px;
        }
      }
    }
  }

  .ych-search-bar {
    .tab-link {
      width: 105px;
      line-height: 1.2;
    }

    .tab-content {
      padding: 16px 16px 70px;
    }
  }

  .search-area {
    padding: 8px;
    height: 60px;
    flex-direction: column;

    input {
      font-size: 14px;
    }

    button {
      padding: 8px 12px;
      font-size: 16px;
      min-width: 115px;
      position: absolute;
      bottom: -56px;
      height: 45px;
    }
  }

  .banner-heading h1,
  .page-header .inner-wrapper h1 {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .banner-rating {
    transform: scale(0.8);
  }

  .location-section {
    & .ych-location {
      .tabs {
        flex-wrap: wrap;
      }

      .tab-link {
        width: 45%;
      }
    }
  }

  .list-details {
    .left-section {
      gap: 32px;

      .section {
        padding-top: 32px;
        gap: 0;
      }

      .action-btn-group {
        flex-wrap: wrap;
        gap: 16px;

        .btn-list-action {
          flex-basis: 48%;
          border-radius: 8px !important;
        }
      }

      .top-carehome-details {
        align-items: flex-start;

        >div:first-child {
          flex-direction: column;
          max-width: 75%;
          gap: 8px;
          align-items: flex-start;

          h1 {
            font-size: 28px;
          }
        }
      }

      .gallery-swiper {
        .swiper-slide {
          img {
            height: 350px;
          }
        }
      }

      .section-heading {
        font-size: 22px;
      }

      .cqc-rating {
        .rating-and-report {
          .report-section {
            padding: 32px 16px;
          }

          .rating-section {
            padding: 16px;

            .all-ratings {
              li {
                padding: 10px 16px;
              }
            }
          }
        }
      }

      .overview {
        .more-info {
          .info-box {
            flex-basis: 45%;
          }
        }
      }
    }
  }

  .list-wrapper {
    .list-main-container {
      .list-container {
        .list-card {
          .list-content {
            .caregroup-logo {
              display: none;
            }
          }

          .list-card-body {
            flex-direction: column;
          }

          .img-wrapper {
            min-width: 100%;
            width: 100%;
            height: 380px;
          }
        }

        .top-filter {
          .btn-group {
            &.btn-toggle {
              button {
                span {
                  display: none;
                }
              }
            }
          }
        }
      }

      .card-loader {
        flex-direction: column;

        .skeleton-image {
          width: 100%;
          height: 250px;
        }
      }
    }
  }

  .groups {
    .heading-box {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
  }

  .pricing-wrapper {
    grid-template-columns: repeat(1, 1fr) !important;

    .info-box {
      height: auto !important;
    }
  }

  .user-name {
    display: none;
  }

  .claim-listing-section {
    .list-card .title-wrapper {
      margin-bottom: 0 !important;
      flex-direction: column;
      gap: 24px;

      ul {
        margin-bottom: 0 !important;
      }
    }
  }

  .sitemap-cards {
    .card-box {
      flex-basis: 100%;
    }
  }

  .dashboard {
    .lead-bid input[type="text"] {
      width: 100%;
    }
  }

  .premium-leads {
    .content {
      padding: 0;
    }

    .col-sm-4 {
      .lead-bid {
        padding: 16px;
        border-bottom: 2px solid var(--gray-300);
      }

      &:last-child .lead-bid {
        border: none;
      }
    }
  }
}

.cqc-rating-icon {
  img {
    width: 16px;
    height: 16px;
  }
}

.cqc-rating-icon.requires-improvement {
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50%;
  background-color: #ff943d;
  font-size: 0;
  overflow: hidden;
}

.cqc-rating-icon.inadequate {
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50%;
  background-color: #e53b3b;
  font-size: 0;
  overflow: hidden;
}

.cqc-rating-icon.not-rated {
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50%;
  background-color: #dfdada;
  font-size: 0;
  overflow: hidden;
}

/* Gallery Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

.gallery-main {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  height: 100%;
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.gallery-side-item {
  position: relative;
  flex: 1;
  cursor: pointer;
  overflow: hidden;
  min-height: 0;
}

.gallery-side-item:first-child {
  border-radius: 0 20px 0 0;
}

.gallery-side-item:last-child {
  border-radius: 0 0 20px 0;
}

.gallery-side-item img,
.gallery-side-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Virtual Tour Badge */
.virtual-tour-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--color-gold);
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  z-index: 10;
}

.virtual-tour-badge:hover {
  transform: scale(1.05);
}

.virtual-tour-badge img {
  width: 20px;
  height: 20px;
}

/* Show All Overlay */
.show-all-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.show-all-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.show-all-content {
  text-align: center;
  color: white;
}

.show-all-content img {
  position: static;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.show-all-content span {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

/* Fullscreen Gallery Popup */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.gallery-popup.active {
  opacity: 1;
  visibility: visible;
}

.gallery-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  color: white;
}

.gallery-counter {
  font-size: 16px;
  font-weight: 500;
}

.gallery-close {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: opacity 0.2s;
}

.gallery-close:hover {
  opacity: 0.7;
}

.gallery-popup-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  position: relative;
}

.gallery-popup-image {
  max-width: 100%;
  max-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-popup-image img,
.gallery-popup-image video {
  max-width: 100%;
  max-height: calc(100vh - 250px);
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 10px;
  padding: 20px 30px;
  overflow-x: auto;
  justify-content: center;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  position: relative;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb img,
.gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb .video-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
/* ==========================================
   GALLERY GRID POPUP (Fullscreen with Grid)
   ========================================== */
.gallery-popup {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.gallery-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.gallery-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.gallery-close {
    background: none;
    border: 1px solid #ddd;
    color: #333;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.gallery-close:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.gallery-popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.gallery-popup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-popup-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-popup-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-popup-item img,
.gallery-popup-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-popup-item:hover img,
.gallery-popup-item:hover video {
    transform: scale(1.05);
}

.gallery-popup-item .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* ==========================================
   SINGLE IMAGE VIEWER (Lightbox)
   ========================================== */
.image-viewer {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.image-viewer-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.show-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.show-all-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.viewer-close {
    background: none;
    border: 1px solid #ddd;
    color: #333;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.viewer-close:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.image-viewer-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 100px;
    position: relative;
    background: #fff;
}

.image-viewer-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-viewer-media img,
.image-viewer-media video {
    max-width: 90%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.viewer-nav:hover {
    opacity: 0.8;
}

.viewer-prev {
    left: 20px;
}

.viewer-next {
    right: 20px;
}

/* Counter badge at bottom */
.image-viewer-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #5bbfb5;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.gallery-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.gallery-popup-header .header-spacer {
    width: 44px; /* Same width as close button */
}

.gallery-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    flex: 1;
}

.gallery-close {
    background: none;
    border: 1px solid #ddd;
    color: #333;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
/* Virtual Tour Button - Badge Style */
.virtual-tour-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-gold);
    padding: 5px 12px 5px 5px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.virtual-tour-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.virtual-tour-badge .badge-icon {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.virtual-tour-badge .badge-text {
    padding-right: 4px;
    line-height: 1;
}
/* Responsive */


/* Responsive */
@media (max-width: 768px) {
    .image-viewer-header {
        padding: 15px 20px;
    }

    .image-viewer-title {
        font-size: 16px;
    }

    .show-all-btn span {
        display: none;
    }

    .image-viewer-content {
        padding: 20px 60px;
    }

    .viewer-nav {
        width: 40px;
        height: 40px;
    }

    .viewer-prev {
        left: 10px;
    }

    .viewer-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-main {
    height: 250px;
    border-radius: 20px 20px 0 0;
  }

  .gallery-side {
    flex-direction: row;
    height: 120px;
  }

  .gallery-side-item:first-child {
    border-radius: 0 0 0 20px;
  }

  .gallery-side-item:last-child {
    border-radius: 0 0 20px 0;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-popup-content {
    padding: 0 50px;
  }
  .gallery-popup-header {
        padding: 15px 20px;
    }

    .gallery-popup-title {
        font-size: 18px;
    }

    .gallery-popup-body {
        padding: 20px;
    }

    .gallery-popup-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-viewer-content {
        padding: 0 60px;
    }

    .viewer-nav {
        width: 40px;
        height: 40px;
    }

    .viewer-prev {
        left: 10px;
    }

    .viewer-next {
        right: 10px;
    }
}

@media only screen and (max-width: 600px) {
  .sitemap-action {
    flex-direction: column-reverse;
    gap: 24px;

    .tabs {
      width: 100%;

      .tab-link {
        width: 100%;
      }
    }
  }

  .sitemap-dropdown {
    width: 100%;

    .btn-sitemap {
      width: 100%;
    }
  }

  .main-sitemap-container {
    width: 100% !important;
  }
}

@media only screen and (max-width: 575px) {
  .location-section {
    .location-row {
      .location-towns {
        ul {
          gap: 16px;

          li {
            width: 100%;
          }
        }
      }
    }
  }

  .list-details {
    .left-section {
      .reviews {
        .rating-details {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }

        .all-reviews {
          .review-box {
            flex-basis: 100%;
          }
        }
      }

      .add-reviews {
        & .rating-box {
          .box {
            width: 100%;
          }
        }
      }
    }
  }

  .list-wrapper {
    .list-main-container {
      .list-container {
        .list-card {
          .img-wrapper {
            height: 280px;
          }

          .list-action {
            .phone {
              font-size: 14px;
            }

            .btn {
              font-size: 14px;
            }
          }
        }
      }
    }
  }

  .news-letter-form .tnp-subscription {
    padding: 8px 8px 8px 12px;
    height: 58px;

    input {
      font-size: 14px;
    }

    input[type="submit"] {
      padding: 8px 16px 8px 36px;
      font-size: 14px;
      background-size: 22px !important;
      background-position: 10px center !important;
      width: 45px;
      padding: 0;
      text-indent: 1000px;
    }
  }

  .header .user-area[class] {
    margin-left: 0 !important;
    /* min-width: 115px; */

    a {
      gap: 7px;
    }
  }

  .ych-carousel .tabs {
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    border-radius: 0 !important;

    .tab-link {
      border-radius: 6px !important;
      width: 100%;
    }
  }

  .wpcf7-not-valid-tip {
    font-size: 12px;
  }

  header.header[class] {

    .main-menu>.menu-item.current_page_item a,
    .main-menu>.menu-item.current-menu-item a {
      color: var(--color-success) !important;
    }
  }

  .bottom-footer {
    a {
      margin-bottom: 12px;
      display: block;
    }
  }

  .navigation-wrapper a {
    font-size: 12px;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 480px) {
  header.header[class] {
    height: 60px !important;

    &.user-area.signin-area {
      a {
        padding: 7px 12px;
        font-size: 14px;
      }
    }
  }

  .list-details {
    .left-section {
      .action-btn-group {
        justify-content: flex-start;

        .btn-list-action {
          flex-basis: 100%;
          flex-direction: row;
          justify-content: flex-start;

          img {
            width: 18px;
          }
        }
      }

      .overview {
        .more-info {
          .info-box {
            flex-basis: 100%;
          }
        }
      }
    }
  }

  .login-container {
    padding: 20px 16px !important;
  }
}

[data-wpr-lazyrender],
[data-wpr-lazyrender] * {
  content-visibility: visible !important;
}