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

/*-------- left section css -------------*/

.dashboard-main-section {
  position: relative;
}

.dashboard-main-section .sidebar {
  background-color: #000000;
  color: white;
  height: 100vh;
  z-index: 5;
  padding: 30px;
  width: 240px;
  position: fixed;
}

.dashboard-main-section .sidebar a:focus,
.dashboard-main-section .sidebar a:focus-visible,
.dashboard-main-section .sidebar a:hover {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.dashboard-main-section .sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dashboard-main-section .sidebar ul {
  overflow-x: hidden;
  overflow-y: auto;
}

.dashboard-main-section .sidebar::-webkit-scrollbar {
  display: none;
}

.dashboard-main-section .sidebar h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.dashboard-main-section .sidebar h1 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.dashboard-main-section .sidebar ul {
  list-style: none;
  padding-left: 0;
  line-height: 50px;
}

.dashboard-main-section .sidebar ul>li {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 0px;
  cursor: pointer;
  color: #fff;
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}

.dashboard-main-section .sidebar ul>li .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 8px;
  transition: all 0.5s ease;
}

.dashboard-main-section .sidebar ul>li .side-menu-dropdown {
  width: 100%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-left: 12px;
  line-height: 30px;
  margin: 0;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.dashboard-main-section .sidebar ul>li.active .side-menu-dropdown {
  max-height: max-content;
  opacity: 1;
  visibility: visible;
}

/*
.dashboard-main-section .sidebar ul > li.active i{
  color: #707070;
}

.dashboard-main-section .sidebar ul > li.active a{
  color: #707070;
}

.dashboard-main-section .sidebar ul > li.active .submenu-toggle i{
  color: #707070;
}
*/

.dashboard-main-section .sidebar ul>li .submenu-toggle {
  transition: all 0.5s ease;
}

.dashboard-main-section .sidebar ul>li.active .submenu-toggle i {
  transform: rotate(180deg);
}

.dashboard-main-section .sidebar ul>li .side-menu-dropdown li {
  padding: 5px 15px;
}

.dashboard-main-section .sidebar ul>li .side-menu-dropdown li a {
  color: #707070;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

.dashboard-main-section .sidebar ul>li .link>i {
  min-width: 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-main-section .sidebar ul>li .submenu-toggle i {
  margin-right: 0;
}

.dashboard-main-section .sidebar ul li a {
  color: white;
  text-decoration: none;
  font-family: var(--jakarta);
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  width: 100%;
}

/*.sidebar ul li ul.side-menu-dropdown {
    padding-left: 12px;
    line-height: 30px;
    margin: 10px 0;
}
*/
.dashboard-main-section .sidebar ul li ul.side-menu-dropdown li {
  padding: 0;
  line-height: 30px;
}

/*
.menu-toggle-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

*/

.dashboard-main-section .submenu-toggle {
  cursor: pointer;
  padding: 0px;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*-------- left section css -------------*/

/*-------- Right section css -------------*/

.dashboard-main-section .main {
  margin-left: 240px;
  padding: 0px 40px;
  width: calc(100% - 240px);
}

.dashboard-main-section .main .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-main-section .main h2 {
  margin: 0;
  font-size: 24px;
  color: #272727;
  font-weight: 600;
  font-family: var(--hanuman);
  padding: 35px 0;
}

.dashboard-main-section .form-group {
  margin-bottom: 20px;
}

.dashboard-main-section .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.dashboard-main-section .form-group input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  box-shadow: none !important;
  font-size: 15px;
  font-family: var(--jakarta);
  font-size: 15px !important;
  font-weight: 400;
  outline: none;
  color: #272727;
}

.dashboard-main-section .form-group input[type="text"]:focus {
  border: 1px solid #272727 !important;
}

.dashboard-main-section textarea,
.dashboard-main-section input,
.dashboard-main-section select {
  box-shadow: none !important;
  font-family: var(--jakarta);
}

.dashboard-main-section label,
.selected-tag {
  font-family: var(--jakarta);
}

.dashboard-main-section textarea:focus,
.dashboard-main-section input:focus,
.dashboard-main-section select:focus {
  border: 1px solid #272727 !important;
}

.dashboard-main-section .editor-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.dashboard-main-section .editor-toolbar button {
  padding: 6px 10px;
  border: 1px solid #dce0e0;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--jakarta);
  font-size: 15px !important;
  font-weight: 400;
  outline: none;
  color: #272727;
}

.dashboard-main-section .form-group textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  resize: vertical;
  font-size: 15px;
  font-family: var(--jakarta);
  font-size: 15px !important;
  font-weight: 400;
  outline: none;
  color: #272727;
}

.dashboard-main-section .btn-save {
  border-radius: 0.25rem;
  padding: 0 15px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--jakarta);
  font-size: 15px;
  color: var(--color-white);
  /* border: 1px solid #4c4c4c;
  background-color: #4c4c4c; */
  border: 1px solid var(--purple);
  background-color: var(--purple);
  text-align: center;
  text-transform: uppercase !important;
  transition: all 0.5s ease;

}

.dashboard-main-section .btn-save:hover {
  /* color: #fff;
  background-color: #4c4c4c;
  border-color: #4c4c4c; */

  background-color: var(--hover-purple);
  border-color: var(--hover-purple);
}

.dashboard-main-section .property-meta-box .form-group {
  margin-bottom: 15px;
}

.dashboard-main-section .property-meta-box select {
  width: 100%;
}

.dashboard-main-section .sub-category {
  padding-left: 10px;
}

.dashboard-main-section .custom-price-meta-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dashboard-main-section .custom-price-meta-box label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.dashboard-main-section .custom-price-meta-box input,
.dashboard-main-section .custom-price-meta-box select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.dashboard-main-section select#land_postfix {
  width: 30%;
}

.dashboard-main-section .custom-price-meta-box small {
  display: block;
  color: #777;
  margin-top: 5px;
}

.dashboard-main-section .full-width {
  grid-column: span 2;
}

.dashboard-main-section .custom-checkbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-main-section .custom-checkbox input {
  width: 3% !important;
}

.dashboard-main-section .property-details-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dashboard-main-section .property-field {
  display: flex;
  flex-direction: column;
}

