.root.responsivegrid,
.root.responsivegrid > .aem-Grid,
.root.responsivegrid .aem-GridColumn,
.aem-GridColumn.irvine-asc-login,
.aem-GridColumn.irvine-asc-login > * {
  padding: 0 !important;
  margin: 0 !important;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.aem-GridColumn.irvine-asc-login .login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.aem-GridColumn.irvine-asc-login .login::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.login__container {
  position: relative;
  z-index: 1;
  max-height: 95vh;
  overflow-y: auto;
  width: 100%;
  max-width: 420px;
  padding: 30px 35px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
@supports (backdrop-filter: blur(12px)) {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.login__form {
  display: block;
}
.login__logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.login__logo {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
}
.login__title {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #212529;
}
.login__subtitle {
  text-align: center;
  color: #212529;
  margin-bottom: 25px;
  font-size: 90%;
  font-weight: 400;
}
.login__subtitle a {
  color: #d2232a;
  text-decoration: none;
}
.login__subtitle a:hover,
.login__subtitle a:focus {
  text-decoration: underline;
}
.login__subtitle a:focus-visible {
  outline: 2px solid #d2232a;
  outline-offset: 2px;
  border-radius: 2px;
}
.login__form-group {
  margin-bottom: 20px;
}
.login__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #212529;
  font-size: 14px;
}
.login__input {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  box-shadow: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  .login__input {
    transition: none;
  }
}
.login__input:focus {
  border-color: #0052cc;
  outline: 2px solid rgba(0, 82, 204, 0.25);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}
.login__input:focus-visible {
  outline: 3px solid #0052cc;
  outline-offset: 2px;
}
.login__input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #f5c6cb;
  background-color: #fefafa;
}
.login__checkbox {
  margin-bottom: 20px;
}
.login__checkbox-label {
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  color: #212529;
}
.login__checkbox-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.login__checkbox-input:focus-visible {
  outline: 2px solid #0052cc;
  outline-offset: 2px;
}
.login__button {
  width: 100%;
  height: 46px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
@media (prefers-reduced-motion: reduce) {
  .login__button {
    transition: none;
  }
}
.login__button--primary {
  background-color: #6c757d;
  border: 1px solid #6c757d;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login__button--primary:hover {
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.login__button--primary:active {
  background-color: #4e555b;
  border-color: #4e555b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.login__button--primary:focus {
  outline: 2px solid rgba(108, 117, 125, 0.5);
  outline-offset: 2px;
}
.login__button--primary:focus-visible {
  outline: 3px solid #6c757d;
  outline-offset: 3px;
}
.login__error {
  margin: 15px 0;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .login__container {
    padding: 20px;
    max-height: 90vh;
    max-width: 95%;
  }
  .login__title {
    font-size: 22px;
  }
  .login__input {
    height: 42px;
    font-size: 14px;
  }
  .login__button--primary {
    height: 44px;
    font-size: 16px;
  }
  .login__checkbox-input {
    width: 20px;
    height: 20px;
  }
  .login__logo {
    max-width: 200px;
  }
}
@media (prefers-contrast: high) {
  .login__container {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid #000000;
  }
  .login__input:focus {
    outline: 3px solid #0052cc;
  }
}

/**
 * DAM Asset Filter Component Styles - Office
 * Cascading filter table: Market > Sub-Market > Property > Category
 * Adapted for 4-column layout
 */
/* Toggle Button for Filters */
.filters-toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  margin: 4px 0;
  background: #da291c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Libre Franklin", "Adobe Clean", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(218, 41, 28, 0.25);
}
.filters-toggle-button:hover {
  background: #cc1d11;
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.35);
  transform: translateY(-1px);
}
.filters-toggle-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.3);
}
.filters-toggle-button svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}
.filters-toggle-button .as-adv-btn-minus {
  display: none;
}
.filters-toggle-button .as-adv-btn-plus {
  display: block;
}
.filters-toggle-button.collapsed .as-adv-btn-minus {
  display: block;
}
.filters-toggle-button.collapsed .as-adv-btn-plus {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .filters-toggle-button {
    transition: none;
  }
  .filters-toggle-button:hover {
    transform: none;
  }
  .filters-toggle-button:active {
    transform: none;
  }
}
/* Reset Button for DAM Tree */
.dam-tree-reset-btn,
button.dam-tree-reset-btn {
  display: none !important;
  /* Hidden by default */
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 4px 0 4px 12px;
  background: #ffffff;
  color: #da291c;
  border: none;
  border-radius: 8px;
  font-family: "Libre Franklin", "Adobe Clean", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.15);
  vertical-align: middle;
}
.dam-tree-reset-btn svg,
button.dam-tree-reset-btn svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  fill: #da291c !important;
  transition: transform 0.3s ease;
  display: inline-block !important;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.dam-tree-reset-btn:hover,
