img.avatar {
  margin-right: 0.5rem;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 999px;
  background-color: inherit; }

.btn-house-prop {
  border-radius: 50%;
  padding: 0.3rem 0.8rem; }

.middle-column {
  border-width: 0 var(--bl-border-width) 0 var(--bl-border-width);
  border-style: var(--bl-border-style);
  border-color: var(--bl-border-color); }

@media (max-width: 639.98px) {
  .middle-column {
    border-width: 0;
    border-style: none; } }

header {
  height: 7rem;
  background-color: var(--bl-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--bl-black); }
  header .nav-item {
    display: flex;
    align-items: center;
    margin-right: 1rem; }
  header .nav-divider-vr {
    border-left: 1px solid var(--bl-black);
    width: 1px;
    margin: 0 1rem; }
  header .navbar-toggler {
    margin-right: 1rem;
    border-radius: 50%;
    border: none; }
  header .navbar-toggler .btn {
    font-size: 2.2rem;
    font-weight: bold;
    border: none;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  header .nav-item .nav-btn {
    position: relative;
    background-color: transparent;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bl-text-dark);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  header .nav-item .nav-btn:hover,
  header .navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.1); }
  header #main-menu.navbar-nav {
    flex-direction: row; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item {
    padding: 0.5rem 0.75rem; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu.navbar-nav .nav-item a,
  header #main-menu-mobile.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item a {
    color: var(--bl-text-dark);
    font-size: 1.5rem;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s; }
  header #main-menu.navbar-nav .nav-item:hover,
  header #main-menu-mobile.navbar-nav .nav-item:hover {
    border-color: #c4764a; }
  header #main-menu.navbar-nav .nav-item:hover a,
  header #main-menu-mobile.navbar-nav .nav-item:hover a {
    color: inherit; }
  header #main-menu.navbar-nav .nav-item:has(.nav-link-a.active),
  header #main-menu-mobile.navbar-nav .nav-item:has(.nav-link-a.active) {
    border-color: #c4764a;
    pointer-events: none; }