.dashboard-main-section .property-field label {
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard-main-section .property-field input,
.dashboard-main-section .property-field select {
  padding: 10px;
  border: 1px solid #dce0e0;
  border-radius: 5px;
  font-size: 14px;
}

.dashboard-main-section .features-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.dashboard-main-section .feature-item {
  width: 25%;
  padding: 5px 10px;
  box-sizing: border-box;
}

.dashboard-main-section .feature-item input {
  margin-right: 5px;
}

.dashboard-main-section .meta-box-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.dashboard-main-section .meta-box-section label {
  width: 100%;
  font-weight: bold;
}

.dashboard-main-section .meta-box-section input[type="text"],
.dashboard-main-section .meta-box-section select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.dashboard-main-section .floor-plan-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.dashboard-main-section .floor-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-main-section .floor-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dashboard-main-section .form-group {
  display: flex;
  flex-direction: column;
}

.dashboard-main-section .full-width {
  grid-column: span 2;
}

.dashboard-main-section .image-upload {
  text-align: center;
}

.dashboard-main-section .plan-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 5px;
}

.dashboard-main-section .image-info {
  font-size: 12px;
  color: #666;
}

.dashboard-main-section .private-note-container {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.dashboard-main-section .private-note-container strong {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.dashboard-main-section .private-note-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
}




.dashboard-main-section .custom-card {
  margin-bottom: 30px;
}

.dashboard-main-section .custom-header {
  font-weight: 400;
  color: #272727;
  font-family: "Hanuman";
  font-size: 18px;
  margin-bottom: 0;
  background-color: #fff;
  line-height: 1.2;
  text-transform: none;
  padding: 30px !important;
  border-bottom: 1px solid #dce0e0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
}

.dashboard-main-section .custom-body {
  padding: 30px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 0;
}

.dashboard-main-section .custom-body.row .col-md-4:first-child,
.dashboard-main-section .custom-body.row .col-md-4:last-child {
  padding: 0;
}


.dashboard-main-section .general-property {
  font-weight: 400;
  color: #272727;
  font-family: "Hanuman";
  font-size: 18px;
  background-color: #fff;
  line-height: 1.2;
  text-transform: none;
  padding: 0px !important;
  margin-bottom: 30px;
  border-bottom: 1px solid #dce0e0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
}

.dashboard-main-section .location,
.dashboard-main-section .description,
.dashboard-main-section .property-details {
  margin-bottom: 0;
}


/*.create-listing .dashboard-main-section .property-details .custom-body > .col-md-4.col-sm-12{
    display: flex;
    flex-direction: column;
}

.create-listing .dashboard-main-section .property-details .custom-body > .col-md-4.col-sm-12 .select2.select2-container{
  width: 100% !important; 
}*/

.dashboard-main-section .location .custom-header,
.dashboard-main-section .description .custom-header,
.dashboard-main-section .property-details .custom-header {
  border-bottom: 0;
}

.dashboard-main-section .description .custom-body,
.dashboard-main-section .property-details .custom-body {
  padding-top: 0;
  box-shadow: none;
}

.dashboard-main-section .location,
.dashboard-main-section .description {
  border-bottom: none;
}


.dashboard-main-section .custom-body label {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 25px;
  text-transform: none;
  font-family: var(--jakarta);
  color: #272727;
  text-align: left;
  margin-bottom: 0;
  cursor: pointer;
}

.dashboard-main-section .custom-body input,
.dashboard-main-section .custom-body select,
.dashboard-main-section .custom-body .select2-container .select2-selection--single .select2-selection__rendered,
.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple {
  outline: none;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 15px !important;
  font-weight: 400;
  border: 1px solid !important;
  border-color: #dce0e0 !important;
  height: 42px;
  margin: 0 !important;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem !important;
  line-height: 1.5;
  background-color: #fff !important;
  border-radius: 0.25rem;
  box-shadow: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*.dashboard-main-section .custom-body select#status option {
  color: #aaa;
}*/


/* .dashboard-main-section .custom-body .radio-form-box{
  flex-direction: row;
  gap: 20px;
} */
.dashboard-main-section .custom-body .radio-form-box>label {
  padding: 0;
}

.dashboard-main-section .custom-body .radio-box {
  gap: 15px;
  padding-left: 10px;
}

.dashboard-main-section .custom-body .listing-radio-details .radio-form-box {
  width: calc(100% / 2);
  gap: 10px;
}

.dashboard-main-section .custom-body .radio-box .input-radio-field {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 0;
}

.dashboard-main-section .custom-body .radio-box .input-radio-field label {
  padding: 0;
  line-height: 1;
}


.create-listing .dashboard-main-section .property-details .label-type .select2-selection__rendered {
  border: none !important;
  row-gap: 10px;
}

.create-listing .select2-container .select2-search--inline {
  line-height: 1;
  padding: 5px 0;
  height: auto;
  display: block;
}

.create-listing .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #4c4c4c;
}

.create-listing .dashboard-main-section .video {
  padding: 30px !important;
}

.create-listing .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.dashboard-main-section .custom-body select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
}


.dashboard-main-section .custom-body .select2-container .select2-selection--single .select2-selection__rendered,
.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple {
  line-height: 29px;
}

.dashboard-main-section .custom-body .select2-container .select2-selection--single .select2-selection__clear {
  display: none !important;
}

.dashboard-main-section .custom-body .select2-container--default .select2-selection--single {
  height: auto !important;
  position: relative;
}

.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple {
  height: 42px !important;
  /*padding: 20px 10px !important;*/
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
}

.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple.select2-selection--clearable {
  height: auto !important;
}



.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple textarea {
  border: none !important;
  outline: none !important;
  transform: translateY(2px);
}

.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple textarea::placeholder {
  color: #999;
}

.dashboard-main-section .custom-body .select2-container--default .select2-selection--single .select2-selection__placeholder,
.create-listing .dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple {
  line-height: 27px;
}

.dashboard-main-section .custom-body input::placeholder,
.dashboard-main-section .custom-body select::placeholder,
.dashboard-main-section .custom-body .select2-container .select2-selection--single .select2-selection__rendered::placeholder {
  color: #aaa !important;
}

.dashboard-main-section .custom-body .form-control:focus {
  border: 1px solid #272727 !important;
  box-shadow: none !important;
}

.dashboard-main-section .custom-body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
}

.dashboard-main-section .select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid;
  border-color: #dce0e0;
  height: 42px;
  display: block;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dashboard-main-section .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #80bdff;
}

.dashboard-main-section .custom-body input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
}

.dashboard-main-section .custom-body input::placeholder {
  color: #495057;
}

.dashboard-main-section .custom-body .select2-container--default .select2-selection--multiple {
  border: none !important;
}



.dashboard-main-section .custom-body .form-control:focus {
  border: none;
  border-color: none;
}