button.dam-tree-reset-btn:hover {
  background: #da291c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
  transform: translateY(-1px);
}
.dam-tree-reset-btn:hover svg,
button.dam-tree-reset-btn:hover svg {
  fill: #ffffff !important;
  transform: rotate(360deg);
}
.dam-tree-reset-btn:active,
button.dam-tree-reset-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(218, 41, 28, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .dam-tree-reset-btn,
  button.dam-tree-reset-btn {
    transition: none;
  }
  .dam-tree-reset-btn svg,
  button.dam-tree-reset-btn svg {
    transition: none;
  }
  .dam-tree-reset-btn:hover,
  button.dam-tree-reset-btn:hover {
    transform: none;
  }
  .dam-tree-reset-btn:hover svg,
  button.dam-tree-reset-btn:hover svg {
    transform: none;
  }
  .dam-tree-reset-btn:active,
  button.dam-tree-reset-btn:active {
    transform: none;
  }
}
@media (max-width: 768px) {
  .dam-tree-reset-btn,
  button.dam-tree-reset-btn {
    margin: 10px 0;
    width: 100%;
    justify-content: center;
  }
}
/* Show reset button only when filters are expanded (toggle button has collapsed class) */
.filters-toggle-button.collapsed + .dam-tree-reset-btn,
button.filters-toggle-button.collapsed + button.dam-tree-reset-btn {
  display: inline-flex !important;
}
.dam-asset-filter {
  font-family: 'Adobe Clean', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  margin: 4px 0;
  animation: fadeInUp 0.4s ease-out;
  /* Filter Table - 4 column layout */
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter {
    animation: none;
  }
}
.dam-asset-filter .dam-asset-filter__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 4px 0;
  table-layout: fixed;
  background: #f9f9f9;
  transition: background 0.3s ease;
}
.dam-asset-filter .dam-asset-filter__table:hover {
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter .dam-asset-filter__table {
    transition: none;
  }
}
.dam-asset-filter .dam-asset-filter__table thead th {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 6px 12px;
  text-align: left;
  font-weight: 800;
  font-size: 13px;
  color: #333;
  border: none;
  border-bottom: 2px solid #e8e8e8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 25%;
  /* Equal width for all 4 columns */
  position: relative;
  transition: background 0.2s ease;
}
.dam-asset-filter .dam-asset-filter__table thead th:hover {
  background: linear-gradient(135deg, #f8f8f8 0%, #f3f3f3 100%);
}
.dam-asset-filter .dam-asset-filter__table thead th:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #d8d8d8, transparent);
  opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter .dam-asset-filter__table thead th {
    transition: none;
  }
}
.dam-asset-filter .dam-asset-filter__table tbody td {
  padding: 0 !important;
  vertical-align: top;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
  height: 275px;
  overflow: hidden;
}
.dam-asset-filter .dam-asset-filter__table tbody td > ul,
.dam-asset-filter .dam-asset-filter__table tbody td > div {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  box-sizing: border-box;
}
.dam-asset-filter .dam-asset-filter__table tbody td > ul::-webkit-scrollbar,
.dam-asset-filter .dam-asset-filter__table tbody td > div::-webkit-scrollbar {
  width: 4px;
}
.dam-asset-filter .dam-asset-filter__table tbody td > ul::-webkit-scrollbar-track,
.dam-asset-filter .dam-asset-filter__table tbody td > div::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.dam-asset-filter .dam-asset-filter__table tbody td > ul::-webkit-scrollbar-thumb,
.dam-asset-filter .dam-asset-filter__table tbody td > div::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 4px;
}
.dam-asset-filter .dam-asset-filter__table tbody td > ul::-webkit-scrollbar-thumb:hover,
.dam-asset-filter .dam-asset-filter__table tbody td > div::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.dam-asset-filter .dam-asset-filter__table tbody td:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #e8e8e8 20%, #e8e8e8 80%, transparent 100%);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .dam-asset-filter .dam-asset-filter__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #333333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter .dam-asset-filter__table tbody td {
    transition: none;
  }
}
@media (max-width: 768px) {
  .dam-asset-filter .dam-asset-filter__table {
    display: block;
  }
  .dam-asset-filter .dam-asset-filter__table thead {
    display: none;
  }
  .dam-asset-filter .dam-asset-filter__table tbody,
  .dam-asset-filter .dam-asset-filter__table tr,
  .dam-asset-filter .dam-asset-filter__table td {
    display: block;
    width: 100%;
  }
  .dam-asset-filter .dam-asset-filter__table tbody tr {
    margin-bottom: 20px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .dam-asset-filter .dam-asset-filter__table tbody td {
    padding: 12px 0;
    border: none !important;
  }
  .dam-asset-filter .dam-asset-filter__table tbody td::after {
    display: none !important;
  }
}
.dam-asset-filter .dam-asset-filter__placeholder {
  color: #999;
  font-style: italic;
  padding: 12px 16px;
  text-align: center;
  background: #fafafa;
  border-radius: 6px;
  margin: 8px 0;
}
.dam-asset-filter .dam-asset-filter__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #999;
  font-style: italic;
}
.dam-asset-filter .dam-asset-filter__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-top-color: #da291c;
  border-radius: 50%;
  animation: filter-spin 0.8s linear infinite;
}
@keyframes filter-spin {
  to {
    transform: rotate(360deg);
  }
}
.dam-asset-filter .dam-asset-filter__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: #fafafa;
  border-radius: 12px;
  margin: 20px 0;
}
.dam-asset-filter .dam-asset-filter__empty svg {
  width: 64px;
  height: 64px;
  color: #666666;
  opacity: 0.25;
  margin-bottom: 20px;
}
.dam-asset-filter .dam-asset-filter__empty-message {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
}
.dam-asset-filter .dam-asset-filter__empty-hint {
  font-size: 14px;
  color: #999;
  margin: 0;
}
/* Red button list (for Market radio buttons) */
.red-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.red-button-list li {
  animation: slideInLeft 0.3s ease-out;
  animation-fill-mode: both;
}
.red-button-list li:nth-child( 1) {
  animation-delay: 0s;
}
.red-button-list li:nth-child( 2) {
  animation-delay: 0.05s;
}
.red-button-list li:nth-child( 3) {
  animation-delay: 0.1s;
}
.red-button-list li:nth-child( 4) {
  animation-delay: 0.15s;
}
.red-button-list li:nth-child( 5) {
  animation-delay: 0.2s;
}
.red-button-list li:nth-child( 6) {
  animation-delay: 0.25s;
}
.red-button-list li:nth-child( 7) {
  animation-delay: 0.3s;
}
.red-button-list li:nth-child( 8) {
  animation-delay: 0.35s;
}
.red-button-list li:nth-child( 9) {
  animation-delay: 0.4s;
}
.red-button-list li:nth-child( 10) {
  animation-delay: 0.45s;
}
@media (prefers-reduced-motion: reduce) {
  .red-button-list li {
    animation: none;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Checkbox list (for Communities and Categories) */
.checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkbox-list li {
  animation: slideInLeft 0.3s ease-out;
  animation-fill-mode: both;
}
.checkbox-list li:nth-child( 1) {
  animation-delay: 0s;
}
.checkbox-list li:nth-child( 2) {
  animation-delay: 0.04s;
}
.checkbox-list li:nth-child( 3) {
  animation-delay: 0.08s;
}
.checkbox-list li:nth-child( 4) {
  animation-delay: 0.12s;
}
.checkbox-list li:nth-child( 5) {
  animation-delay: 0.16s;
}
.checkbox-list li:nth-child( 6) {
  animation-delay: 0.2s;
}
.checkbox-list li:nth-child( 7) {
  animation-delay: 0.24s;
}
.checkbox-list li:nth-child( 8) {
  animation-delay: 0.28s;
}
.checkbox-list li:nth-child( 9) {
  animation-delay: 0.32s;
}
.checkbox-list li:nth-child( 10) {
  animation-delay: 0.36s;
}
.checkbox-list li:nth-child( 11) {
  animation-delay: 0.4s;
}
.checkbox-list li:nth-child( 12) {
  animation-delay: 0.44s;
}
.checkbox-list li:nth-child( 13) {
  animation-delay: 0.48s;
}
.checkbox-list li:nth-child( 14) {
  animation-delay: 0.52s;
}
.checkbox-list li:nth-child( 15) {
  animation-delay: 0.56s;
}
@media (prefers-reduced-motion: reduce) {
  .checkbox-list li {
    animation: none;
  }
}
.radio-button-wrapper {
  display: block;
}
.radio-button-wrapper .form-control-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-button-wrapper .radio-button-label {
  display: block;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
  line-height: 1.3;
}
.radio-button-wrapper .radio-button-label:hover {
  border-color: #da291c;
  background: #fff8f7;
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.12);
}
.radio-button-wrapper .radio-button-label:focus-visible {
  outline: 2px solid #c61508;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .radio-button-wrapper .radio-button-label {
    transition: none;
  }
}
.radio-button-wrapper .form-control-radio:checked + .radio-button-label {
  background: linear-gradient(135deg, #da291c 0%, #ad2116 100%);
  color: #ffffff;
  border-color: #da291c;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.25);
}
.form-control-checkbox-container {
  display: flex;
  align-items: center;
  padding: 8px 0px !important;
  background: #ffffff;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.form-control-checkbox-container:hover {
  background: #f5f5f5;
}
@media (prefers-reduced-motion: reduce) {
  .form-control-checkbox-container {
    transition: none;
  }
}
.form-control-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-control-checkbox:hover {
  border-color: #da291c;
  transform: scale(1.1);
}
.form-control-checkbox:focus-visible {
  outline: 2px solid #c61508;
  outline-offset: 2px;
}
.form-control-checkbox:checked {
  background: #da291c;
  border-color: #da291c;
  animation: checkBounce 0.3s ease-out;
}
.form-control-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .form-control-checkbox {
    transition: none;
    animation: none !important;
  }
  .form-control-checkbox:hover {
    transform: none;
  }
}
@keyframes checkBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.form-control-checkbox-label {
  margin-left: 12px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  user-select: none;
  flex: 1;
  text-transform: capitalize;
}
/* Disabled category styling (for categories that don't exist) */
.category-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.category-disabled .form-control-checkbox {
  border-color: #e0e0e0;
  background: #f5f5f5;
  cursor: not-allowed;
}
.category-disabled .form-control-checkbox-label {
  color: #999;
  cursor: not-allowed;
}
.category-disabled:hover {
  background: #ffffff;
}
.categories {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 8px 0;
  padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}