[data-bs-theme="dark"] header {
  background-color: #332816;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--bl-white); }
  [data-bs-theme="dark"] header .nav-divider-vr {
    border-left: 1px solid var(--bl-white); }
  [data-bs-theme="dark"] header .nav-item .nav-btn,
  [data-bs-theme="dark"] header .navbar-toggler {
    color: var(--bl-white); }
  [data-bs-theme="dark"] header .nav-item:hover .nav-btn,
  [data-bs-theme="dark"] header .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item,
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item a,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item a {
    color: var(--bl-text-light); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item:hover,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item:hover {
    color: var(--bl-secondary);
    border-color: var(--bl-secondary); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item:hover a,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item:hover a {
    color: var(--bl-secondary); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item:has(.nav-link-a.active),
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item:has(.nav-link-a.active) {
    color: var(--bl-secondary);
    border-color: var(--bl-secondary);
    pointer-events: none; }

#notifications-dropdown {
  width: 50rem;
  min-height: 15rem;
  max-height: 60rem;
  padding: 0;
  background-color: #ebebeb; }
  #notifications-dropdown .notifications-container {
    display: flex;
    flex-direction: column;
    min-height: 15rem;
    max-height: 60rem;
    overflow: hidden; }
    #notifications-dropdown .notifications-container .dropdown-header {
      position: sticky;
      top: 0;
      z-index: 1;
      padding: 0.5rem 1rem; }
    #notifications-dropdown .notifications-container ul#notifications-list {
      flex: 1 1 auto;
      overflow-y: auto;
      min-height: 100px;
      max-height: 100%;
      margin: 0;
      padding: 0.25rem;
      list-style: none;
      background-color: #ebebeb; }
      #notifications-dropdown .notifications-container ul#notifications-list li.notification-item {
        position: relative;
        display: flex;
        /* Ensure consistent layout */
        align-items: center;
        padding: 0.5rem 0.75rem;
        border-radius: 3px;
        margin-bottom: 0.25rem;
        transition: background-color 0.3s;
        background-color: #fff;
        /* Default background */
        border-bottom: 1px solid #dee2e6;
        /* Border for separation */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */
        /* Hover effect */
        /* Show dropdown on hover */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item[data-unread="true"] {
          background-color: #fff4e2;
          /* Light blue for unread */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover {
          background-color: #fff4e2;
          /* Bootstrap's default hover color */
          cursor: pointer; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-body {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 100%; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-text {
          flex: 1;
          /* Take available space */ }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item .notification-actions {
          display: none;
          /* Hidden by default */
          position: absolute;
          top: 50%;
          right: 1rem;
          transform: translateY(-50%);
          gap: 0.5rem; }
        #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover .notification-actions {
          display: flex;
          /* Use flex for button stability */
          align-items: center; }
    #notifications-dropdown .notifications-container .dropdown-footer {
      position: sticky;
      bottom: 0;
      z-index: 1;
      padding: 0.5rem 1rem; }
    #notifications-dropdown .notifications-container .dropdown-divider {
      margin: 0; }

[data-bs-theme="dark"] #notifications-dropdown {
  background-color: #232323;
  color: var(--bl-white); }
  [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list {
    background-color: #232323; }
    [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item {
      border-bottom: 1px solid #495057;
      /* Border for separation */
      background-color: #343a40;
      /* Dark background for notifications */ }
      [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item[data-unread="true"] {
        background-color: #332816;
        /* Darker shade for unread */ }
      [data-bs-theme="dark"] #notifications-dropdown .notifications-container ul#notifications-list li.notification-item:hover {
        background-color: #495057;
        /* Darker hover effect */ }

/* Responsive adjustments */
@media (max-width: 639.98px) {
  .notification-nav-item {
    position: static !important; }
  #notifications-dropdown {
    position: absolute;
    top: 100%;
    left: 0 !important;
    width: 100%;
    margin: 0;
    transform: none !important;
    border-radius: 0;
    max-height: 40rem; }
    #notifications-dropdown .notifications-container {
      max-height: 40rem; }
      #notifications-dropdown .notifications-container ul#notifications-list {
        min-height: 150px; } }

/* Optional: Custom scrollbar styling */
.notifications-container ul#notifications-list::-webkit-scrollbar {
  width: 8px; }

.notifications-container ul#notifications-list::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px; }

.notifications-container ul#notifications-list::-webkit-scrollbar-track {
  background-color: #f1f1f1; }

/* Optional: Hover effect for notification items */
.notifications-container ul#notifications-list .dropdown-item:hover {
  background-color: #f8f9fa;
  /* Bootstrap's default hover color */
  cursor: pointer; }

footer {
  margin-top: auto;
  background-color: var(--bl-brand-1);
  color: var(--bl-white);
  border-top: 1px solid #cb9f59; }
  footer a {
    color: var(--bl-white);
    text-decoration: none;
    transition: color 0.3s; }
    footer a:hover {
      text-decoration: none;
      color: var(--bl-brand-2); }
  footer .footer-main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    footer .footer-main-nav .nav-link {
      font-size: 2rem;
      font-weight: bold;
      border-bottom: 3px solid transparent;
      transition: all 0.3s; }
    footer .footer-main-nav .nav-link:hover {
      border-color: var(--bl-white); }
  footer .footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.75rem; }
    footer .footer-menu .footer-menu-item {
      flex: 1;
      margin-right: 1rem; }
      footer .footer-menu .footer-menu-item:last-child {
        margin-right: 0; }
      footer .footer-menu .footer-menu-item a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.2rem; }
  footer .social-buttons {
    display: flex;
    flex-direction: column;
    font-size: 2rem; }
    footer .social-buttons li {
      margin-bottom: 0.5rem; }
    footer .social-buttons a {
      display: flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 3px;
      background-color: #fed28c;
      color: var(--bl-white);
      transition: background-color 0.3s, color 0.3s; }
      footer .social-buttons a:hover {
        background-color: #cb9f59;
        color: var(--bl-white); }
      footer .social-buttons a .bi {
        margin-right: 1rem; }
  footer #footer-main {
    padding: 6rem 1rem 4rem 1rem; }
  footer .copyright {
    background-color: var(--bl-black);
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center; }