.dashboard-main-section .btn {
  padding: 10px 15px;
  border-radius: 5px;
}

.dashboard-main-section .btn.btn-primary {
  border-radius: 0.25rem;
  padding: 0 15px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--jakarta);
  font-size: 15px;
  color: #fff;
  /* border: 1px solid #4c4c4c;
  background-color: #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  transition: all 0.5s ease;
}

.dashboard-main-section .btn.btn-primary:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  color: var(--purple);
  border-color: var(--purple);
  background-color: transparent;
}

.dashboard-main-section .btn-secondary {
  background-color: var(--color-27);
  border-color: var(--color-27);
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 15px;
  }
}

.dashboard-main-section .media {
  padding: 0;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 0;
}

.dashboard-main-section .media .form-check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}


.dashboard-main-section .media h2 {
  font-weight: 400;
  color: #272727;
  font-family: var(--hanuman);
  font-size: 18px;
  margin-bottom: 0;
  background-color: #fff;
  line-height: 1.2;
  text-transform: none;
  padding: 30px !important;
  border-bottom: 1px solid #dce0e0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none !important;
}

.dashboard-main-section .media .media-content {
  padding: 30px;
}

.dashboard-main-section .media .media-content .form-check label {
  font-weight: 400;
  color: #272727;
  font-family: var(--jakarta);
}

.dashboard-main-section .media .media-content .bold-text {
  font-weight: 700;
  color: #272727;
  font-family: var(--jakarta);
}

.dashboard-main-section .media .media-content>p {
  color: #272727;
  font-family: var(--jakarta);
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-transform: none;
}

.dashboard-main-section .video,
.dashboard-main-section .media-content>.custom-body {
  padding: 30px 0 !important;
}

.dashboard-main-section #add-video-btn {
  font-family: var(--jakarta);
  cursor: pointer;
  color: var(--color-white);
  /* background-color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 500;
  margin: 20px 0;
  text-transform: uppercase;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
}

.dashboard-main-section #add-video-btn>i {
  margin-right: 4px;
}

.dashboard-main-section #add-video-btn:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  border-color: var(--hover-purple);
  background-color: var(--hover-purple);
}

.dashboard-main-section .details>.custom-body .col-md-6:first-child {
  padding-left: 10px;
}

.dashboard-main-section .details>.custom-body .col-md-6:last-child {
  padding-right: 10px;
}

.dashboard-main-section #add-detail {
  font-family: var(--jakarta);
  cursor: pointer;
  color: #fff;
  background-color: #4c4c4c;
  border: 1px solid #4c4c4c;
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 400;
  margin: 20px 0;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
}

.dashboard-main-section #add-detail:hover {
  color: #fff;
  background-color: #4c4c4c;
  border: 1px solid #4c4c4c;
}

.dashboard-main-section .features .custom-body {
  padding: 30px 0 0 !important;
  box-shadow: none;
}

.dashboard-main-section .features .custom-header {
  padding: 30px 0 !important;
}

.dashboard-main-section .custom-body .form-check {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.dashboard-main-section .custom-body .form-check label {
  min-height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  position: relative;
  padding: 0;
  margin-bottom: 0px;
  cursor: pointer;
}

.dashboard-main-section .custom-body input[type="checkbox"],
.custom-card.privacy .privacy-section input[type="checkbox"],
.dashboard-main-section .custom-body input[type="radio"],
.custom-card.privacy .privacy-section input[type="radio"],
.dashboard-main-section .media .form-check .form-check-input {
  border: 1px solid #dce0e0 !important;
  border-radius: 2px;
  height: 20px !important;
  width: 20px !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 !important;
  justify-content: center;
  margin-top: 3px !important;
}

.dashboard-main-section .custom-body input[type="checkbox"]:checked,
.custom-card.privacy .privacy-section input[type="checkbox"]:checked,
.dashboard-main-section .custom-body input[type="radio"]:checked,
.custom-card.privacy .privacy-section input[type="radio"]:checked,
.dashboard-main-section .media .form-check .form-check-input:checked {
  border: 1px solid #4c4c4c !important;
  background-color: #4c4c4c !important;
}

.dashboard-main-section .custom-body input[type="checkbox"]:checked::after,
.custom-card.privacy .privacy-section input[type="checkbox"]:checked::after,
.dashboard-main-section .custom-body input[type="radio"]:checked::after,
.custom-card.privacy .privacy-section input[type="radio"]:checked::after,
.dashboard-main-section .media .form-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-card.privacy .privacy-section input[type="checkbox"] {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  margin-top: -4px !important;
}

.custom-card.privacy .privacy-section input[type="checkbox"]:checked::after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
}

.dashboard-main-section .upload-instruction {
  margin-bottom: 15px;
  color: #333;
}

.dashboard-main-section .upload-area {
  position: relative;
  background-color: #eff1f1;
  border: 3px dashed #dce0e0;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.dashboard-main-section .upload-area .counter {
  position: absolute;
  top: 10px;
  right: 16px;
  left: auto;
  font-size: 12px;
  margin-bottom: 0;
  color: #5c6872;
}

.dashboard-main-section .upload-area .counter span {
  font-size: 12px;
  color: #5c6872;
  font-weight: normal;
  line-height: 25px;
  text-transform: none;
  font-family: var(--jakarta);
}

.dashboard-main-section .upload-icon {
  font-size: 50px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.dashboard-main-section .upload-area strong {
  margin: 0;
  display: block;
  font-weight: bold;
  text-align: center;
  font-family: var(--jakarta);
  color: #272727;
  font-size: 15px;
  line-height: 25px;
  text-transform: none;
}

.dashboard-main-section .upload-area p {
  margin: 0;
  font-weight: normal;
  text-align: center;
  font-family: var(--jakarta);
  color: #272727;
  font-size: 15px;
  line-height: 25px;
  text-transform: none;
}

.dashboard-main-section .upload-btn {
  font-family: var(--jakarta);
  cursor: pointer;
  color: var(--color-white);
  /* background-color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 500;
  margin: 20px 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  transition: all 0.5s ease;

}

.dashboard-main-section .upload-btn>i {
  margin-right: 4px;
}

.dashboard-main-section .upload-btn:hover {
  /* color: #4c4c4c; */
  /* border-color: #4c4c4c; */
  background-color: var(--hover-purple);
  border-color: var(--hover-purple);
}

.dashboard-main-section .floor-plan-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
}

.dashboard-main-section .floor-plan-group .plan-body {
  padding: 30px;
  background-color: #fff;
}

