:root {
  --vh: 100vh;
  --header-height: 8rem;
  --content-main-header-height: 18.4rem;
  --search-header-height: 9.6rem;
  --primary-border-radius: .4rem;
  --primary-color: #72137a;
  --primary-color-side-bar-hover: #b989bd;
  --primary-color-btn-hover: #802b87;
  --primary-text: #0a0a2a;
  --secondary-text: #6c6c6c;
  --color-text-primary: #3a3f45;
  --color-text-secondary: #5a5f65;
  --color-text-tertiary: #7a7f85;
  --border-color: #bababa;
}

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

html {
  scrollbar-width: none;
  font-size: 62.5%;
}

body {
  height: 100vh;
  color: var(--color-text-primary);
  scrollbar-width: none;
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1rem;
  position: relative;
  overflow-x: hidden;
}

li {
  list-style: none;
}

.mobile-header {
  display: none;
}

.main-header {
  display: flex;
}

.document-bar.mobile {
  display: none;
}

.main-container {
  grid-template-rows: 1fr;
  grid-template-columns: 14.4rem 1fr;
  height: 100vh;
  display: grid;
}

.site-header-container {
  z-index: 2;
  width: 168rem;
  margin: 0 auto;
  padding: 2.4rem;
}

.content-container {
  position: relative;
}

.content-primary {
  max-height: calc(100vh - calc(var(--header-height)  + var(--content-main-header-height)));
  scrollbar-width: none;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 3.6rem;
  display: flex;
  overflow-y: scroll;
}

.content-secondary {
  max-height: calc(100vh - calc(var(--header-height) * 2));
  scrollbar-width: none;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 3.6rem;
  display: flex;
  overflow-y: scroll;
}

.content-account {
  max-height: calc(100vh - calc(var(--header-height) * 2));
  scrollbar-width: none;
  padding: 1.4rem 3.6rem 0;
  position: relative;
  overflow-y: scroll;
}

.content-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  width: 46.4rem;
  height: calc(100vh - 8rem);
  margin: auto;
  display: flex;
}

.content-add-update {
  width: 100%;
  height: calc(100vh - calc(var(--header-height) * 2));
  scrollbar-width: none;
  justify-content: center;
  align-items: flex-start;
  gap: 4.8rem;
  padding: 4.8rem 0;
  display: flex;
  overflow-y: scroll;
}

.content-error {
  max-height: calc(100vh - var(--header-height));
  scrollbar-width: none;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 3.6rem;
  display: flex;
  overflow-y: scroll;
}