[data-bs-theme="dark"] footer {
  background-color: #212529; }
  [data-bs-theme="dark"] footer .social-buttons a {
    background-color: #f8f9fa;
    color: #212529; }
    [data-bs-theme="dark"] footer .social-buttons a:hover {
      background-color: #fdeade; }

@media (max-width: 767px) {
  footer .footer-main-nav {
    flex-direction: column;
    align-items: center; } }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 20px; }
  .social-links .social-button {
    display: flex;
    align-items: center;
    height: 60px;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    padding: 1rem 3rem 1rem 1rem;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease; }
  .social-links .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none; }
  .social-links .button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; }
  .social-links .button-icon i {
    color: #fff;
    font-size: 24px; }
  .social-links .button-text {
    display: flex;
    flex-direction: column;
    text-align: left; }
  .social-links .text-top {
    font-size: 14px;
    line-height: 1; }
  .social-links .text-bottom {
    font-size: 18px;
    font-weight: bold; }

.youtube {
  background-color: #ff0000; }

.spotify {
  background-color: #1db954; }

.facebook {
  background-color: #1877f2; }

.instagram {
  background-color: #c32aa3; }

.content-carousel {
  position: relative;
  overflow: hidden; }

.content-carousel.has-overflow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, transparent, rgba(var(--bl-body-bg-rgb), var(--bl-bg-opacity)));
  pointer-events: none;
  z-index: 5;
  opacity: var(--gradient-opacity, 1); }

.dark-background .content-carousel.has-overflow::after {
  background: linear-gradient(to right, transparent, #000); }

.carousel-control {
  padding: 5px 10px;
  border-radius: 50%;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--bl-white);
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }

.content-carousel:hover .carousel-control {
  opacity: 1; }

.left {
  left: 5px; }

.right {
  right: 5px; }

.carousel-items {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.carousel-items::-webkit-scrollbar {
  display: none; }

.carousel-items .content-item {
  width: 300px;
  flex: 0 0 300px;
  margin-right: 15px;
  scroll-snap-align: start; }

.carousel-items .content-item.wide {
  width: 100%;
  flex: 0 0 100%; }

.content-grid .content-item {
  margin-bottom: 2rem; }

.carousel-items .content-item img {
  width: 100%;
  height: auto;
  border-radius: 3px; }

.content-item .content-card-body {
  margin-top: 1rem; }

.content-item .content-title a {
  font-weight: bold;
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.content-item .content-card a {
  position: relative;
  display: block; }

.content-item .content-episode-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #cb9f59;
  color: white;
  padding: 5px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  text-decoration: none; }

.content-item p.content-meta {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  margin-top: 0.5rem; }

.content-item p.content-author {
  font-size: 1.4rem;
  margin: 0;
  margin-top: 0.5rem; }

#shorts-carousel .content-title a {
  font-size: 1.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bl-white); }

[data-bs-theme="dark"] .content-item .content-title a {
  color: var(--bl-white); }

[data-bs-theme="dark"] .carousel-control {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bl-black); }

.lightbox .btn-close {
  width: 2rem;
  height: 2rem;
  padding: 2rem; }

.lightbox .lightbox-carousel .carousel-control {
  width: 6rem;
  background: none;
  box-shadow: none;
  transform: translateY(-35%); }
  .lightbox .lightbox-carousel .carousel-control .carousel-control-prev-icon,
  .lightbox .lightbox-carousel .carousel-control .carousel-control-next-icon {
    height: 7rem;
    width: 5rem;
    background-position: 50%;
    background-size: 300% 300%; }

.approval-status {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center; }
  .approval-status i {
    margin-right: 1rem; }

#images-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 52rem; }

#image-area {
  position: relative;
  width: 100%;
  flex: 1;
  /* Grow to fill available space */
  min-height: 200px;
  /* Minimum height to ensure visibility */
  border: 2px dashed var(--bl-gray);
  border-radius: 0.5rem;
  background-color: var(--bl-gray-200);
  transition: all 0.3s ease;
  /* Smooth transition for height and opacity */ }