.dashboard-main-section .custom-card.floor-plans .custom-header,
.dashboard-main-section .custom-card.floor-plans .plan-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.dashboard-main-section .floor-plan-group .removeFloorPlan {
  right: 15px;
  color: #c31b1b !important;
  cursor: pointer;
  background: none;
  position: absolute;
  top: 32px;
  font-size: 5px;
  border: 1px solid #c31b1b;
  border-radius: 100px;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-main-section .floor-plan-group label {
  margin-bottom: 0px;
  display: block;
  padding-bottom: 10px;
  font-weight: 600;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 15px;
  text-decoration: none;
  line-height: 25px;
}

.dashboard-main-section .floor-plan-group input[type="text"],
.dashboard-main-section .floor-plan-group input[type="number"],
.dashboard-main-section .floor-plan-group input[type="file"],
.dashboard-main-section .floor-plan-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.dashboard-main-section .floor-plan-group textarea {
  min-height: 80px;
  resize: vertical;
  grid-column: span 2;
}

.dashboard-main-section .plan-image input[type="file"] {
  padding: 4px;
}

.dashboard-main-section .image-note {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  display: block;
}

.dashboard-main-section #addFloorPlanBtn {
  font-family: var(--jakarta);
  cursor: pointer;
  color: var(--color-white);
  /* background-color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 400;
  margin: 20px 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.dashboard-main-section #addFloorPlanBtn>i {
  margin-right: 4px;
}

.dashboard-main-section #addFloorPlanBtn:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  border-color: var(--hover-purple);
  background-color: var(--hover-purple);
}

.dashboard-main-section #addcustomfeatures {
  font-family: var(--jakarta);
  cursor: pointer;
  color: var(--color-white);
  /* background-color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 500;
  margin: 20px 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.dashboard-main-section #addcustomfeatures>i {
  margin-right: 4px;
}

.dashboard-main-section #addcustomfeatures:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  border-color: var(--hover-purple);
  background-color: var(--hover-purple);
}

.dashboard-main-section .privacy-section {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 25px;
  border: 1px solid #ddd;
  margin-top: 30px;
}

.dashboard-main-section .privacy-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
}

.dashboard-main-section .privacy-checkbox {
  margin-bottom: 15px;
}

.dashboard-main-section .privacy-checkbox label {
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.dashboard-main-section .privacy-checkbox input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  vertical-align: middle;
}

.dashboard-main-section .privacy-section p.description-dis {
  font-size: 13px;
  color: #333;
  margin: 15px 0 0 26px;
  line-height: 1.5;
}

.dashboard-main-section .privacy-section p.description-dis a{
  /* color: var(--color-27);
  font-weight: var(--font-weight-600); */
  color: var(--purple);
  font-weight: 700;
  transition: all 0.5s ease;
}

.dashboard-main-section .privacy-section p.description-dis a:hover{
  color: var(--hover-purple);
}

.dashboard-main-section .privacy-description {
  background-color: #f1f1f1;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  padding: 15px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  resize: none;
  width: 100%;
  margin: 0;
  text-align: left;
  text-indent: 0;
  white-space: pre-line;
  margin-left: 26px;
  width: 97%;
}

.dashboard-main-section .privacy-description::placeholder {
  padding-left: 0 !important;
  text-align: left !important;
}


.dashboard-main-section .privacy-description:focus,
.dashboard-main-section .privacy-description:focus-visible {
  border: 1px solid #dce0e0 !important;
  outline: none !important;
}

.dashboard-main-section .upload-area {
  border: 2px dashed #dce0e0;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.dashboard-main-section .upload-area.highlight {
  border-color: #666;
  background-color: #f8f9fa;
}

.dashboard-main-section .image-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.dashboard-main-section .preview-item {
  position: relative;
  width: 120px;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.dashboard-main-section .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-main-section .remove-image {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f44336;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
}

.dashboard-main-section .btn.btn-dark {
  font-family: var(--jakarta);
  cursor: pointer;
  color: var(--color-white);
  /* background-color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
  font-weight: 500;
  margin: 20px 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.dashboard-main-section .btn.btn-dark#searchBtn {
  line-height: 28px !important;
}

.dashboard-main-section .btn.btn-dark:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  border-color: var(--hover-purple);
  background-color: var(--hover-purple);
}

.dashboard-main-section .property-documents div .mt-3.d-block {
  font-weight: 600;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 15px;
  line-height: 25px;
  text-transform: none;
}

.dashboard-main-section .price .price-all {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  padding: 0;
}

.dashboard-main-section .price .price-all .price-input .disply-tag {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-main-section .price .price-all .price-input .disply-tag label {
  font-weight: normal !important;
}

@media (min-width: 768px) {


  .dashboard-main-section .price .price-all .currency,
  .dashboard-main-section .price .price-all .price-input {
    /*flex: 0 0 auto;
    width: 50%;*/
    --bs-gutter-x: 1.5rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .dashboard-main-section .price .price-all .currency {
    padding-left: 0 !important;
  }

  .dashboard-main-section .price .price-all .currency {
    padding-left: 0;
  }

  .dashboard-main-section .price .price-all .price-input .dashboard-main-section .price .custom-body .col-md-6:last-child {
    padding-right: 0;
  }
}


@media(min-width:768px) and (max-width:991.98px) {
  .dashboard-main-section .privacy-section p.description-dis {
    margin-left: 0;
  }

  .dashboard-main-section .privacy-description {
    margin-left: 0;
  }
}

@media (max-width: 767px) {

  .dashboard-main-section .price .price-all .currency,
  .dashboard-main-section .price .price-all .price-input {
    flex: 1;
    width: 100%;
  }

  .dashboard-main-section .privacy-description {
    min-height: 150px;
    width: 100%;
    margin-left: 0;
  }

  .dashboard-main-section .privacy-section p.description-dis {
    margin-left: 0;
  }
}

.dashboard-main-section .map .custom-body>p strong {
  font-weight: 600;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 14px;
  line-height: 25px;
  text-transform: none;
}

.dashboard-main-section .map {}

.dashboard-main-section .text-end {
  z-index: 999;
  width: calc(100% - 240px);
  margin-left: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce0e0;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: #fff;
}

.dashboard-main-section .text-end .btn.btn-secondary {
  font-weight: 500;
  font-family: var(--jakarta);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 15px;
  /* color: #4c4c4c;
  border: 1px solid #4c4c4c; */
  color: var(--color-white);
  border: 1px solid var(--purple);
  background-color: var(--purple);
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
}

.dashboard-main-section .text-end .btn.btn-secondary:hover {
  /* background-color: #4c4c4c;
  border-color: #4c4c4c; */
  background-color: var(--hover-purple);
  border-color: var(--hover-purple);
}

.dashboard-main-section .text-end .btn.btn-primary {
  border-radius: 0.25rem;
  padding: 0 15px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--jakarta);
  font-size: 15px;
  color: var(--color-white);
  /* border: 1px solid #4c4c4c;
  background-color: #4c4c4c; */
  background-color: var(--purple);
  border: 1px solid var(--purple);
  text-transform: uppercase;
  text-align: center;
  border-radius: 0.25rem !important;
  transition: all 0.5s ease;
}