.primary-heading {
  color: var(--color-text-primary);
  font-family: Poppins, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.secondary-heading {
  color: var(--color-text-secondary);
  font-size: 2rem;
  font-weight: 600;
}

.form__heading {
  color: var(--primary-color);
  align-self: flex-start;
  font-size: 2rem;
}

.content-form__heading {
  margin-bottom: .8rem;
  font-family: Poppins, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.form {
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  display: flex;
}

.form__property-featues {
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  display: flex;
}

.form__item {
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  display: flex;
  position: relative;
}

.form__item--label {
  align-self: flex-start;
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.image-label {
  margin-bottom: 1.6rem;
}

.form__proprty-features--header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.form__item--header-label {
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.form__text-field {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  width: 46.4rem;
  height: 4.8rem;
  padding-left: 5.2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.form__text-field--update {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  width: 0;
  height: 4rem;
  margin: 0 .8rem;
  padding-left: 1.2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.text-field__no-icon {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  width: 46.4rem;
  height: 4.8rem;
  padding-left: 1.2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.form__text-field:focus, .form__text-field--update:focus, .text-field__no-icon:focus {
  border: .1rem solid var(--primary-color);
  outline: none;
}

.form__text-field::placeholder {
  font-size: 1.3rem;
}

.form__text-area-field {
  resize: none;
  border: .1rem solid var(--border-color);
  white-space: pre-line;
  border-radius: .4rem;
  width: 46.4rem;
  height: 16rem;
  padding: 1.2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.property-description-text-area {
  height: 24rem;
}

.form__text-area-field:focus {
  border: .2rem solid var(--primary-color);
  outline: none;
}

.form__text-area-field::placeholder {
  font-size: 1.3rem;
}

.form__select-field {
  border: .1rem solid var(--border-color);
  background-color: #fff;
  border-radius: .4rem;
  width: 46.4rem;
  height: 4.8rem;
  padding-left: 1.2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.form__select-field:focus {
  outline: none;
}

.form__file-upload {
  align-self: flex-start;
}

.btn {
  cursor: pointer;
  background: none;
  border: none;
  transition: all .3s;
}

.btn--icon:hover {
  transform: scale(1.1);
}

.btn--icon:active {
  transform: scale(.9);
}

.form__show-password-btn {
  top: 3.9rem;
  right: 1.6rem;
}

.form-btn {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: .4rem;
  width: 46.4rem;
  height: 5.6rem;
  font-family: Poppins, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all .3s;
}

.form-btn:hover {
  background-color: var(--primary-color-btn-hover);
}

.form__item--add-remove-btns {
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  display: flex;
}

.anchor-btn:link, .anchor-btn:visited {
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  text-decoration: none;
  display: flex;
}

.anchor-btn:hover, .anchor-btn:active {
  color: var(--primary-color-btn-hover);
}

.delete-modal-btn-container, .update-modal-btn-container {
  justify-content: flex-end;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  display: flex;
}

.delete-btn, .update-btn, .public-header__action-btn {
  color: var(--primary-color);
  border: .1rem solid var(--primary-color);
  border-radius: .4rem;
  padding: .8rem 2.4rem;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.delete-btn:hover, .update-btn:hover, .public-header__action-btn:hover {
  color: #fff;
  background-color: var(--primary-color-btn-hover);
}

.cancel-btn {
  color: var(--primary-color);
  border: .1rem solid var(--primary-color);
  border-radius: .4rem;
  padding: .8rem 2.4rem;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.cancel-btn:hover {
  color: #fff;
  background-color: var(--primary-color-btn-hover);
}

.form__icon, .form__show-password-btn {
  color: var(--primary-color);
  font-size: 2.4rem;
  position: absolute;
}

.form__icon {
  top: 3.9rem;
  left: 1.6rem;
}

.add-remove-feature__icon {
  color: var(--primary-color);
  font-size: 2rem;
}

.form__item--file-picker::file-selector-button {
  color: var(--primary-color);
  border: .1rem solid var(--primary-color);
  cursor: pointer;
  background-color: #fff;
  border-radius: 2.4rem;
  margin-right: 1.6rem;
  padding: .8rem 1.6rem;
  font-family: Inter, sans-serif;
  transition: all .3s;
}

.form__item--file-picker::file-selector-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.hide-password .form__show-password-icon {
  display: block;
}

.hide-password .form__hide-password-icon, .form__show-password-icon {
  display: none;
}

.form__hide-password-icon {
  display: block;
}

.delete-modal, .update-modal {
  z-index: 9999;
  border: .1rem solid var(--border-color);
  background-color: #fff;
  border-radius: .8rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 4.8rem;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 .4rem 2.4rem #0000001a;
}

.delete-modal {
  gap: 3.6rem;
}

.update-modal {
  gap: 3rem;
}

.delete-modal-heading, .update-modal-heading {
  color: var(--primary-text);
  align-self: flex-start;
  font-size: 2rem;
}

.delete-modal-message {
  color: var(--secondary-text);
}

.update-modal-text-field {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  width: 40rem;
  height: 4.8rem;
  padding-left: 1.6rem;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.update-modal-text-field:focus {
  border: .2rem solid var(--primary-color);
  outline: none;
}

.update-modal-text-field::placeholder {
  font-size: 1.5rem;
}

.overlay {
  color: #000;
  backdrop-filter: blur(6px);
  z-index: 5;
  background-color: #00000080;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.alert-public, .alert-private {
  text-align: center;
  color: #fff;
  z-index: 9999;
  border-bottom-right-radius: .4rem;
  border-bottom-left-radius: .4rem;
  padding: 1.6rem 4.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  position: absolute;
  left: 50%;
  box-shadow: 0 .4rem 2.4rem #00000026;
}

.alert-public {
  bottom: 0;
  transform: translate(-50%, 100%);
}

.alert-private {
  top: 0;
  transform: translateX(-50%);
}

.alert--success {
  background-color: #4db638;
}

.alert--error {
  background-color: #da4444;
}

.tick-confirm {
  color: #4db638;
  font-size: 16rem;
}

.confirm-container {
  justify-content: center;
  height: 100vh;
  display: flex;
}

.confirm-content {
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  margin: auto 0;
  display: flex;
}

.confirm-message {
  color: var(--primary-text);
  margin-bottom: 1.6rem;
  font-family: Poppins, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.back-to-btn:link, .back-to-btn:visited {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: .4rem;
  margin-bottom: 12.8rem;
  padding: 2rem 4.8rem;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all .3s;
}

.back-to-btn:hover, .back-to-btn:active {
  background-color: #802b87;
}

.content-field__data--icon-field {
  align-items: center;
  gap: 1.6rem;
  padding-left: 2rem;
  display: flex;
}

.view-media {
  color: #4485da;
  font-size: 2.4rem;
}

.global-spinner-overlay {
  backdrop-filter: blur(3px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  background-color: #fff9;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .25s, visibility .25s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.global-spinner-overlay.show {
  opacity: 1;
  visibility: visible;
}

.global-spinner-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.global-spinner {
  border: 4px solid #0000001a;
  border-top-color: var(--primary-color, #3b82f6);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  animation: 1s linear infinite spinner-rotate;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.document-bar__content {
  opacity: 1;
  height: auto;
  transition: height .35s, opacity .3s;
  overflow: hidden;
}

.document-bar.closed .document-bar__content {
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.main-header {
  height: var(--header-height);
  border-bottom: .1rem solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  padding: 0 3.6rem;
  font-weight: 600;
  display: flex;
  position: relative;
}

.account-name__container {
  flex-direction: column;
  align-items: end;
  gap: .8rem;
  display: flex;
}

.account-name__heading {
  color: var(--primary-color);
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.account-name__name {
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.public-header {
  width: 100%;
  height: var(--header-height);
  border-bottom: .1rem solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  padding: 0 2.4rem 0 3.6rem;
  font-weight: 700;
  display: flex;
  position: relative;
  box-shadow: 0 .4rem 2.4rem #00000014;
}

.logo {
  height: 4.3rem;
}

.active .nav-list__content {
  color: #b989bd;
}

.side-bar {
  background: linear-gradient(#72137a, #5b0f62);
  justify-content: center;
  align-items: center;
  width: 14.4rem;
  height: 100vh;
  padding: 3.6rem 0;
  display: flex;
  box-shadow: .4rem 0 2.4rem #00000026;
}

.nav-list {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.nav-list__link:link, .nav-list__link:visited {
  color: #fff;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.nav-list__link:hover, .nav-list__link:active {
  color: var(--primary-color-side-bar-hover);
}

.nav-list__content {
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  display: flex;
}

.nav-list__icon {
  font-size: 3.6rem;
}

.nav-list__btn {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.nav-list__btn:hover {
  color: var(--primary-color-side-bar-hover);
  font-weight: 600;
}

.bottom-bar {
  background: linear-gradient(90deg, #72137a, #5b0f62);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 8rem;
  display: none;
  box-shadow: .4rem 0 2.4rem #00000026;
}

.bottom-bar__nav-list {
  justify-content: space-between;
  align-items: center;
  min-width: 100vw;
  min-height: 8rem;
  padding: 0 2rem;
  display: flex;
}

.bottom-bar .nav-list__content {
  gap: 1rem;
  font-size: 1.3rem;
}

.bottom-bar .nav-list__icon {
  font-size: 2.6rem;
}

.document-bar.desktop {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  width: 100%;
  box-shadow: 0 .4rem 2.4rem #0000001a;
}

.document-bar__container {
  border-bottom: .1rem solid var(--border-color);
  border-radius: .4rem .4rem 0 0;
  justify-content: space-between;
  align-items: center;
  min-height: 5.6rem;
  display: flex;
}

.document-bar__title-container {
  align-items: center;
  display: flex;
}

.document-bar__title {
  width: 32rem;
  min-height: 5.6rem;
  color: var(--color-text-primary);
  border-right: .1rem solid var(--border-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  align-content: center;
  padding: 0 3.6rem;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  overflow: hidden;
}

.document-bar__edit-title-btn {
  width: 6.4rem;
}

.document-bar__edit-title-icon {
  color: var(--primary-color);
  font-size: 2.4rem;
}

.document-bar__update-icon--confirm {
  color: #4db638;
  margin-right: .8rem;
  font-size: 2.4rem;
}

.document-bar__update-icon--close {
  color: #da4444;
  font-size: 2.4rem;
}

.closed .document-bar__container {
  border-bottom: none;
}

.document-bar.desktop:not(.closed):has(.document-bar__content) .document-bar__container {
  border-bottom: .1rem solid var(--border-color);
}

.closed .document-bar__content {
  display: none;
}

.document-bar__content {
  display: block;
}

.document-bar__content-field {
  color: var(--primary-text);
  border-bottom: .1rem solid var(--border-color);
  align-items: center;
  font-family: Inter, sans-serif;
  display: flex;
}

.document-bar__fields .document-bar__content-field:last-child {
  border-bottom: none;
}

.content-field__key {
  color: #444;
  border-right: .1rem solid var(--border-color);
  align-items: center;
  min-width: 32rem;
  min-height: 5.6rem;
  padding-left: 3.6rem;
  font-weight: 700;
  display: flex;
}

.content-field__data {
  color: #444;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-content: center;
  width: 138.2rem;
  min-height: 5.6rem;
  padding-left: 2rem;
  padding-right: 3.6rem;
  overflow: hidden;
}

.toolbar {
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  padding-right: 1.6rem;
  display: flex;

  & .ph, & .ph-fill {
    font-size: 3rem;
  }
}

.toolbar__update-icon {
  color: var(--primary-color);
}

.toolbar__view-btn {
  color: #4485da;
  transition: all .3s;
}

.toolbar__view-btn:hover {
  color: #4485da;
}

.closed .toolbar__view-btn {
  color: #d9d9d9;
}

.closed .toolbar__view-btn:hover {
  color: #4485da;
}

.closed .toolbar__close-user-icon {
  display: none;
}

.closed .toolbar__view-user-icon, .toolbar__close-user-icon {
  display: block;
}

.toolbar__view-user-icon {
  display: none;
}

.toolbar__checkbox--mark-inactive-active {
  margin-top: .2rem;
}

.toolbar__checkbox--toggle-switch {
  appearance: none;
  cursor: pointer;
  background-color: #da4444;
  border-radius: 1.6rem;
  outline: none;
  width: 4.8rem;
  height: 2.4rem;
  transition: background .3s;
  position: relative;
  box-shadow: inset 0 .1rem .4rem #0003;
}

.toolbar__checkbox--toggle-switch:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  transition: left .3s;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  box-shadow: 0 .1rem .4rem #0003;
}

.toolbar__checkbox--toggle-switch:checked {
  background-color: #56ca3e;
}

.toolbar__checkbox--toggle-switch:checked:after {
  left: 75%;
}

.toolbar__delete-icon {
  color: #da4444;
}

.search-bar {
  border: .1rem solid var(--border-color);
  border-radius: .4rem;
  align-items: center;
  min-width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 .4rem 2.4rem #0000001a;
}

.search-bar__text-field {
  border: none;
  border-radius: .4rem 0 0 .4rem;
  width: 100%;
  height: 4.6rem;
  padding-left: 4.8rem;
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.search-bar__text-field::placeholder {
  color: #999;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
}

.search-bar__text-field:focus {
  outline: none;
}

.search-bar__icon {
  color: var(--primary-color);
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
}

.search-bar__btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 .4rem .4rem 0;
  width: 16rem;
  height: 4.6rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.search-bar__btn:hover {
  background-color: var(--primary-color-btn-hover);
}

.content-header__stats {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.mobile-content-header__stats, .mobile-stats, .mobile-stats--posts, .mobile-stats--testimonials, .mobile-stats--users {
  display: none;
}

.content-header-main {
  height: var(--content-main-header-height);
  border-bottom: .01rem solid var(--border-color);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3.6rem 3.6rem 3.2rem;
  display: flex;
}

.stats {
  justify-content: center;
  align-items: center;
  gap: 12rem;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stats__stat {
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  display: flex;
}

.stat {
  color: var(--primary-text);
  font-size: 2.4rem;
  font-weight: 600;
}

.stat__name {
  color: var(--secondary-text);
  font-size: 1.4rem;
  font-weight: 600;
}

.content-header__no-search {
  height: var(--header-height);
  border-bottom: .01rem solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  padding: 0 3.6rem;
  display: flex;
  position: relative;
}

.account__details-container {
  border-bottom: .1rem solid var(--border-color);
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
  padding: 2.4rem 0;
  display: flex;
}

.account__details-container:last-child {
  border-bottom: none;
}

.account__details--item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.8rem;
  display: flex;
}

.account__details--title {
  color: var(--color-text-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.account__details--detail {
  color: var(--color-text-secondary);
  font-size: 1.6rem;
}

.account__my-details-header--btns {
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  display: flex;
}

.account__update-details-btn {
  color: var(--primary-color);
  border: .1rem solid var(--primary-color);
  border-radius: .4rem;
  margin-bottom: .4rem;
  padding: .8rem 2.4rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.account__update-details-btn:hover {
  color: #fff;
  background-color: var(--primary-color);
  transform: scale(1.03);
}

.account__update-details-btn:active {
  transform: scale(.98);
}

.account__my-details-header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3rem 0 1.6rem;
  display: flex;
}

.account__heading {
  color: var(--primary-color);
  font-size: 2rem;
}

.toolbar__update-post-link {
  text-decoration: none;
}

.view-image.closed, .view-image__overlay.closed {
  display: none;
}

.image-view-modal {
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.view-image__overlay {
  backdrop-filter: blur(6px);
  z-index: 5;
  cursor: pointer;
  background-color: #00000080;
  position: absolute;
  inset: 0;
}

.document-bar__container {
  border-bottom: none;
}

.toolbar__view-property-link, .toolbar__update-property-link {
  text-decoration: none;
}

.toolbar__view-property-icon {
  color: #d9d9d9;
  transition: all .3s;
}

.toolbar__view-property-icon:hover {
  color: #4485da;
}

.toolbar__checkbox--mark-new-btn {
  margin-top: .3rem;
}

.toolbar__checkbox--mark-new-btn:hover .toolbar__checkbox--mark-new {
  background: url("../star_checked.d485fc91.svg") 0 0 / cover;
}

.toolbar__checkbox--mark-new {
  appearance: none;
  cursor: pointer;
  background: url("../star_unchecked.87d59e92.svg") 0 0 / cover;
  outline: none;
  width: 3rem;
  height: 3rem;
}

.toolbar__checkbox--mark-new:checked {
  background: url("../star_checked.d485fc91.svg") 0 0 / cover;
}

.toolbar__checkbox--mark-reserved-btn {
  margin-top: .4rem;
}

.toolbar__checkbox--mark-reserved-btn:hover .toolbar__checkbox--mark-reserved {
  background: url("../calendar_checked.c2c6ac06.svg") 0 0 / cover;
}

.toolbar__checkbox--mark-reserved {
  appearance: none;
  cursor: pointer;
  background: url("../calendar_unchecked.5fc4c4a0.svg") 0 0 / cover;
  outline: none;
  width: 3rem;
  height: 3rem;
}

.toolbar__checkbox--mark-reserved:checked {
  background: url("../calendar_checked.c2c6ac06.svg") 0 0 / cover;
}

.toolbar__checkbox--mark-sold-btn {
  margin-top: .2rem;
}

.toolbar__checkbox--mark-sold-btn:hover .toolbar__checkbox--mark-sold {
  background: url("../tick_checked.df2ad44b.svg") 0 0 / cover;
}

.toolbar__checkbox--mark-sold {
  appearance: none;
  cursor: pointer;
  background: url("../tick_unchecked.64d6b7ba.svg") 0 0 / cover;
  outline: none;
  width: 3rem;
  height: 3rem;
}

.toolbar__checkbox--mark-sold:checked {
  background: url("../tick_checked.df2ad44b.svg") 0 0 / cover;
}

.property {
  flex-direction: column;
  gap: 2.4rem;
  width: 120rem;
  margin: 1.6rem 4.8rem;
  font-family: Poppins, sans-serif;
  display: flex;
}

.property__header {
  border-bottom: .1rem solid var(--border-color);
}

.property__header--primary-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
  display: flex;
}

.property__header--primary-heading {
  font-size: 3rem;
}

.property__header--price {
  font-size: 3rem;
  font-weight: 800;
}

.property__header--secondary-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.property__header--secondary-heading {
  margin-bottom: 2.4rem;
}

.property__header--sub-heading {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.property__location {
  color: var(--secondary-text);
  font-weight: 500;
}

.property__header--view-video-icon {
  color: #4485da;
  font-size: 3.6rem;
}

.property__cover-img {
  object-fit: contain;
  border-radius: .8rem;
  margin-bottom: 2.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 .4rem 2.4rem #0000001a;
}

.property__details {
  border-bottom: .1rem solid var(--border-color);
  justify-content: space-around;
  align-items: center;
  margin-bottom: 3.6rem;
  padding-bottom: 4.8rem;
  font-family: Poppins, sans-serif;
  display: flex;
}

.property__details--field {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.property__details--icon {
  color: var(--primary-text);
  font-size: 3rem;
}

.property__details--detail {
  color: var(--secondary-text);
  font-size: 1.6rem;
}

.property__desciption {
  border-bottom: .1rem solid var(--border-color);
  margin-bottom: 3.6rem;
  padding-bottom: 4.8rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.6rem;
}

.property__section-heading {
  margin-bottom: 4.8rem;
  font-size: 3rem;
}

.property__description--features {
  margin: 0 0 3.6rem 2rem;
}

.property__description--features li {
  list-style: outside;
}

.property__desciption--description {
  white-space: pre-line;
}

.property__gallery {
  border-bottom: .1rem solid var(--border-color);
  margin-bottom: 3.6rem;
  padding-bottom: 5.6rem;
}

.property__gallery--images {
  cursor: pointer;
  border-radius: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  align-items: center;
  gap: .8rem;
  width: 100%;
  transition: all .3s;
  display: grid;
  position: relative;
  overflow: hidden;
}

.property__gallery--images .property__gallery--overlay {
  z-index: 9999;
  opacity: 0;
  background: #00000005;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.property__gallery--images:hover {
  transform: scale(1.005);
}

.property__gallery--images:hover .property__gallery--overlay {
  opacity: 1;
}

.property__gallery--thumbnail {
  z-index: 1;
  border-radius: .2rem;
  width: 100%;
}

.property__map--header {
  margin-bottom: 3.6rem;
}

.property__section-heading--location {
  margin-bottom: 2.4rem;
}

#map {
  opacity: 0;
  border: .1rem solid #ddd;
  border-radius: 1.2rem;
  min-width: 100%;
  min-height: 36rem;
  transition: opacity .6s ease-in;
  box-shadow: 0 .4rem 2.4rem #00000026;
}

#map.is-ready {
  opacity: 1;
}

.watermark {
  filter: grayscale() brightness(2) opacity(.75);
  height: 8rem;
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
}

.gallery-carousel.closed, .gallery-carousel--overlay.closed {
  display: none;
}

.gallery-carousel {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-carousel--container {
  aspect-ratio: 3 / 2;
  z-index: 9999;
  width: 62.5%;
  overflow: hidden;
  box-shadow: 0 .4rem 2.4rem #0003;
}

.gallery-carousel--image-continer {
  align-items: center;
  width: 100%;
  transition: transform .5s ease-in-out;
  display: flex;
  transform: translateX(0);
}

.gallery-carousel--image {
  object-fit: cover;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
}

.gallery-carousel--overlay, .view-video__overlay {
  backdrop-filter: blur(6px);
  z-index: 5;
  cursor: pointer;
  background-color: #00000080;
  position: absolute;
  inset: 0;
}

.gallery-carousel--btns {
  justify-content: space-between;
  align-items: center;
  width: 62.5%;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
}

.slider-btn {
  background-color: #0000004d;
  width: 4.8rem;
  height: 4.8rem;
}

.slider-btn:hover {
  background-color: #ffffff4d;
}

.slider-icon {
  color: #fff;
  font-size: 3.6rem;
}

.view-video.closed, .view-video__overlay.closed {
  display: none;
}

.view-video {
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.view-video__overlay {
  width: 100vw;
  height: 100%;
  display: block;
}

.toolbar__update-testimonial-link {
  text-decoration: none;
}

.document-bar.closed .toolbar__view-btn .toolbar__close-user-icon {
  display: none;
}

.document-bar.closed .toolbar__view-btn .toolbar__view-user-icon {
  display: block;
}

.toolbar__update-user-link {
  text-decoration: none;
}

.error {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  min-height: 100%;
  display: flex;
}

.error__msg, .error__msg--logged-out {
  color: var(--primary-text);
  font-size: 2.4rem;
  font-weight: 600;
}

.error__msg {
  margin-bottom: 12.8rem;
}

.error-icon {
  color: #da4444;
  font-size: 16rem;
}

.content-form__heading-container {
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  display: flex;
}

@media (width <= 31em) {
  .mobile-header {
    display: flex;
  }

  .main-header {
    display: none;
  }

  .main-container {
    grid-template-rows: 1fr 8rem;
    grid-template-columns: 1fr;
    height: 100svh;
  }

  .content-primary {
    gap: 2rem;
    width: 100vw;
    max-height: calc(100svh - 32rem);
    padding: 2rem;
  }

  .content-secondary {
    min-width: 100vw;
    max-height: calc(100svh - 22rem);
    padding: 2rem;
  }

  .content-account {
    width: 100vw;
    max-height: calc(100svh - 22rem);
    padding: 2rem;
  }

  .content-form {
    width: 100vw;
    max-height: calc(100svh - 7rem);
    margin: 0;
    padding: 2rem;
  }

  .content-add-update {
    width: 100%;
    max-height: calc(100svh - 22rem);
    padding: 2rem;
  }

  .content-error {
    height: calc(100svh - 15rem);
    padding: 2rem;
  }

  .content-error.public {
    justify-content: center;
    align-items: center;
    min-height: calc(100svh - 7rem);
    padding: 2rem;
    display: flex;
  }

  .primary-heading {
    font-family: Poppins, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .form__heading {
    margin-bottom: .8rem;
    font-size: 1.8rem;
  }

  .side-bar {
    pointer-events: none;
    display: none;
  }

  .bottom-bar {
    display: flex;
  }

  .mobile-header {
    border-bottom: .1rem solid var(--border-color);
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 7rem;
    padding: 0 2rem;
    font-weight: 600;
    display: flex;
    position: relative;
  }

  .logo {
    height: 3.6rem;
  }

  .account-name__name {
    font-size: 1.6rem;
  }

  .public-header {
    width: 100vw;
    height: 7rem;
    padding: 0 2rem;
  }

  .content-form .form {
    margin-bottom: 4.8rem;
  }

  .public-header__action-btn {
    padding: 1rem 2.4rem;
    font-size: 1.3rem;
    text-decoration: none;
  }

  header.content-header__no-search {
    width: 100vw;
    height: 7rem;
    padding: 0 2rem;
  }

  .nav-list__btn.account {
    color: var(--primary-color);
  }

  .content-header-main {
    max-width: 100vw;
    height: 14.8rem;
    padding: 3rem 3rem 2.4rem;
  }

  header.content-header__stats {
    display: none;
  }

  header.mobile-content-header__stats {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .content-header-main .mobile-stats, .content-header-main .mobile-stats--posts, .content-header-main .mobile-stats--testimonials, .content-header-main .mobile-stats--users {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    display: flex;
  }

  header.content-header-main {
    height: 17rem;
    padding: 2rem;
  }

  .search-bar, .search-bar__text-field, .search-bar__btn {
    height: 3.8rem;
    font-size: 1.2rem;
  }

  .search-bar__text-field {
    padding-left: 4rem;
  }

  .search-bar__text-field::placeholder {
    font-size: 1.2rem;
  }

  .search-bar__icon {
    font-size: 2rem;
    left: 1rem;
  }

  .search-bar__btn {
    width: 12.8rem;
  }

  .anchor-btn:link, .anchor-btn:visited {
    font-size: 2.7rem;
  }

  .content-header-main .mobile-stats--posts, .content-header-main .mobile-stats--testimonials, .content-header-main .mobile-stats--users {
    justify-content: center;
    align-items: center;
    gap: 4.8rem;
    width: 100%;
    display: flex;
  }

  .content-header-main .stats__stat {
    gap: .9rem;
  }

  .content-header-main .stat {
    font-size: 1.8rem;
  }

  .content-header-main .stat__name {
    font-size: 1rem;
  }

  .document-bar__update-icon--confirm, .document-bar__update-icon--close {
    font-size: 2.2rem;
  }

  .document-bar.desktop {
    display: none;
  }

  .mobile.properties .document-bar__container, .mobile.closed .document-bar__container, .mobile .document-bar__fields .document-bar__content-field:last-child {
    border-bottom: none;
  }

  .mobile.closed .document-bar__content {
    display: none;
  }

  .mobile .document-bar__content {
    display: block;
  }

  .document-bar.mobile {
    border: .1rem solid var(--border-color);
    border-radius: .4rem;
    width: 100%;
    display: block;
    box-shadow: 0 .4rem 2.4rem #0000001a;
  }

  .mobile .document-bar__container {
    border-bottom: .1rem solid var(--border-color);
    border-radius: .4rem .4rem 0 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 4.8rem;
    display: flex;
  }

  .mobile .document-bar--header {
    border-bottom: .1rem solid var(--border-color);
    border-radius: .4rem .4rem 0 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 4.8rem;
    padding-right: 2rem;
    display: flex;
  }

  .mobile .document-bar__title {
    width: 14rem;
    min-height: 4.8rem;
    color: var(--color-text-primary);
    border-right: .1rem solid var(--border-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    align-content: center;
    padding: 0 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    overflow: hidden;
  }

  .document-bar__edit-title-btn {
    width: 4.8rem;
  }

  .document-bar__edit-title-icon {
    font-size: 2rem;
  }

  .mobile .toolbar__delete-icon {
    font-size: 2.7rem;
  }

  .mobile .toolbar {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 4.8rem;
    padding: 0 2rem;
    display: flex;

    & .ph, & .ph-fill {
      font-size: 2.4rem;
    }
  }

  .mobile .toolbar-mobile-first {
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    display: flex;
  }

  .mobile .toolbar__checkbox--mark-new-btn, .mobile .toolbar__checkbox--mark-reserved-btn, .mobile .toolbar__checkbox--mark-sold-btn {
    transform: scale(.9);
  }

  .toolbar__checkbox--mark-inactive-active {
    margin-top: .2rem;
  }

  .toolbar__checkbox--toggle-switch {
    width: 4.8rem;
    height: 2.2rem;
  }

  .toolbar__checkbox--toggle-switch:after {
    width: 1.8rem;
    height: 1.8rem;
  }

  .mobile .content-field__key {
    min-width: 14rem;
    min-height: 4.8rem;
    padding-left: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
  }

  .mobile .content-field__data {
    min-height: 4.8rem;
    padding-left: 2rem;
    padding-right: 2.4rem;
    font-size: 1.3rem;
  }

  .form {
    gap: 2.4rem;
    width: 100%;
  }

  .form__item, .form__text-field, .text-field__no-icon, .form__select-field, .form-btn {
    width: 100%;
  }

  .form__text-area-field {
    width: 100%;
    height: 24rem;
  }

  .form__text-field--update {
    height: 3.6rem;
  }

  .form__file-upload {
    margin-bottom: .8rem;
  }

  .form__file-upload input {
    align-self: flex-start;
  }

  .delete-modal, .update-modal {
    width: 90%;
    padding: 3.6rem;
  }

  .delete-modal-heading, .update-modal-heading {
    font-size: 1.8rem;
  }

  .delete-modal-message {
    line-height: 2.4rem;
  }

  .update-modal-text-field {
    width: 100%;
  }

  section.property {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  header.property__header {
    width: 100%;
  }

  header.property__header .property__header--primary-header {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 1.6rem;
    display: flex;
  }

  header.property__header .property__header--primary-heading {
    font-size: 1.6rem;
  }

  header.property__header .property__header--price {
    font-size: 2rem;
  }

  header.property__header .property__header--sub-heading {
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  p.property__location {
    font-size: 1.2rem;
  }

  header.property__header .property__header--view-video-icon {
    font-size: 2.4rem;
  }

  section.property .property__cover-img {
    margin-bottom: 0;
  }

  .property__cover-img img {
    width: 100%;
  }

  .watermark {
    display: none;
  }

  section.property__details {
    margin-bottom: 0;
    padding-bottom: 2.4rem;
  }

  section.property__details .property__details--icon {
    font-size: 2.4rem;
  }

  section.property__details .property__details--detail {
    font-size: 1.2rem;
  }

  h1.property__section-heading {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
  }

  section.property__desciption {
    margin-bottom: 0;
    padding-bottom: 2.4rem;
    font-size: 2rem;
  }

  section.property__desciption .property__description--features, section.property__desciption .property__desciption--description {
    font-size: 1.4rem;
  }

  section.property__gallery {
    margin-bottom: 0;
    padding-bottom: 2.4rem;
  }

  section.property__gallery .property__gallery--images {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 3.6rem;
  }

  section.property__map .property__section-heading--location {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }

  section.view-video {
    width: 85vw;
    height: 85svh;
    top: 53%;
  }

  main.content-account .account__details-container {
    padding: .6rem 0 2rem;
  }

  main.content-account .account__details-container.update-password {
    padding: 0;
  }

  main.content-account .account__my-details-header {
    padding: 3.4rem 0;
  }

  .account .nav-list__content {
    font-family: Poppins, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
  }

  main.confirm-container {
    padding: 3.6rem;
  }

  section.confirm-content {
    gap: 4.8rem;
  }

  section.confirm-content .tick-confirm {
    font-size: 12.8rem;
  }

  section.confirm-content .confirm-message {
    text-align: center;
    font-size: 2rem;
    line-height: 3rem;
  }

  .back-to-btn:link, .back-to-btn:visited {
    margin-bottom: 0;
  }

  .image-view-modal {
    width: 100%;
  }

  main.content-error .error {
    gap: 2.4rem;
  }

  main.content-error .error-icon {
    font-size: 12.8rem;
  }

  main.content-error .error__msg, main.content-error .error__msg--logged-out {
    text-align: center;
    font-size: 1.8rem;
    line-height: 3rem;
  }

  main.content-error .error__msg {
    margin-bottom: 3.6rem;
  }

  section.gallery-carousel .gallery-carousel--container {
    aspect-ratio: 3 / 2;
    width: 100%;
  }

  section.gallery-carousel .gallery-carousel--btns {
    width: 100%;
  }

  section.gallery-carousel .slider-btn {
    width: 3.6rem;
    height: 3.6rem;
    transform: translateY(-50%);
  }

  section.gallery-carousel .slider-icon {
    font-size: 2.4rem;
  }

  .alert-public, .alert-private {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=portal.bundle.css.map */