#image-area.has-images {
  border: none;
  background-color: transparent;
  min-height: 0;
  /* Collapse when images are present */ }

#image-area.drag-over {
  border-color: #00f;
  /* Blue border on drag over */
  background-color: rgba(0, 0, 255, 0.1);
  /* Light blue overlay */ }

#image-area.has-images.drag-over {
  border: 2px dashed #00f;
  /* Reintroduce border for feedback when images present */
  background-color: rgba(0, 0, 255, 0.1);
  /* Overlay over images */ }

#dropzone-instruction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: var(--bl-gray-600);
  transition: opacity 0.3s ease;
  z-index: 1;
  /* Ensure it stays above overlay */ }

#image-area.has-images #dropzone-instruction {
  opacity: 0;
  pointer-events: none; }

#image-preview-container {
  padding: 0.5rem;
  overflow-y: auto; }
  #image-preview-container .image-preview-item .img-wrapper {
    position: relative; }
    #image-preview-container .image-preview-item .img-wrapper img {
      width: 100%;
      height: 18rem;
      object-fit: cover;
      border-radius: var(--bl-border-radius) var(--bl-border-radius) 0 0; }
    #image-preview-container .image-preview-item .img-wrapper .image-deleted {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(234, 95, 94, 0.5);
      border-radius: var(--bl-border-radius);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      z-index: 15; }
    #image-preview-container .image-preview-item .img-wrapper .img-hidden-meta {
      display: none; }
  #image-preview-container .image-preview-item .img-wrapper.fullscreen img {
    height: 25rem; }
  #image-preview-container .image-preview-item.unapproved-image .img-wrapper {
    border-style: solid;
    border-color: #d4a75d;
    border-width: 3px 3px 0 3px; }
  #image-preview-container .image-preview-item.unapproved-image .img-data {
    border-style: solid;
    border-color: #d4a75d;
    border-width: 0 3px 3px 3px; }
  #image-preview-container .image-preview-item.draft-image .img-wrapper {
    border-style: solid;
    border-color: #3B86FF;
    border-width: 3px 3px 0 3px; }
  #image-preview-container .image-preview-item.draft-image .img-data {
    border-style: solid;
    border-color: #3B86FF;
    border-width: 0 3px 3px 3px; }
  #image-preview-container .image-preview-item.added-image .img-wrapper {
    border-style: solid;
    border-color: #168f52;
    border-width: 3px 3px 0 3px; }
  #image-preview-container .image-preview-item.added-image .img-data {
    border-style: solid;
    border-color: #168f52;
    border-width: 0 3px 3px 3px; }
  #image-preview-container .image-preview-item .img-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #dee2e6;
    border-radius: 0 0 var(--bl-border-radius) var(--bl-border-radius);
    padding: 0.5rem 0.5rem; }
  #image-preview-container .image-preview-item.deleted .img-wrapper {
    border: none; }
    #image-preview-container .image-preview-item.deleted .img-wrapper img {
      opacity: 0.3;
      border-radius: var(--bl-border-radius); }
    #image-preview-container .image-preview-item.deleted .img-wrapper .drag-handle,
    #image-preview-container .image-preview-item.deleted .img-wrapper .image-delete-btn {
      display: none; }
    #image-preview-container .image-preview-item.deleted .img-wrapper .image-deleted {
      display: flex; }
  #image-preview-container .image-preview-item.deleted .img-data {
    display: none; }