.dashboard-main-section .text-end .btn.btn-primary:hover {
  /* color: #4c4c4c;
  border-color: #4c4c4c; */
  border-color: var(--hover-purple);
  background-color: var(--hover-purple);
}

.dashboard-main-section .video-url-group .video-url-input {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.dashboard-main-section .video-url-group .video-url-input button {
  margin-top: 0 !important;
  right: 15px;
  color: #c31b1b !important;
  cursor: pointer;
  background: none;
  position: absolute;
  top: 32px;
  font-size: 9px;
  padding: 0;
  border: 1px solid #c31b1b;
  border-radius: 100px;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-------- Right section css -------------*/

.toggle-btn-mobile {
  display: none;
}

.mobile-header {
  display: none;
}

.cross-icon {
  display: none;
}

.dashboard-main-section input[type="number"] {
  box-shadow: none !important;
}

.dashboard-main-section input[type="number"]:focus {
  border: 1px solid #272727 !important;
  box-shadow: none !important;
}

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

.dashboard-main-section input[type="number"] {
  -moz-appearance: textfield;
}

.dashboard-main-section .custom-card.location .custom-body .city {
  padding-top: 10px;
}

/*.dashboard-main-section
  .price
  .custom-body
  .price-prefix-after
  .col-md-6:first-child {
  --bs-gutter-x: 3rem;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}*/

.dashboard-main-section .price .custom-body .price-prefix-after {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  padding-right: 0;
  padding-left: 0;
}

.dashboard-main-section .price .custom-body .price-prefix-after.prefix-active {
  padding-left: 0;
}

.dashboard-main-section .price .custom-body .price-prefix-after.reverse-prefix-box {
  flex-direction: row;
}

.dashboard-main-section .price .custom-body .price-prefix-after .box-2 {
  padding-right: 0;
}

.dashboard-main-section .price .custom-body .price-prefix-after.reverse-prefix-box .box-1 {
  padding-right: 0;
}

.dashboard-main-section span.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus,
.select2-container--default .select2-search--inline .select2-search__field {
  width: 100% !important;
}



.dashboard-main-section .prefix-box-after,
.dashboard-main-section .after-price-after {
  display: none;
}

.dashboard-main-section .prefix-box-before,
.dashboard-main-section .after-price-before {
  display: block;
}

.dashboard-main-section .price .custom-body .price-prefix-after .after-price-before {
  padding-left: 17px;
  padding-right: 0;
}


.dashboard-main-section .select2-selection__rendered li.select2-search.select2-search--inline {
  width: 100% !important;
}

.dashboard-main-section .select2-selection.select2-selection--single {
  border: none;
}



.dashboard-main-section .select2-selection.select2-selection--single:focus {
  border: 1px solid #272727 !important;
  box-shadow: none !important;
}



.dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #4c4c4c;
  border: 1px solid #4c4c4c;
  color: #fff;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-listing .dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.create-listing .dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__choice button {
  border: none !important;
  outline: none !important;
  top: 4px;
}

.create-listing .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: transparent !important;
  color: var(--white) !important;
}

.create-listing .select2-container--default .select2-search--inline .select2-search__field {
  margin: 0 !important;
}

.dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
}

.dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
}

.dashboard-main-section .property-details .label-type .select2-selection__rendered {
  outline: none;
  color: #272727;
  font-family: var(--jakarta);
  font-size: 15px !important;
  font-weight: 400;
  border: 1px solid !important;
  border-color: #dce0e0 !important;
  height: auto;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  width: 100%;
  padding: 0 !important;
  line-height: 1.5;
  background-color: #fff !important;
  border-radius: 0.25rem;
  gap: 10px;
  box-shadow: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

}

.dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__clear {
  z-index: 11;
  position: absolute;
  right: 0%;
  font-size: 18px;
  top: 0px;
  background: #fff;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.dashboard-main-section .property-details .label-type .select2-selection__rendered li.select2-search.select2-search--inline input {
  border: none !important;
  outline: none !important;
  background-color: transparent !important;

}

.select2-container--default .select2-search--inline .select2-search__field:focus {
  border: 1px solid #272727 !important;
}

.create-listing .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 10px;
}



/*

.select2-results__options {
  background-color: #272727; 
  color: #fff;
  border: 1px solid #4c4c4c; 
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
}


.select2-results__option {
  padding: 10px 15px;
  color: #fff;
  background-color: #272727 !important ;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px solid #4c4c4c;
}



.select2-results__option:hover {
  background-color: #4c4c4c !important;
  color: #fff;
}


.select2-results__option--highlighted[aria-selected="true"] {
  background-color: #707070 ;
  color: #fff;
}


.select2-results__options::-webkit-scrollbar {
  width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #272727; 
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #4c4c4c;
  border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: #707070; 
}
*/


@media(max-width: 1336px) {
  .table-wrapper {
    overflow-x: auto;
  }

  .dashboard-main-section .table.table-striped tbody tr td {
    white-space: nowrap;
    flex-wrap: wrap;
  }

  .dashboard-main-section .table.table-striped tbody tr td .tfr-address {
    text-wrap: wrap;
    text-align: right;
    margin-left: auto;
  }

}






.dashboard-main-section .custom-card.property-details .form-group .select2.select2-container {
  width: 100% !important;
}

.dashboard-main-section .select2-container {
  width: 100% !important;
}

.dashboard-main-section .custom-card .country,
.dashboard-main-section .custom-card .status-general,
.dashboard-main-section .custom-card .currency {
  display: flex;
  flex-direction: column;
}

.dashboard-main-section .custom-card.property-details .prop-type .form-group label,
.dashboard-main-section .custom-card .country label,
.dashboard-main-section .custom-card .status-general label,
.dashboard-main-section .custom-card .currency label {
  order: 1;
}

.dashboard-main-section .custom-card.property-details .prop-type .form-group select,
.dashboard-main-section .custom-card .country select,
.dashboard-main-section .custom-card .status-general select,
.dashboard-main-section .custom-card .currency select {
  order: 2;
}