.categories .subtitle {
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #333;
  flex: 1;
}
.list-categories {
  margin-left: 0;
  padding-left: 0;
  margin-top: 4px;
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .list-categories {
    animation: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .dam-asset-filter .filters-toggle-button {
    width: 100%;
    justify-content: center;
  }
  .dam-asset-filter .dam-asset-filter__table {
    font-size: 13px;
  }
  .dam-asset-filter .radio-button-label,
  .dam-asset-filter .form-control-checkbox-label {
    font-size: 13px;
  }
}
/* Toggle Button Min (for collapsible sections) */
.filters-toggle-button-min {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-height: 18px;
  font-size: 10px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.filters-toggle-button-min svg {
  width: 14px;
  height: 14px;
  fill: #da291c;
  transition: transform 0.2s ease;
}
.filters-toggle-button-min:hover svg {
  fill: #cc1d11;
  transform: scale(1.15);
}
.filters-toggle-button-min.collapsed .as-adv-btn-plus {
  display: inline-flex;
}
.filters-toggle-button-min.collapsed .as-adv-btn-minus {
  display: none;
}
.filters-toggle-button-min:not(.collapsed) .as-adv-btn-plus {
  display: none;
}
.filters-toggle-button-min:not(.collapsed) .as-adv-btn-minus {
  display: inline-flex;
}
.filters-toggle-button-min .as-adv-btn-plus,
.filters-toggle-button-min .as-adv-btn-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .filters-toggle-button-min {
    transition: none;
  }
  .filters-toggle-button-min svg {
    transition: none;
  }
  .filters-toggle-button-min:hover svg {
    transform: none;
  }
}
.community-group {
  margin: 12px;
}
.community-group .community-group-header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.community-group .filters-toggle-button-min {
  margin-right: 8px;
}
.community-group .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  text-transform: none;
  letter-spacing: 0.5px;
}
.community-group .community-group-children {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
  border-left: 2px solid #e8e8e8;
}
.community-group .community-group-children li {
  margin-bottom: 6px;
  animation: slideInLeft 0.2s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .community-group .community-group-children li {
    animation: none;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  .dam-asset-filter .dam-asset-filter__table tbody td::after {
    opacity: 1;
    background: #000;
  }
  .dam-asset-filter .radio-button-label {
    border-width: 2px;
  }
  .dam-asset-filter .form-control-checkbox {
    border-width: 2px;
  }
  .dam-asset-filter .community-group-children {
    border-left-width: 3px;
    border-left-color: #000;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**
 * DAM Asset Filter Component Styles - Apartments
 * Cascading filter table: Market > Community > Category
 * Adapted for 3-column layout
 */
/* Toggle Button for Filters */
.filters-toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  margin: 4px 0;
  background: #da291c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Libre Franklin", "Adobe Clean", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(218, 41, 28, 0.25);
}
.filters-toggle-button:hover {
  background: #cc1d11;
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.35);
  transform: translateY(-1px);
}
.filters-toggle-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.3);
}
.filters-toggle-button svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}
.filters-toggle-button .as-adv-btn-minus {
  display: none;
}
.filters-toggle-button .as-adv-btn-plus {
  display: block;
}
.filters-toggle-button.collapsed .as-adv-btn-minus {
  display: block;
}
.filters-toggle-button.collapsed .as-adv-btn-plus {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .filters-toggle-button {
    transition: none;
  }
  .filters-toggle-button:hover {
    transform: none;
  }
  .filters-toggle-button:active {
    transform: none;
  }
}
/* Reset Button for DAM Tree */
.dam-tree-reset-btn,
button.dam-tree-reset-btn {
  display: none !important;
  /* Hidden by default */
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 4px 0 4px 12px;
  background: #ffffff;
  color: #da291c;
  border: none;
  border-radius: 8px;
  font-family: "Libre Franklin", "Adobe Clean", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.15);
  vertical-align: middle;
}
.dam-tree-reset-btn svg,
button.dam-tree-reset-btn svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  fill: #da291c !important;
  transition: transform 0.3s ease;
  display: inline-block !important;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.dam-tree-reset-btn:hover,