input.form-control.special.required-field,
select.form-select.special.required-field,
textarea.form-control.special.required-field {
  color: var(--bl-black);
  background-color: #fff6c7; }

input.form-control.special.required-field::placeholder,
textarea.form-control.special.required-field::placeholder,
select.form-select.special.required-field::placeholder {
  color: color(srgb 0 0 0/0.5); }

select.form-select.special {
  --bl-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }

input.form-control.special.filled,
input.form-control.special.filled.required-field {
  color: var(--bl-black);
  background-color: #c5e6f3; }

select.form-select.special.filled,
select.form-select.special.filled.required-field {
  color: var(--bl-black);
  background-color: #c5e6f3; }

input.form-control.special.has-changes,
select.form-select.special.has-changes,
textarea.form-control.special.has-changes {
  border: 3px solid var(--bl-danger) !important; }

.form-check.has-changes .form-check-label {
  border-bottom: 3px solid var(--bl-danger) !important;
  padding-bottom: 0; }

.leaflet-control-attribution {
  display: none; }

.leaflet-placement-text {
  color: var(--bl-black);
  font-size: 1.4rem;
  font-weight: bold; }

.leaflet-radius-control {
  background-color: var(--bl-secondary);
  border: 1px solid var(--bl-gray);
  color: var(--bl-black);
  border-radius: 0;
  padding: 5px;
  font-size: 1.4rem; }

.real-marker {
  filter: brightness(0) saturate(100%) invert(31%) sepia(71%) saturate(3492%) hue-rotate(138deg) brightness(92%) contrast(83%); }

.approx-marker {
  filter: brightness(0) saturate(100%) invert(34%) sepia(77%) saturate(4291%) hue-rotate(209deg) brightness(98%) contrast(101%); }

.form-label a[data-bs-toggle="tooltip"] {
  text-decoration: none;
  font-weight: bold;
  color: var(--bl-card-color); }

.form-checkbox-multiple {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem; }

.progress-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  color: white;
  font-size: 1rem; }

.progress-circle .spinner-border {
  width: 2rem;
  height: 2rem; }

.progress-circle .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

[data-bs-theme="dark"] #image-preview-container .image-preview-item .img-data {
  background-color: #495057; }

[data-bs-theme="dark"] #image-area {
  border-color: var(--bl-gray-600);
  background-color: var(--bl-gray-800); }

[data-bs-theme="dark"] #image-area.has-images {
  background-color: transparent; }

[data-bs-theme="dark"] #image-area.drag-over {
  border-color: var(--bl-blue);
  /* Blue border on drag over */
  background-color: rgba(0, 0, 255, 0.1);
  /* Light blue overlay */ }

[data-bs-theme="dark"] #image-area.has-images.drag-over {
  border: 2px dashed var(--bl-blue);
  /* Reintroduce border for feedback when images present */
  background-color: rgba(0, 0, 255, 0.1);
  /* Overlay over images */ }

[data-bs-theme="dark"] #dropzone-instruction {
  color: var(--bl-gray-400); }

