@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* Scss Document */
/* CSS Document */
/* Scrollbar */
::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #565656; /* Color of the scrollbar handle */
  border-radius: 6px; /* Rounded corners for the handle */
}

/* Handle on hover */
/* Firefox */
/* Scrollbar width */
/* Track and handle for non-webkit browsers (Fallback) */
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background-color: #565656;
  border-radius: 5px;
  border: 0.5px solid #f1f1f1; /* Adjust handle thickness */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ss-addnew-padding {
  padding-left: 8px;
}

.ss-add-padding2 {
  padding-left: unset;
}

.ss-remove-padding-content-body {
  padding: unset;
}

:root {
  /* fonts */
  --font-lato: "Work Sans", sans-serif;
  /* font sizes */
  --font-size-7xl: 26px;
  --font-size-4xl: 23px;
  --font-size-9xl: 28px;
  --font-size-2xl: 21px;
  --font-size-3xl: 22px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-mini: 15px;
  --font-size-2xs: 11px;
  --font-size-xs-6: 11.6px;
  --font-size-xl: 20px;
  /* Colors */
  --color-black: #000;
  --color-white: #fff;
  --color-red: #d90000;
  --color-steelblue-100: #006aa7;
  --color-steelblue-200: rgba(0, 106, 167, 0);
  --color-steelblue-300: rgba(0, 106, 167, 0.55);
  --color-darkslategray: #343434;
  --color-whitesmoke-100: #f4f4f4;
  --color-whitesmoke-200: #f2f2f2;
  --color-gold: #fecc00;
  --color-gray-100: #1e1e1e;
  /* Border radiuses */
  --br-9xs: 4px;
  --br-5xl: 24px;
  --br-129xl: 148px;
  --br-8xs: 5px;
  --br-10xs: 3px;
  --br-10xs-2: 2.2px;
}

.ss-desktop {
  display: flex;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  font-family: "Work Sans", sans-serif !important;
  min-height: 100vh;
  position: relative;
}

/*----------------------------------------------calender css-------------------------------------------*/
/* .hidden {
    display: none;
} */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #565656; /* Color of the scroll thumb */
  border-radius: 6px; /* Round the scroll thumb */
  border: 1px solid #fff; /* Padding around scroll thumb */
}

textarea::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the scroll track */
  border-radius: 6px; /* Round the scroll track */
}

.ss-navbar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background-color: #1BBFDA;
  color: #fff;
  padding: 0px 15px;
  z-index: 1000; /* Ensures the navbar is above other content */
}

.ss-navFirstRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.ss-navFirstRow a:first-of-type {
  margin-left: 15px;
}

.ss-home {
  margin: auto;
  font-size: 19px;
  font-family: "Work Sans", sans-serif;
  color: white;
  font-weight: 500;
  text-decoration: none;
}

.ss-favorites {
  margin: auto;
  font-size: 19px;
  font-family: "Work Sans", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-decoration: none;
}

.ss-navbar-menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-menu-icon {
  -o-object-fit: contain;
     object-fit: contain;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.ss-navbar-logo img {
  width: 80px;
  height: 50px; /* Adjust as needed */
}

.ss-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  padding: 100px 40px 65px 40px; /* Adjust based on navbar height */
  overflow-y: auto; /* Enable vertical scrolling */
  min-height: 100vh; /* Adjust based on navbar height */
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 35px;
}

.ss-content-body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
}

.ss-page-heading {
  margin-right: auto;
  font-size: 26px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  color: black;
}

.ss-rowContent {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}

.ss-categoryTab {
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(27, 191, 218, 0.3);
  border-radius: 8px;
  width: calc((100% - 75px) / 4);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
}