.dashboard-main-section .custom-card.property-details .prop-type .form-group .error-message,
.dashboard-main-section .custom-card .country .error-message,
.dashboard-main-section .custom-card .status-general .error-message,
.dashboard-main-section .custom-card .currency .error-message {
  order: 4;
}

.dashboard-main-section .custom-card.property-details .prop-type .form-group span.select2.select2-container,
.dashboard-main-section .custom-card .country span.select2.select2-container,
.dashboard-main-section .custom-card .status-general span.select2.select2-container,
.dashboard-main-section .custom-card .currency span.select2.select2-container {
  order: 3;
}

.dashboard-main-section .mobile-dashboard-header {
  display: none;
}

.dashboard-main-section .mobile-dashboard-header .mob_dashboard_profile img {
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
}

.dashboard-main-section .mobile-dashboard-header .dropdown-menu_dashboard {
  flex-direction: column;
  position: absolute;
  left: auto;
  right: 0;
  top: 40px;
  width: 250px;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  border: 1px solid #f3f4f6;
  border-radius: 4px;
  text-align: left;
  border-color: #dce0e0;
  background: #fff;
  color: var(--color-27);
  z-index: 11;
}

.dashboard-main-section .mobile-dashboard-header .dropdown-menu_dashboard h6,
.dashboard-main-section .mobile-dashboard-header .dropdown-menu_dashboard small {
  font-family: var(--jakarta);
}

.dashboard-main-section .mobile-dashboard-header .dropdown-menu_dashboard h6 {
  text-transform: capitalize !important;
  font-weight: var(--font-weight-600);
}

.dashboard-main-section .mobile-dashboard-header .dropdown-divider {
  margin: 15px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.175);
  opacity: 1;
}

.dashboard-main-section .mobile-dashboard-header .dropdown-menu_dashboard .dropdown-item {
  color: var(--color-4c);
  font-family: var(--jakarta);
  font-weight: 400;
  padding: 0.25rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.dashboard-main-section .custom-card.features {
  margin-bottom: 0;
}

.dashboard-main-section .custom-card.features #custom_features_container {
  display: flex;
  align-items: center;
  justify-content: start;
  row-gap: 5px;
  column-gap: 25px;
  flex-wrap: wrap;
  width: 100%;
}

.dashboard-main-section .custom-card.features #custom_features_container .form-check {
  width: calc(100% / 2 - 13px);
}

@media (min-width:768px) {
  .dashboard-main-section .custom-card.features #custom_features_container .form-check {
    width: calc(100% / 4 - 20px)
  }
}


/*------------ Responsive CSS -------------*/

@media (max-width: 991px) {
  .container {
    padding: 15px;
  }

  body.sidebar-active {
    overflow: hidden;
    position: relative;
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    /* Below sidebar but above other content */
    display: none;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .sidebar {
    z-index: 999;
    position: relative;
    pointer-events: auto;
  }

  body.sidebar-active>*:not(.sidebar):not(.sidebar-overlay) {
    pointer-events: none;
  }

  /* Ensure all sidebar content remains interactive */
  .sidebar * {
    pointer-events: auto !important;
  }


  .dashboard-main-section .text-end {
    z-index: 1;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    background-color: #ffffff;
  }

  .mobile-header .menu-icon i,
  .mobile-header .user-icon i {
    color: #707070;
  }

  .mobile-header .logo img {
    object-fit: contain;
    max-width: 100%;
    height: 30px;
  }

  .dashboard-main-section .text-end {
    width: 100%;
    margin-left: 0;
  }

  .dashboard-main-section {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    position: static;
    transition: all 0.5s ease;
  }

  .dashboard-main-section.overlay-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .dashboard-main-section.overlay-bg::before {
    opacity: 1;
    visibility: visible;
  }

  .dashboard-main-section .sidebar h1 {
    text-align: left;
  }

  .toggle-btn-mobile {
    display: inline-block;
  }

  .dashboard-main-section .sidebar {
    position: absolute;
    left: -100%;
    top: 0;
    display: block;
    width: 85%;
    height: 100vh;
    z-index: 999;
    transition: all 0.5s ease;
  }

  .dashboard-main-section .sidebar.active-sidebar {
    left: 0;
  }

  .dashboard-main-section .main {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }

  .dashboard-main-section .main.overflow-main {
    height: 95vh;
  }

  .cross-icon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 25px;
    background: #fff;
    z-index: 999;
    border-radius: 100px;
  }

  .cross-icon.active-cross {
    display: flex;
  }

  .cross-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border: 1px solid #707070;
    border-radius: 100px;
  }

  .dashboard-main-section .custom-body {
    padding: 20px;
  }

  .dashboard-main-section .custom-header,
  .dashboard-main-section .media h2,
  .dashboard-main-section .media .media-content,
  .dashboard-main-section .floor-plan-group .plan-body {
    padding: 30px 20px !important;
  }

  .dashboard-main-section .video,
  .dashboard-main-section .media-content>.custom-body {
    padding: 30px 0 !important;
  }

  .dashboard-main-section .features .custom-body .row {
    gap: 0px;
  }

  .dashboard-main-section .features .custom-body .row .col-md-3 {
    width: calc(100% / 2 - 0px);
  }

  .dashboard-main-section .custom-body .form-check label {
    white-space: nowrap;
  }

  .dashboard-main-section .custom-card.property-details .form-group {
    margin-bottom: 0;
  }

  .dashboard-main-section .form-group {
    margin-bottom: 10px;
  }

  .dashboard-main-section .custom-body.row .col-md-4.col-sm-12 {
    margin-bottom: 10px;
  }

  .dashboard-main-section #addFloorPlanBtn {
    margin-left: 20px;
  }

  /* .dashboard-main-section #addcustomfeatures {
    margin-left: 20px;
  } */

  .dashboard-main-section .details>.custom-body .col-md-6:last-child {
    --bs-gutter-x: 1.5rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
  }

  .dashboard-main-section span.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus,
  .select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
  }

  .dashboard-main-section .select2-selection__rendered li.select2-search.select2-search--inline {
    width: 100% !important;
  }

  .dashboard-main-section .select2-selection__rendered li.select2-search.select2-search--inline:focus {
    border: 1px solid #272727;
  }

  .dashboard-main-section .custom-card.property-details .form-group .select2.select2-container {
    width: 100% !important;
  }

  .dashboard-main-section .select2-container {
    width: 100% !important;
  }

  .dashboard-main-section .mobile-dashboard-header {
    display: block;
  }
}