button.dam-tree-reset-btn:hover {
  background: #da291c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(218, 41, 28, 0.3);
  transform: translateY(-1px);
}
.dam-tree-reset-btn:hover svg,
button.dam-tree-reset-btn:hover svg {
  fill: #ffffff !important;
  transform: rotate(360deg);
}
.dam-tree-reset-btn:active,
button.dam-tree-reset-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(218, 41, 28, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .dam-tree-reset-btn,
  button.dam-tree-reset-btn {
    transition: none;
  }
  .dam-tree-reset-btn svg,
  button.dam-tree-reset-btn svg {
    transition: none;
  }
  .dam-tree-reset-btn:hover,
  button.dam-tree-reset-btn:hover {
    transform: none;
  }
  .dam-tree-reset-btn:hover svg,
  button.dam-tree-reset-btn:hover svg {
    transform: none;
  }
  .dam-tree-reset-btn:active,
  button.dam-tree-reset-btn:active {
    transform: none;
  }
}
@media (max-width: 768px) {
  .dam-tree-reset-btn,
  button.dam-tree-reset-btn {
    margin: 10px 0;
    width: 100%;
    justify-content: center;
  }
}
/* Show reset button only when filters are expanded (toggle button has collapsed class) */
.filters-toggle-button.collapsed + .dam-tree-reset-btn,
button.filters-toggle-button.collapsed + button.dam-tree-reset-btn {
  display: inline-flex !important;
}
/* Apartments-specific styles */
.dam-asset-filter-apartments {
  font-family: 'Adobe Clean', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  margin: 4px 0;
  animation: fadeInUp 0.4s ease-out;
  /* Button container - ensure buttons display inline */
  /* Filter Table - 3 column layout */
  /* Placeholder text */
  /* Loading state */
  /* Empty state */
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter-apartments {
    animation: none;
  }
}
.dam-asset-filter-apartments > .filters-toggle-button,
.dam-asset-filter-apartments > .dam-tree-reset-btn {
  display: inline-flex;
}
.dam-asset-filter-apartments .dam-asset-filter__table,
.dam-asset-filter-apartments #filtersTableApartments {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 4px 0;
  table-layout: fixed;
  background: #f9f9f9;
  transition: background 0.3s ease;
  /* Responsive: Stack vertically on mobile */
}
.dam-asset-filter-apartments .dam-asset-filter__table:hover,
.dam-asset-filter-apartments #filtersTableApartments:hover {
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter-apartments .dam-asset-filter__table,
  .dam-asset-filter-apartments #filtersTableApartments {
    transition: none;
  }
}
.dam-asset-filter-apartments .dam-asset-filter__table thead th,
.dam-asset-filter-apartments #filtersTableApartments thead th {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 6px 12px;
  text-align: left;
  font-weight: 800;
  font-size: 13px;
  color: #333;
  border: none;
  border-bottom: 2px solid #e8e8e8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 33.33%;
  /* Equal width for all 3 columns */
  position: relative;
  transition: background 0.2s ease;
}
.dam-asset-filter-apartments .dam-asset-filter__table thead th:hover,
.dam-asset-filter-apartments #filtersTableApartments thead th:hover {
  background: linear-gradient(135deg, #f8f8f8 0%, #f3f3f3 100%);
}
.dam-asset-filter-apartments .dam-asset-filter__table thead th:not(:last-child)::after,
.dam-asset-filter-apartments #filtersTableApartments thead th:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #d8d8d8, transparent);
  opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter-apartments .dam-asset-filter__table thead th,
  .dam-asset-filter-apartments #filtersTableApartments thead th {
    transition: none;
  }
}
.dam-asset-filter-apartments .dam-asset-filter__table tbody td,
.dam-asset-filter-apartments #filtersTableApartments tbody td {
  padding: 16px;
  vertical-align: top;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
}
.dam-asset-filter-apartments .dam-asset-filter__table tbody td:not(:last-child)::after,
.dam-asset-filter-apartments #filtersTableApartments tbody td:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #e8e8e8 20%, #e8e8e8 80%, transparent 100%);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .dam-asset-filter-apartments .dam-asset-filter__table tbody td::before,
  .dam-asset-filter-apartments #filtersTableApartments tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #333333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dam-asset-filter-apartments .dam-asset-filter__table tbody td,
  .dam-asset-filter-apartments #filtersTableApartments tbody td {
    transition: none;
  }
}
@media (max-width: 768px) {
  .dam-asset-filter-apartments .dam-asset-filter__table,
  .dam-asset-filter-apartments #filtersTableApartments {
    display: block;
  }
  .dam-asset-filter-apartments .dam-asset-filter__table thead,
  .dam-asset-filter-apartments #filtersTableApartments thead {
    display: none;
    /* Hide header on mobile, use data-label instead */
  }
  .dam-asset-filter-apartments .dam-asset-filter__table tbody,
  .dam-asset-filter-apartments #filtersTableApartments tbody,
  .dam-asset-filter-apartments .dam-asset-filter__table tr,
  .dam-asset-filter-apartments #filtersTableApartments tr,
  .dam-asset-filter-apartments .dam-asset-filter__table td,
  .dam-asset-filter-apartments #filtersTableApartments td {
    display: block;
    width: 100%;
  }
  .dam-asset-filter-apartments .dam-asset-filter__table tbody tr,
  .dam-asset-filter-apartments #filtersTableApartments tbody tr {
    margin-bottom: 20px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .dam-asset-filter-apartments .dam-asset-filter__table tbody td,
  .dam-asset-filter-apartments #filtersTableApartments tbody td {
    padding: 12px 0;
    border: none !important;
  }
  .dam-asset-filter-apartments .dam-asset-filter__table tbody td::after,
  .dam-asset-filter-apartments #filtersTableApartments tbody td::after {
    display: none !important;
  }
}
.dam-asset-filter-apartments .dam-asset-filter__placeholder {
  color: #999;
  font-style: italic;
  padding: 12px 16px;
  text-align: center;
  background: #fafafa;
  border-radius: 6px;
  margin: 8px 0;
}
.dam-asset-filter-apartments .dam-asset-filter__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: #999;
  font-style: italic;
}
.dam-asset-filter-apartments .dam-asset-filter__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-top-color: #da291c;
  border-radius: 50%;
  animation: filter-spin 0.8s linear infinite;
}
@keyframes filter-spin {
  to {
    transform: rotate(360deg);
  }
}
.dam-asset-filter-apartments .dam-asset-filter__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: #fafafa;
  border-radius: 12px;
  margin: 20px 0;
}
.dam-asset-filter-apartments .dam-asset-filter__empty svg {
  width: 64px;
  height: 64px;
  color: #666666;
  opacity: 0.25;
  margin-bottom: 20px;
}
.dam-asset-filter-apartments .dam-asset-filter__empty-message {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
}
.dam-asset-filter-apartments .dam-asset-filter__empty-hint {
  font-size: 14px;
  color: #999;
  margin: 0;
}
/* Red button list (for Market radio buttons) */
.red-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.red-button-list li {
  animation: slideInLeft 0.3s ease-out;
  animation-fill-mode: both;
}
.red-button-list li:nth-child( 1) {
  animation-delay: 0s;
}
.red-button-list li:nth-child( 2) {
  animation-delay: 0.05s;
}
.red-button-list li:nth-child( 3) {
  animation-delay: 0.1s;
}
.red-button-list li:nth-child( 4) {
  animation-delay: 0.15s;
}
.red-button-list li:nth-child( 5) {
  animation-delay: 0.2s;
}
.red-button-list li:nth-child( 6) {
  animation-delay: 0.25s;
}
.red-button-list li:nth-child( 7) {
  animation-delay: 0.3s;
}
.red-button-list li:nth-child( 8) {
  animation-delay: 0.35s;
}
.red-button-list li:nth-child( 9) {
  animation-delay: 0.4s;
}
.red-button-list li:nth-child( 10) {
  animation-delay: 0.45s;
}
@media (prefers-reduced-motion: reduce) {
  .red-button-list li {
    animation: none;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Radio button styling */
.radio-button-wrapper {
  display: block;
}
.radio-button-wrapper .form-control-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-button-wrapper .radio-button-label {
  display: block;
  padding: 7px 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
  line-height: 1.3;
}
.radio-button-wrapper .radio-button-label:hover {
  border-color: #da291c;
  background: #fff8f7;
  box-shadow: 0 2px 6px rgba(218, 41, 28, 0.12);
}
.radio-button-wrapper .radio-button-label:focus-visible {
  outline: 2px solid #c61508;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .radio-button-wrapper .radio-button-label {
    transition: none;
  }
}
.radio-button-wrapper .form-control-radio:checked + .radio-button-label {
  background: linear-gradient(135deg, #da291c 0%, #ad2116 100%);
  color: #ffffff;
  border-color: #da291c;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(218, 41, 28, 0.25);
}
/* Checkbox list (for Communities and Categories) */
.checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkbox-list li {
  animation: slideInLeft 0.3s ease-out;
  animation-fill-mode: both;
}
.checkbox-list li:nth-child( 1) {
  animation-delay: 0s;
}
.checkbox-list li:nth-child( 2) {
  animation-delay: 0.04s;
}
.checkbox-list li:nth-child( 3) {
  animation-delay: 0.08s;
}
.checkbox-list li:nth-child( 4) {
  animation-delay: 0.12s;
}
.checkbox-list li:nth-child( 5) {
  animation-delay: 0.16s;
}
.checkbox-list li:nth-child( 6) {
  animation-delay: 0.2s;
}
.checkbox-list li:nth-child( 7) {
  animation-delay: 0.24s;
}
.checkbox-list li:nth-child( 8) {
  animation-delay: 0.28s;
}
.checkbox-list li:nth-child( 9) {
  animation-delay: 0.32s;
}
.checkbox-list li:nth-child( 10) {
  animation-delay: 0.36s;
}
.checkbox-list li:nth-child( 11) {
  animation-delay: 0.4s;
}
.checkbox-list li:nth-child( 12) {
  animation-delay: 0.44s;
}
.checkbox-list li:nth-child( 13) {
  animation-delay: 0.48s;
}
.checkbox-list li:nth-child( 14) {
  animation-delay: 0.52s;
}
.checkbox-list li:nth-child( 15) {
  animation-delay: 0.56s;
}
@media (prefers-reduced-motion: reduce) {
  .checkbox-list li {
    animation: none;
  }
}
/* Checkbox styling */
.form-control-checkbox-container {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.form-control-checkbox-container:hover {
  background: #f5f5f5;
}
@media (prefers-reduced-motion: reduce) {
  .form-control-checkbox-container {
    transition: none;
  }
}
.form-control-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-control-checkbox:hover {
  border-color: #da291c;
  transform: scale(1.1);
}
.form-control-checkbox:focus-visible {
  outline: 2px solid #c61508;
  outline-offset: 2px;
}
.form-control-checkbox:checked {
  background: #da291c;
  border-color: #da291c;
  animation: checkBounce 0.3s ease-out;
}
.form-control-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .form-control-checkbox {
    transition: none;
    animation: none !important;
  }
  .form-control-checkbox:hover {
    transform: none;
  }
}
@keyframes checkBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.form-control-checkbox-label {
  margin-left: 12px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  flex: 1;
  text-transform: capitalize;
}
/* Disabled category styling (for categories that don't exist) */
.category-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.category-disabled .form-control-checkbox {
  border-color: #e0e0e0;
  background: #f5f5f5;
  cursor: not-allowed;
}
.category-disabled .form-control-checkbox-label {
  color: #999;
  cursor: not-allowed;
}
.category-disabled:hover {
  background: #ffffff;
}
/* Specific styling for apartments filter table columns */
#filtersTableApartments tbody td {
  padding: 0 !important;
  vertical-align: top;
  height: 275px;
}
#filtersTableApartments tbody td > ul,
#filtersTableApartments tbody td > div {
  height: 100%;
  overflow-y: auto;
  padding: 16px;
  box-sizing: border-box;
}
#filtersTableApartments tbody td > ul::-webkit-scrollbar,
#filtersTableApartments tbody td > div::-webkit-scrollbar {
  width: 4px;
}
#filtersTableApartments tbody td > ul::-webkit-scrollbar-track,
#filtersTableApartments tbody td > div::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#filtersTableApartments tbody td > ul::-webkit-scrollbar-thumb,
#filtersTableApartments tbody td > div::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 4px;
}
#filtersTableApartments tbody td > ul::-webkit-scrollbar-thumb:hover,
#filtersTableApartments tbody td > div::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
/* Responsive design */
@media (max-width: 768px) {
  .dam-asset-filter-apartments .filters-toggle-button {
    width: 100%;
    justify-content: center;
  }
  .dam-asset-filter-apartments .dam-asset-filter__table {
    font-size: 13px;
  }
  .dam-asset-filter-apartments .radio-button-label,
  .dam-asset-filter-apartments .form-control-checkbox-label {
    font-size: 13px;
  }
}
/* Community Group Styles */
.community-group {
  margin: 12px 0px !important;
}
.community-group .community-group-header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.community-group .filters-toggle-button-min {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.community-group .filters-toggle-button-min svg {
  width: 14px;
  height: 14px;
  fill: #da291c;
  transition: transform 0.2s ease;
}
.community-group .filters-toggle-button-min:hover svg {
  fill: #cc1d11;
  transform: scale(1.15);
}
.community-group .filters-toggle-button-min.collapsed .as-adv-btn-plus {
  display: inline-flex;
}
.community-group .filters-toggle-button-min.collapsed .as-adv-btn-minus {
  display: none;
}
.community-group .filters-toggle-button-min:not(.collapsed) .as-adv-btn-plus {
  display: none;
}
.community-group .filters-toggle-button-min:not(.collapsed) .as-adv-btn-minus {
  display: inline-flex;
}
.community-group .filters-toggle-button-min .as-adv-btn-plus,
.community-group .filters-toggle-button-min .as-adv-btn-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .community-group .filters-toggle-button-min {
    transition: none;
  }
  .community-group .filters-toggle-button-min svg {
    transition: none;
  }
  .community-group .filters-toggle-button-min:hover svg {
    transform: none;
  }
}
.community-group .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  text-transform: none;
  letter-spacing: 0.5px;
}
.community-group .community-group-children {
  list-style: none;
  padding-left: 8px !important;
  margin-top: 8px;
  border-left: 2px solid #e8e8e8;
}
.community-group .community-group-children li {
  margin-bottom: 6px;
  animation: slideInLeft 0.2s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .community-group .community-group-children li {
    animation: none;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  .dam-asset-filter-apartments .dam-asset-filter__table tbody td::after {
    opacity: 1;
    background: #000;
  }
  .dam-asset-filter-apartments .radio-button-label {
    border-width: 2px;
  }
  .dam-asset-filter-apartments .form-control-checkbox {
    border-width: 2px;
  }
  .dam-asset-filter-apartments .community-group-children {
    border-left-width: 3px;
    border-left-color: #000;
  }
}