.ss-categoryImage {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 85%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ss-categoryName {
  text-align: center;
  width: calc(100% - 30px);
  font-family: "Work Sans", sans-serif;
  font-size: 19px;
  color: black;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ss-search {
  width: 500px;
  margin-left: auto;
  padding: 7px 17px;
  min-width: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 38px;
  border-radius: 50px;
  background: white;
  align-items: flex-end;
}

.ss-search-input {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: black;
  padding-right: 10px;
  border: none; /* Remove border */
  outline: none;
}

.ss-search-input::-moz-placeholder {
  font-family: "Work Sans", sans-serif;
  color: rgba(128, 128, 128, 0.616); /* Change placeholder text color */
  font-weight: 400;
  font-size: 17px;
}

.ss-search-input::placeholder {
  font-family: "Work Sans", sans-serif;
  color: rgba(128, 128, 128, 0.616); /* Change placeholder text color */
  font-weight: 400;
  font-size: 17px;
}

.ss-search-icon {
  width: 20px;
  height: 20px;
  margin-left: -30px;
}

.ss-search-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.ss-search-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 5px;
}

.ss-search-input {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 220px;
}

.ss-search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.advanced-search-link a {
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-decoration: underline;
}

.ss-bottom-bar {
  z-index: 2;
  display: none;
  position: fixed;
  flex-direction: row;
  justify-content: space-around;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  color: white;
  padding: 10px 10px;
  text-align: center;
}

.ss-bottom-bar-button {
  width: 220px;
  border: 0;
  background: white;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 15px;
       column-gap: 15px;
  color: #565656;
  align-items: center;
  border-radius: 50px;
  padding: 10px 0px;
  justify-content: center;
  font-size: 22px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}
.ss-bottom-bar-button img {
  width: 25px;
  height: 25px;
}

.ss-hide {
  display: flex;
}

.ss-active {
  background: #1BBFDA !important;
  color: white !important;
}

.ss-mobile {
  display: none !important;
}

.sr-backdrop {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  z-index: 5000;
}

.sr-closeMenu {
  display: flex;
  align-self: flex-end;
  height: 15px;
  width: 15px;
}

.sr-drawerMenu {
  overflow: auto;
  max-height: 100vh;
  padding: 25px 20px;
  position: fixed;
  left: -270px;
  top: 0;
  width: 270px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  background: #565656;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  transition: left 0.3s ease-in-out;
  z-index: 6000;
}

.sr-menuList {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.sr-mainMenu {
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}

.ss-show-backdrop {
  display: block !important;
}

.ss-show-menu {
  left: 0px !important;
}

.ss-not-available {
  color: #b1afaf;
  font-size: 23px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}

.ss-floating-button {
  background: #1BBFDA;
  z-index: 1000;
  position: fixed;
  bottom: 25px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.ss-floating-button button {
  padding: 15px 25px;
  background-color: #1BBFDA; /* Adjust color as needed */
  color: white;
  border: 0;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.ss-floating-button button img {
  width: 20px; /* Adjust icon size as needed */
  height: 20px;
  margin-right: 10px;
}

.ss-add-icon {
  margin: 16px;
  width: 25px;
  height: 25px;
}

.ss-dropdown {
  margin: 10px 0px 20px;
  width: 100%;
  display: flex;
  position: relative;
  border: 2px solid #1BBFDA;
  border-radius: 5px;
  padding: 8px 10px;
  align-items: center;
}

.ss-dropdown-icon {
  width: 17px;
  height: 17px;
  margin-right: 5px;
}

.ss-dropdown-select {
  color: #565656;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  padding: 5px;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.ss-dropdown::after {
  font-size: 12px;
  content: "▼";
  color: #565656; /* Unicode for dropdown arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.ss-dropdown-option {
  background-color: #565656;
  font-family: "Work Sans", sans-serif;
  color: white;
  font-size: 17px;
  font-weight: 300;
}

.ss-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.ss-form-field {
  width: 100%;
  margin: 10px 0 20px;
  border: 2px solid #1BBFDA;
  border-radius: 5px;
  padding: 12px 16px;
}

input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: black;
  font-size: 16px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}

input::-moz-placeholder {
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}

input::placeholder {
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}

textarea {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: black;
  font-size: 16px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
}

textarea::-moz-placeholder {
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif !important;
}

textarea::placeholder {
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif !important;
}

.ss-form-text {
  width: 100%;
  font-size: 14.5px;
  color: #565656;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 12px;
  text-overflow: ellipsis;
}

.ss-submit-listing {
  margin: 25px auto 20px;
  border: 0;
  width: 390px;
  background: #1BBFDA;
  border-radius: 5px;
  padding: 15px 16px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.ss-submit-listing-apply {
  margin: 8px auto 25px;
  border: 0;
  width: 390px;
  background: #1BBFDA;
  border-radius: 5px;
  padding: 15px 16px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.ss-price-field {
  width: 100% !important;
}

.ss-error-text {
  display: none;
  margin-top: -10px;
  font-size: 13.5px;
  color: red;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.ss-form-field-wrapper {
  display: flex;
  width: 32%;
  flex-direction: column;
}

.ss-form-field-wrapper2 {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.ss-form-field-wrapper3 {
  display: flex;
  width: 49%;
  flex-direction: column;
}

.ss-form-field-wrapper4 {
  display: flex;
  width: 30%;
  flex-direction: column;
}

.ss-package-row {
  display: flex;
  flex-direction: column;
  width: 95%;
  row-gap: 30px;
  align-items: center;
}

.ss-package-tab {
  background: white;
  box-shadow: 0 0 10px rgba(27, 191, 218, 0.5);
  border-radius: 10px;
  border: 2px solis #1BBFDA;
  width: calc(100% - 40px);
  height: auto;
  padding: 25px 12px 15px 12px;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.ss-package-img {
  transform: translateX(-12%);
  position: absolute;
  width: 280px;
  height: 55px;
}

.ss-package-name {
  width: 230px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: white;
  font-family: "Work Sans", sans-serif;
  position: absolute;
  font-weight: 600;
  margin-left: -20px;
  margin-top: 9px;
  font-size: 17px;
}

.ss-package-price-wrapper {
  align-items: center;
  display: flex;
  font-size: 40px;
  margin-left: auto;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}

.ss-pound-img {
  margin-right: 6px;
  height: 30px;
}

.ss-package-item-and-button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ss-package-item-row {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  color: black;
  margin-bottom: 15px;
}
.ss-package-item-row span {
  font-size: 15px;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}
.ss-package-item-row img {
  height: 17px;
}

.ss-select-package-button {
  margin-top: 20px;
  width: 120px;
  height: -moz-min-content;
  height: min-content;
  border: 0;
  border-radius: 5px;
  background: #1BBFDA;
  color: white;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
  padding: 8px 10px;
  text-align: center;
  cursor: pointer;
}

.ss-page-header-row {
  align-self: flex-start;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
.ss-page-header-row img {
  width: 20px;
  height: 16px;
}

.ss-myListingTab {
  width: calc((100% - 80px) / 3) !important;
  padding-bottom: 20px;
  align-items: flex-start !important;
  row-gap: 10px !important;
}

.ss-image-container {
  width: 100%;
  position: relative;
  display: inline-block;
}
.ss-image-container img {
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.ss-icon-container {
  z-index: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 26px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 16px;
  color: white;
  cursor: pointer;
}

.ss-myListingName {
  padding: 0px 8px;
  text-align: justify;
  width: 100%;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: black;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
}

.ss-myListing-Price {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  height: auto;
  align-items: center;
}
.ss-myListing-Price div:first-child {
  background: #1BBFDA;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  color: white;
  font-weight: 600;
  align-items: center;
  padding: 4px 12px;
}
.ss-myListing-Price div:first-child img {
  width: 20px;
  height: 20px;
}
.ss-myListing-Price div:nth-child(2) {
  height: 20px;
  background: #565656;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: white;
  font-weight: 300;
}

.ss-views {
  background: transparent;
  margin-left: auto;
  padding-right: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 13.5px;
  color: rgb(119, 119, 119);
  font-weight: 400;
}

.ss-myListing-location-row {
  display: flex;
  width: 100%;
  padding: 7px 8px;
  flex-direction: row;
  justify-content: space-between;
}
.ss-myListing-location-row div:first-child {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-size: 13.5px;
  color: #565656;
  font-weight: 500;
}
.ss-myListing-location-row div:first-child img {
  width: 14px;
  height: 16px;
}
.ss-myListing-location-row div:first-child span {
  font-weight: 600;
}
.ss-myListing-location-row div:nth-child(2) {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.ss-myListing-location-row div:nth-child(2) img {
  width: 27px;
  height: 27px;
}

.ss-selling-status {
  background: green;
  font-size: 13.5px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
}

.ss-add-gap {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
  row-gap: 40px !important;
}

.ss-listing-details-1st-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.ss-myListing-details-1st-row-1st-col {
  width: 550px;
  position: relative;
  background: transparent;
}

.ss-myListing-details-1st-row-2nd-col {
  width: calc(100% - 415px);
  display: flex;
  flex-direction: column;
}

.swiper-slide {
  width: 100%;
  margin: 0px;
  height: auto;
  background: transparent !important;
}
.swiper-slide img {
  width: 100% !important;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ss-myListing-img-container {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid rgba(119, 119, 119, 0.6);
  aspect-ratio: 4/3;
}

.ss-myListing-img-container .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.ss-myListing-img-container .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.ss-myListing-image-wrapper {
  position: relative;
  width: 100%;
  background: transparent !important;
}
.ss-myListing-image-wrapper .swiper-slide {
  width: 100%;
  position: relative;
  height: auto;
  padding-top: 62%;
}
.ss-myListing-image-wrapper .swiper-slide img {
  width: 100% !important;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.ss-swiper-pagination-myListing-image {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.ss-swiper-pagination-myListing-image .swiper-pagination-bullet {
  margin: 4px 3px !important;
  transition: 0.2s all ease-in-out;
  width: 7px !important;
  height: 7px !important;
  background: #565656;
  opacity: 1 !important;
}
.ss-swiper-pagination-myListing-image .swiper-pagination-bullet-active {
  background: #1BBFDA !important;
}

.ss-image-upload-container {
  margin: 0 auto;
  align-self: center;
  background: #1BBFDA;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 200px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  justify-content: center;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-size: 16.5px;
  color: white;
  font-weight: 600;
}
.ss-image-upload-container img {
  width: 60px;
  height: 45px;
}

.ss-image-upload-container-cover {
  margin: 0 auto;
  align-self: center;
  background: #1BBFDA;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  width: 280px;
  height: 150px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  justify-content: center;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-size: 16.5px;
  color: white;
  font-weight: 600;
}
.ss-image-upload-container-cover img {
  width: 60px;
  height: 45px;
}

.ss-imagePreview {
  position: relative;
  display: inline-block;
  margin: 10px;
  margin-top: 25px;
  width: calc((100% - 80px) / 4);
}
.ss-imagePreview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 3px 3px 15px 2px rgba(0, 0, 0, 0.3);
}

.ss-preview-container {
  display: flex;
  flex-wrap: wrap;
}

.ss-img-closeIcon {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  font-size: 25px;
}

.ss-img-closeIcon-cover {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  font-size: 25px;
}

.ss-content-body-for-listing-img-upload {
  background: white !important;
  border-radius: 10px;
  padding: 45px;
  height: auto;
}

.ss-popup {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: black;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.ss-show-popup {
  display: block;
}

.ss-popup-menu .ss-popup-option:hover {
  background-color: #f0f0f0;
}

.ss-add-padding {
  padding-left: 10px !important;
}

.ss-listing-contact-person-wrapper {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  padding-left: 10px;
  margin: auto 0 10px;
  color: black;
  font-size: 15.5px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.ss-listing-contact-person-wrapper img {
  border-radius: 50%;
  border: 2px solid #1BBFDA;
  -o-object-fit: cover;
     object-fit: cover;
  width: 35px;
  height: 35px;
}

.ss-listing-contact-details-wrapper {
  margin: 7px 0px;
  padding: 0 10px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-direction: row;
  align-items: center;
  color: rgb(90, 89, 89);
  font-size: 14px;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}
.ss-listing-contact-details-wrapper img {
  width: 15px;
}

.ss-category-subcategory-wrapper {
  width: 100%;
  margin-top: 10px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  display: flex;
  padding-left: 10px;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.ss-category-subcategory-wrapper div:first-child {
  padding: 2px 6px;
  border-radius: 3px;
  background: #1BBFDA;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.ss-category-subcategory-wrapper div:nth-child(2) {
  padding: 2px 6px;
  border-radius: 3px;
  background: #565656;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.ss-listing-details-2nd-row {
  color: black;
  font-size: 15px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  padding: 0px;
  text-align: justify;
}

.ss-renew-Listing-button {
  position: absolute;
  height: -moz-min-content;
  height: min-content;
  border: 0;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  background: #1BBFDA;
  color: white;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
  font-size: 14.5px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  padding: 6px 15px;
  text-align: center;
  cursor: pointer;
}

.ss-pagination-counter {
  position: absolute;
  top: 98%;
  left: 50%;
  transform: translate(-50%, -98%);
  background: white;
  border-radius: 3px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: black;
  z-index: 1;
  padding: 1px 7px;
}

.resp-sharing-button__icon {
  width: unset !important;
  height: 19px !important;
}
.resp-sharing-button__icon svg {
  margin-right: 0 !important;
}

.ss-details-page-package {
  margin-left: auto;
  display: flex;
  align-self: flex-end;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  align-items: center;
  font-weight: 400;
  color: black;
}
.ss-details-page-package span {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.ss-fix-margin {
  margin-bottom: 4px !important;
}

.ss-notification-icon {
  margin-left: auto;
  margin-right: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-notification-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.ss-notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #d90000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
}

/*MD Code*/
/* Show only on mobile/tablet */
.ss-show-mobile {
  display: none;
}

.ss-rowContent.mobile {
  display: none;
}

@media screen and (max-width: 999px) {
  .ss-rowContent.mobile {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 999px) {
  .ss-show-mobile {
    display: block;
    padding: 0px;
    width: 100%;
  }
  .search-wrapper {
    position: relative;
    width: 100%;
  }
  .ss-search-input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #1bbfda !important;
    border-radius: 50px;
    font-size: 14px;
  }
  .ss-search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #1bbfda;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mobile-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 7px;
  animation: slideDown 0.3s ease;
}

.mobile-search-popup.hidden {
  display: none;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1px 5px;
  padding-right: 40px;
}

.ss-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
  font-size: 16px;
}

.ss-search-icon-mob {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  margin-left: 8px;
  margin-right: 50px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

.mn-viewall {
  white-space: nowrap; /* Force single-line text */
  background-color: #1bbfda;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 14px;
  border-radius: 50px;
  text-align: center;
  margin-left: 10px;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1.5;
  margin-top: 0px;
  transition: background-color 0.3s ease;
}

.mn-viewall:hover {
  background-color: #1bbfda;
}

.advanced-search-mobile a {
  font-weight: 500;
  display: inline-block;
}

.advanced-search-container {
  position: relative;
  width: 500px;
  margin-left: auto;
  margin-top: 5px;
}

.advanced-search-dropdown {
  position: absolute;
  top: 100%; /* directly below the link */
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  padding: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* hidden by default */
}

.ss-row {
  display: flex;
  gap: 15px;
}

.ss-dropdown-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ss-dropdown-select {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
}

#advancedDropdownMob.show {
  display: block;
}

#advancedDropdown.show {
  display: block;
}

@media (max-width: 576px) {
  .mn-viewall {
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 40px;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (min-width: 1000px) {
  .mobile-search-popup {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .ss-navbar {
    justify-content: space-between;
    height: 76px;
  }
}
@media (max-width: 1000px) {
  .ss-search-wrapper {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .ss-notification-icon {
    margin-left: 0px;
  }
  .ss-listing-contact-person-wrapper {
    margin: 12px 0 8px;
  }
  .ss-details-page-package {
    padding-right: 15px;
  }
  .ss-add-padding2 {
    padding-left: 15px;
  }
  .ss-category-subcategory-wrapper {
    padding-left: 15px;
  }
  .ss-addnew-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .ss-remove-padding-content-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-listing-details-2nd-row {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ss-add-padding {
    padding-left: 0 !important;
  }
  .ss-listing-details-1st-row {
    flex-direction: column;
    row-gap: 10px;
  }
  .ss-myListing-details-1st-row-1st-col {
    width: 100%;
  }
  .ss-myListing-details-1st-row-2nd-col {
    width: 100%;
  }
  .swiper-slide img {
    height: auto;
  }
  .ss-floating-button {
    bottom: 85px;
  }
  .ss-package-row {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    margin-top: 20px;
  }
  .ss-form-field-wrapper {
    width: 100%;
  }
  .ss-dropdown {
    width: 100%;
  }
  .ss-price-field {
    width: 100% !important;
  }
  .ss-form-text {
    width: 100%;
  }
  .ss-desktop {
    display: none !important;
  }
  .ss-mobile {
    display: flex !important;
  }
  .ss-navbar {
    justify-content: space-between;
  }
  .ss-content {
    padding: 90px 15px 130px 15px;
    row-gap: 25px;
  }
  .ss-content-body {
    row-gap: 20px;
  }
  .ss-categoryTab {
    width: calc((100% - 25px) / 2);
    padding-bottom: 15px;
    row-gap: 20px;
  }
  .ss-categoryName {
    font-size: 17px;
    font-weight: 500;
  }
  .ss-rowContent {
    row-gap: 30px;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .ss-bottom-bar {
    display: flex;
  }
  .ss-hide {
    display: none !important;
  }
  .ss-navbar-logo img {
    width: 85px;
    height: 55px;
  }
  .ss-myListingTab {
    width: calc((100% - 25px) / 2) !important;
  }
  .ss-add-gap {
    -moz-column-gap: 25px !important;
         column-gap: 25px !important;
    row-gap: 25px !important;
  }
}
@media screen and (max-width: 670px) {
  .ss-package-tab {
    padding-bottom: 25px;
    width: 90%;
  }
  .ss-package-item-and-button-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .ss-select-package-button {
    width: 150px;
    align-self: center;
  }
  .ss-content-body-for-listing-img-upload {
    padding: 40px 25px;
  }
  .ss-image-upload-container {
    width: 100%;
    height: 150px;
    font-size: 15px;
  }
  .ss-image-upload-container img {
    width: 50px;
    height: 35px;
  }
  .ss-imagePreview {
    width: calc((100% - 40px) / 2);
  }
  .ss-categoryName {
    font-size: 15.5px;
    font-weight: 500;
  }
  .ss-page-header-row {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .ss-page-header-row img {
    width: 18px;
    height: 14px;
  }
  .ss-package-price-wrapper {
    margin: 65px auto 0;
    font-size: 42px;
  }
  .ss-pound-img {
    height: 26px;
  }
  .ss-categoryTab {
    width: calc((100% - 20px) / 2);
    row-gap: 20px;
    padding-bottom: 20px;
  }
  .ss-rowContent {
    row-gap: 20px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .ss-bottom-bar-button {
    width: 190px;
    padding: 12px 0px;
    font-size: 19px;
  }
  .ss-bottom-bar-button img {
    width: 22px;
    height: 22px;
  }
  .ss-myListingTab {
    width: 100% !important;
  }
  .ss-page-heading {
    font-size: 23px;
  }
}
@media screen and (max-width: 430px) {
  .ss-package-item-row {
    font-size: 13px;
  }
  .ss-package-item-row span {
    font-size: 14px;
  }
  .ss-content-body-for-listing-img-upload {
    padding: 30px 15px;
  }
  .ss-image-upload-container {
    width: 100%;
    height: 180px;
    font-size: 14px;
  }
  .ss-image-upload-container img {
    width: 40px;
    height: 28px;
  }
  .ss-submit-listing {
    width: 100%;
  }
  .ss-page-heading {
    font-size: 21px;
  }
  .ss-rowContent {
    row-gap: 12px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .ss-content {
    padding: 85px 15px 130px 15px;
    row-gap: 17px;
  }
  .ss-content-body {
    row-gap: 13px;
  }
  .ss-categoryTab {
    width: calc((100% - 12px) / 2);
    row-gap: 12px;
    padding-bottom: 15px;
  }
  .ss-bottom-bar-button {
    width: 160px;
    padding: 13px 0px;
    font-size: 17px;
  }
  .ss-bottom-bar-button img {
    width: 20px;
    height: 20px;
  }
}/*# sourceMappingURL=style.css.map */