@media (max-width: 767px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    background-color: #ffffff;
  }

  .mobile-header .menu-icon i,
  .mobile-header .user-icon i {
    color: #707070;
  }

  .mobile-header .logo img {
    object-fit: contain;
    max-width: 100%;
    height: 30px;
  }

  .dashboard-main-section .text-end {
    width: 100%;
    margin-left: 0;
  }

  .dashboard-main-section {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    position: static;
    transition: all 0.5s ease;
  }

  .dashboard-main-section.overlay-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .dashboard-main-section.overlay-bg::before {
    opacity: 1;
    visibility: visible;
  }

  .dashboard-main-section .sidebar h1 {
    text-align: left;
  }

  .toggle-btn-mobile {
    display: inline-block;
  }

  .dashboard-main-section .sidebar {
    position: absolute;
    left: -100%;
    top: 0;
    display: block;
    width: 80%;
    height: 100vh;
    z-index: 999;
    transition: all 0.5s ease;
  }

  .dashboard-main-section .sidebar.active-sidebar {
    left: 0;
  }

  .dashboard-main-section .main {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }

  .dashboard-main-section .main.overflow-main {
    height: 95vh;
  }

  .cross-icon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 28px;
    top: 30px;
    background: #fff;
    z-index: 999;
    border-radius: 100px;
  }

  .cross-icon.active-cross {
    display: flex;
  }

  .cross-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border: 1px solid #707070;
    border-radius: 100px;
  }

  .dashboard-main-section .custom-body {
    padding: 20px;
  }

  .dashboard-main-section .custom-header,
  .dashboard-main-section .media h2,
  .dashboard-main-section .media .media-content,
  .dashboard-main-section .floor-plan-group .plan-body {
    padding: 30px 20px !important;
  }

  .dashboard-main-section .video,
  .dashboard-main-section .media-content>.custom-body {
    padding: 30px 0 !important;
  }

  .dashboard-main-section .details .custom-body {
    box-shadow: none;
  }

  .dashboard-main-section .features .custom-body {
    box-shadow: none;
  }

  .dashboard-main-section .features .custom-body .row {
    gap: 0px;
  }

  .dashboard-main-section .features .custom-body .row .col-md-3 {
    width: calc(100% / 2 - 0px);
  }

  .dashboard-main-section .features .custom-body .row .col-md-3:nth-child(odd) {
    padding-right: 0;
  }

  .dashboard-main-section .features .custom-body .row .col-md-3:nth-child(even) {
    padding-right: 0;
  }

  .dashboard-main-section .custom-body .form-check {
    gap: 5px;
  }

  .dashboard-main-section .custom-body .form-check label {
    white-space: nowrap;
  }

  .dashboard-main-section .price .price-all {
    flex-direction: column;
  }


  .dashboard-main-section .price .price-all .currrency-payemnt {
    width: 100%;
  }


  .dashboard-main-section #payment-period-group {
    padding-right: 0 !important;
    width: 100%;
  }

  .dashboard-main-section .price .custom-body .price-prefix-after {
    padding-left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .dashboard-main-section .price .custom-body .price-prefix-after.reverse-prefix-box {
    flex-direction: column;
  }

  .dashboard-main-section .price .custom-body .price-prefix-after.prefix-active {
    padding-left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .dashboard-main-section .price .price-all .price-input,
  .dashboard-main-section .custom-card.location .custom-body .row.mb-3 .col-md-6:last-child {
    padding-top: 10px;
  }

  .dashboard-main-section .custom-card.property-details .form-group {
    margin-bottom: 0;
  }

  .dashboard-main-section .form-group {
    margin-bottom: 10px;
  }

  .dashboard-main-section .custom-body.row .col-md-4.col-sm-12 {
    margin-bottom: 10px;
  }

  .dashboard-main-section #addFloorPlanBtn {
    margin-left: 20px;
  }

  /* .dashboard-main-section #addcustomfeatures {
    margin-left: 20px;
  } */

  .dashboard-main-section .details>.custom-body .col-md-6:last-child {
    --bs-gutter-x: 1.5rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .dashboard-main-section .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
  }

  .dashboard-main-section .custom-body.row .col-md-6.mt-3,
  .dashboard-main-section .custom-body.row .col-md-4.col-sm-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .dashboard-main-section .custom-body input,
  .dashboard-main-section .custom-body select,
  .dashboard-main-section .custom-body .select2-container .select2-selection--single .select2-selection__rendered {
    width: 100% !important;
  }

  .dashboard-main-section .select2-selection__rendered li.select2-search.select2-search--inline {
    width: 100% !important;
  }

  .dashboard-main-section .custom-body select#status option {
    color: #212529;
  }

  .dashboard-main-section .custom-card.property-details .form-group .select2.select2-container {
    width: 100% !important;
  }

  .dashboard-main-section .custom-card.property-details .form-group .select2.select2-container ul.select2-selection__rendered li {
    width: 100% !important;
  }

  .dashboard-main-section .select2-container {
    width: 100% !important;
  }

  .dashboard-main-section .price .custom-body .price-prefix-after {
    padding-right: 0;
  }

  .dashboard-main-section .price .custom-body .price-prefix-after .col-md-6 {
    width: 100%;
  }
}

/*------------ Responsive CSS -------------*/

/*-------------- Properties CSS ------------------*/

.table.table-striped thead tr {
  border-bottom: 1px solid #dce0e0;
}

.table.table-striped thead tr th {
  background-color: rgba(220, 224, 224, 0.35);
}

.table.table-striped thead tr th,
.table.table-striped tbody tr td {
  padding: 10px;
}

.table.table-striped tbody tr td img {
  width: 48px !important;
  height: 48px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  object-position: left;
}

.table.table-striped thead tr th {
  font-family: var(--jakarta);
  color: #272727;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  vertical-align: middle;
}

.table.table-striped tbody tr {
  background-color: #fff;
}

.table.table-striped tbody tr:hover {
  background-color: rgba(220, 224, 224, 0.35);
}

.table.table-striped tbody tr td {
  border-bottom: 1px solid #dce0e0;
  vertical-align: middle;
  font-family: var(--jakarta);
  color: var(--color-27);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  --bs-table-bg-type: #fff;
}

.table.table-striped tbody tr td a{
  /* color: var(--color-27);
  font-weight: var(--font-weight-600); */
  color: var(--purple);
  font-weight: 700;
  transition: all 0.5s ease;
}