[data-bs-theme="dark"] input.form-control.special.required-field,
[data-bs-theme="dark"] select.form-select.special.required-field,
[data-bs-theme="dark"] textarea.form-control.special.required-field {
  background-color: #fff6c7; }

[data-bs-theme="dark"] input.form-control.special.filled,
[data-bs-theme="dark"] input.form-control.special.filled.required-field {
  background-color: #c5e6f3; }

[data-bs-theme="dark"] select.form-select.special.filled,
[data-bs-theme="dark"] select.form-select.special.filled.required-field {
  background-color: #c5e6f3; }

/* OFFERS STYLES */
.offer-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-bottom: var(--bl-border-width) var(--bl-border-style) var(--bl-border-color); }
  .offer-item .offer-header {
    width: 100%;
    display: flex; }
    .offer-item .offer-header .offer-images {
      width: 15rem;
      height: 10rem;
      flex-shrink: 0;
      overflow: hidden;
      border-radius: var(--bl-border-radius);
      margin-right: 1rem; }
      .offer-item .offer-header .offer-images img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .offer-item .offer-header .offer-title {
      flex-grow: 1; }
      .offer-item .offer-header .offer-title .offer-name {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0; }
    .offer-item .offer-header .offer-price {
      font-size: 1.6rem;
      font-weight: bold;
      color: var(--bl-text-dark);
      margin-top: 0.5rem; }
  .offer-item .offer-body {
    display: flex;
    flex-direction: row;
    width: 100%; }
    .offer-item .offer-body .offer-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .offer-item .offer-body .offer-info .offer-description {
        font-size: 1.4rem;
        color: var(--bl-text-secondary);
        margin-top: 0.5rem;
        flex-grow: 1; }
      .offer-item .offer-body .offer-info .offer-metadata {
        font-size: 1.4rem;
        color: var(--bl-text-secondary); }
      .offer-item .offer-body .offer-info .offer-actions {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0.5rem; }
        .offer-item .offer-body .offer-info .offer-actions .btn {
          margin-bottom: 0.75rem; }

@media (max-width: 639.98px) {
  .offer-item .offer-header {
    flex-direction: column; }
    .offer-item .offer-header .offer-images {
      width: 100%;
      height: 25rem;
      margin-right: 0;
      margin-bottom: 1rem; }
  .offer-item .offer-body {
    flex-direction: column; } }

/* CHECKMARK ANIMATION */
.checkmark__wrapper {
  display: flex;
  justify-content: center;
  align-items: center; }

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--bs-success);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 25px auto;
  box-shadow: inset 0px 0px 0px var(--bs-success);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both; }

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }

@keyframes stroke {
  100% {
    stroke-dashoffset: 0; } }

@keyframes scale {
  0%,
  100% {
    transform: none; }
  50% {
    transform: scale3d(1.1, 1.1, 1); } }

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142; } }

.property-table {
  table-layout: fixed;
  width: 100%;
  min-width: 1400px;
  word-wrap: break-word;
  font-size: 1.4rem; }
  .property-table th,
  .property-table td {
    padding: 4px; }
  .property-table thead > tr > th {
    background-color: #c4764a;
    color: #333333;
    font-weight: bold;
    text-align: center; }

@media (min-width: 1536px) {
  .property-table {
    min-width: 2000px;
    font-size: 1.8rem; } }

@media (max-width: 1535.98px) {
  .property-table {
    font-size: 1.6rem; } }

@media (max-width: 1279.98px) {
  .property-table {
    font-size: 1.4rem; } }

@media (max-width: 1023.98px) {
  .property-table {
    font-size: 1.4rem; } }

@media (max-width: 767.98px) {
  .property-table {
    table-layout: auto;
    min-width: 2000px;
    font-size: 1.6rem; } }

.note-column {
  max-width: 40rem;
  min-width: 30rem; }

.note-cell {
  overflow-y: auto;
  width: 100%;
  word-wrap: break-word;
  max-height: 15rem; }

.note-cell::-webkit-scrollbar {
  width: 6px; }

.note-cell::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px; }

.note-cell::-webkit-scrollbar-track {
  background-color: #f1f1f1; }

.owner-column {
  max-width: 20rem;
  min-width: 15rem; }

.owner-cell {
  overflow-y: auto;
  width: 100%;
  word-wrap: break-word;
  max-height: 15rem; }

.owner-cell::-webkit-scrollbar {
  width: 6px; }

.owner-cell::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px; }

.owner-cell::-webkit-scrollbar-track {
  background-color: #f1f1f1; }

.property-card-horizontal .property-card-row {
  display: flex;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .property-card-horizontal .property-card-row {
      flex-direction: row; } }
.property-card-horizontal .property-card-image {
  position: relative;
  width: 100%;
  height: 250px; }
  @media (min-width: 1024px) {
    .property-card-horizontal .property-card-image {
      width: 25%;
      min-width: 200px;
      max-width: 300px;
      height: auto;
      min-height: 100%; } }
.property-card-horizontal .property-card-body {
  flex: 1; }

/*# sourceMappingURL=style.css.map */