.table.table-striped tbody tr td a:hover{
  color: var(--hover-purple);
}

.table .featured-dates-user {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 3px;
}

.table .featured-dates-user .featured-start,
.table .featured-dates-user .featured-end {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 3px;
}

.table.table-striped tbody tr td[data-label="Verification"] {
  text-align: center;
}

.table.table-striped tbody tr td .dropdown button {
  /* background-color: transparent; */
  /* color: #4c4c4c; */
  /* border-color: #4c4c4c; */
  color: var(--color-white);
  font-family: var(--jakarta);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--color-27);
  background-color: var(--color-27);
  padding: 0 15px;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
  cursor: pointer;
  text-transform: uppercase;
  gap: 10px;
  height: 40px;
}

.table.table-striped tbody tr td .dropdown button:hover {
  /* background-color: #4c4c4c;
  border-color: #4c4c4c; */
  background-color: var(--color-4c);
  border-color: var(--color-4c);
}

.table.table-striped tbody tr td .dropdown .dropdown-menu li a {
  padding: 10px 20px;
  border-bottom: 1px solid #dce0e0;
  font-family: var(--jakarta);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  color: #4c4c4c;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: all 0.5s ease;
}

.table.table-striped tbody tr td .dropdown .dropdown-menu li a:hover {
  background-color: #f8f9fa;
}


/* Hide default arrow in WebKit browsers */
.dashboard-main-section .property-details .custom-body select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' viewBox='0 0 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 9px 5px;
  padding-right: 2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-image 0.3s ease;
}

/* Flip icon when .select-opened class is added */
.dashboard-main-section .property-details .custom-body select.form-control.select-opened {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' viewBox='0 0 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5l5-5 5 5z' fill='%23888'/%3E%3C/svg%3E");
}


.dashboard-main-section .property-details .custom-added {
  position: relative;
  border-radius: 4px;
  border: 1px solid transparent;
}


.dashboard-main-section .property-details .custom-added.select2-container--open {
  border: 1px solid #272727 !important;
}


.dashboard-main-section .property-details .custom-added::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' viewBox='0 0 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 5px;
  width: 10px;
  border: none;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.dashboard-main-section .property-details .custom-added.select2-container--open::before {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' viewBox='0 0 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5l5-5 5 5z' fill='%23888'/%3E%3C/svg%3E");
}


.dashboard-main-section .property-description textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  font-size: 14px;
  height: 150px;
  box-shadow: none !important;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dashboard-main-section .property-description textarea:focus {
  border: 1px solid #272727 !important;
}

.dashboard-main-section .listing-radio-details .feature-checkbox {
  width: calc(100% / 2 - 0px);
}

.dashboard-main-section .listing-radio-details .feature-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-main-section #searchListingBtn {
  line-height: 28px !important;
}

/*



    #dashbord table.table {
        border-collapse: collapse;
        width: 100%;
        margin-top: 20px;
        font-family: 'Segoe UI', sans-serif;
        font-size: 15px;
        color: #333;
    }


    #dashbord thead {
        background-color: #f1f2f4;
    }

    #dashbord thead th {
        padding: 12px 15px;
        border-bottom: 1px solid #ddd;
        font-weight: 600;
    }

  
    #dashbord tbody td {
        padding: 15px;
        vertical-align: middle;
        border-bottom: 1px solid #e3e3e3;
    }

    #dashbord td img {
        max-height: 70px;
        width: auto;
        border-radius: 6px;
    }


    #dashbord td strong {
        font-size: 16px;
        color: #2e2e2e;
    }

    #dashbord td span {
        font-size: 13px;
        color: #6c757d;
    }


    #dashbord td span[style*="background-color: #343a40"] {
        margin-top: 5px;
        display: inline-block;
        background-color: #343a40;
        color: #fff;
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 4px;
    }


    #dashbord .dropdown .btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    #dashbord .dropdown-menu {
        font-size: 14px;
        min-width: 160px;
    }

    #dashbord .dropdown-item {
        padding: 8px 12px;
    }

*/



/*--------------- Table Design Properties CSS ----------------------*/

@media (max-width: 991.98px) {
  .table.table-striped {
    width: 100%;
    border-collapse: collapse;
  }

  .table.table-striped thead {
    display: none;
  }

  .table.table-striped tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #dce0e0;
    border-radius: 0.25rem;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
  }

  .table.table-striped tbody tr td[data-label="Title"] {
    white-space: normal;
  }

  .table.table-striped tbody tr td[data-label="Title"] strong {
    max-width: 80%;
    text-align: right;

  }

  .table.table-striped tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #dce0e0;
  }

  .table.table-striped tbody td:last-child {
    border-bottom: none;
  }

  .table.table-striped tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 1;
    color: #272727;
    text-align: left;
    margin-right: 10px;
  }

  .table.table-striped tbody td img {
    max-width: 100px;
    height: auto;
    border-radius: 0.25rem;
    max-width: 67px;
  }

  .table.table-striped .dropdown-menu {
    width: 100%;
  }

  .dashboard-main-section .custom-body .listing-radio-details {
    margin: 20px 0;
  }

  .dashboard-main-section .custom-body .listing-radio-details .radio-form-box {
    width: calc(100% / 2 - 5px);
    padding: 0;
  }

  .dashboard-main-section .custom-body .radio-form-box>label {
    white-space: nowrap;
  }
}

/*--------------- Table Design Properties CSS ----------------------*/




/*-------------- Properties CSS ------------------*/


/*------------ Favourite CSS --------------------*/

.dashboard-main-section .fav-table td a {
  font-family: var(--jakarta);
  color: var(--color-27);
  font-size: 14px;
  font-weight: var(--font-weight-600) !important;
  line-height: 25px;
  transition: all 0.5s ease;
}

.dashboard-main-section .fav-table td a:hover {
  color: var(--purple);
}


.dashboard-main-section .fav-table td.thumb img {
  width: 65%;
  height: 75px;
  object-fit: cover;
}


/*------------ Favourite CSS --------------------*/

/* ------- Media Queries ------------ */

@media (max-width:767.98px) {

  .currency-payment,
  #annualNetRentDiv {
    width: 100% !important;
  }

  #annual_net_currency_wrapper,
  #agent_fee_currency_wrapper {
    min-width: 100% !important;
  }

  .dashboard-main-section .media .form-check .form-check-input {
    width: 76px !important;
  }

  .dashboard-main-section .dashboard {
    padding: 0px 0 120px 0;
  }

  .dashboard-main-section .moblie_dash_user button {
    background: none !important;
  }
}