:root {
    --ajm-bg: #030506;
    --ajm-panel: #090b0d;
    --ajm-panel-2: #0e1114;
    --ajm-border: rgba(255,255,255,.075);
    --ajm-border-hover: rgba(255,255,255,.16);
    --ajm-text: #ffffff;
    --ajm-muted: #8e949d;
    --ajm-muted-2: #626870;
    --ajm-red: #ef1018;
    --ajm-red-soft: rgba(239,16,24,.12);
    --ajm-radius: 8px;
}

.ajm-filter-shell {
    position: relative;
    width: 100%;
    margin: 80px 0;
    padding: 26px;
    border: 1px solid var(--ajm-border);
    border-radius: 12px;
    background: linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.006)),#07090b;
    box-shadow: 0 25px 70px rgba(0,0,0,.30);
    color: var(--ajm-text);
}

.ajm-filter-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    width: 65px;
    height: 2px;
    background: var(--ajm-red);
    border-radius: 0 0 4px 4px;
}

.ajm-filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 22px;
}

.ajm-filter-heading {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ajm-filter-kicker,.ajm-section-kicker {
    color: var(--ajm-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ajm-filter-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.025em;
}

.ajm-filter-heading p {
    margin: 3px 0 0;
    color: var(--ajm-muted);
    font-size: 12px;
}

.ajm-filter-clear {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--ajm-border);
    border-radius: 6px;
    background: rgba(255,255,255,.025);
    color: var(--ajm-muted);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease,border-color .2s ease,background .2s ease;
}

.ajm-filter-clear:hover {
    color: #fff;
    border-color: rgba(239,16,24,.45);
    background: var(--ajm-red-soft);
}

.ajm-filter-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    margin-bottom: 25px;
    border: 1px solid var(--ajm-border);
    border-radius: var(--ajm-radius);
    background: #0b0d10;
    transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.ajm-filter-search-wrap:focus-within {
    border-color: rgba(239,16,24,.55);
    background: #0d0f12;
    box-shadow: 0 0 0 3px rgba(239,16,24,.06);
}

.ajm-filter-search-wrap>i {
    margin-left: 16px;
    color: #737983;
    font-size: 13px;
}

.ajm-filter-search-wrap input {
    width: 100%;
    height: 46px;
    padding: 0 90px 0 12px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 12px;
}

.ajm-filter-search-wrap input::placeholder {
    color: #656b74;
}

.ajm-filter-search-shortcut {
    position: absolute;
    right: 12px;
    padding: 4px 6px;
    border: 1px solid var(--ajm-border);
    border-radius: 4px;
    background: #111419;
    color: #646b75;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
}

.ajm-filter-section {
    margin-bottom: 22px;
}

.ajm-filter-section-title {
    margin-bottom: 9px;
    color: #9da3ac;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ajm-filter-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ajm-filter-letters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 31px;
    width: calc(100%/31);
    height: 52px;
    padding: 0 8px;
    border: 1px solid var(--ajm-border);
    border-radius: 5px;
    background: #0b0d10;
    color: #888e97;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: color .16s ease,border-color .16s ease,background .16s ease,transform .16s ease;
    text-transform: uppercase;
}

.ajm-filter-letters button:hover {
    color: #fff;
    border-color: var(--ajm-border-hover);
    background: #121519;
    transform: translateY(-1px);
}

.ajm-filter-letters button.is-active {
    border-color: var(--ajm-red);
    background: var(--ajm-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(239,16,24,.18);
}

.ajm-filter-letters button:first-child {
    width: 89px;
}

.ajm-filter-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 25px;
    padding-top: 21px;
    border-top: 1px solid var(--ajm-border);
}

.ajm-filter-control {
    min-width: 0;
}

.ajm-filter-control>label {
    display: block;
    margin-bottom: 18px;
    color: #777e88;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.ajm-filter-select {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--ajm-border);
    border-radius: 6px;
    background: #0b0d10;
    transition: border-color .2s ease,background .2s ease;
}

.ajm-filter-select:hover {
    border-color: var(--ajm-border-hover);
    background: #0e1114;
}

.ajm-filter-select:focus-within {
    border-color: rgba(239,16,24,.48);
}

.ajm-filter-select select {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    padding: 0 34px 0 12px;
    border: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: #d7dade;
    font-size: 10px;
    cursor: pointer;
}

.ajm-filter-select select option {
    background: #101317;
    color: #fff;
}

.ajm-filter-select>i {
    position: absolute;
    right: 30px;
    color: #555c65;
    font-size: 14px;
    pointer-events: none;
}

.ajm-filter-select.is-multiple {
    min-height: 40px;
}

.ajm-filter-select.is-multiple select {
    min-height: 40px;
    height: 40px;
}

.ajm-filter-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid var(--ajm-border);
}

.ajm-filter-result-count {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9298a1;
    font-size: 12px;
}

.ajm-filter-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ajm-red);
    box-shadow: 0 0 8px rgba(239,16,24,.7);
}

.ajm-filter-active {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666d76;
    font-size: 12px;
}

.ajm-filter-active i {
    color: #31b56a;
}

.ajm-catalog-section {
    margin-top: 35px;
}

.ajm-catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ajm-catalog-heading h2 {
    margin: 1px 0 0;
    color: #fff;
    font-size: 19px;
}

.ajm-donghua-grid {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 18px 12px;
    transition: opacity .2s ease;
}

.ajm-donghua-grid.is-loading {
    opacity: .3;
    pointer-events: none;
}

.ajm-filter-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 32px;
}

.ajm-filter-pagination button {
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border: 1px solid var(--ajm-border);
    border-radius: 5px;
    background: #0b0d10;
    color: #8f959e;
    font-size: 14px;
    cursor: pointer;
    transition: .18s ease;
}

.ajm-filter-pagination button:hover {
    color: #fff;
    border-color: var(--ajm-border-hover);
    background: #13161a;
}

.ajm-filter-pagination button.is-active {
    border-color: var(--ajm-red);
    background: var(--ajm-red);
    color: #fff;
}

.ajm-filter-empty {
    grid-column: 1 / -1;
    padding: 55px 20px;
    border: 1px dashed var(--ajm-border);
    border-radius: 8px;
    color: #747b84;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 1200px) {
    .ajm-donghua-grid {
        grid-template-columns:repeat(5,minmax(0,1fr));
    }
}

@media (max-width: 980px) {
    .ajm-filter-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ajm-donghua-grid {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
}

@media (max-width: 700px) {
    .ajm-filter-shell {
        padding:19px;
    }

    .ajm-filter-shell::before {
        left: 19px;
    }

    .ajm-filter-header {
        flex-direction: column;
        gap: 14px;
    }

    .ajm-filter-clear {
        align-self: flex-start;
    }

    .ajm-filter-grid {
        grid-template-columns: 1fr;
    }

    .ajm-filter-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ajm-donghua-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 14px 8px;
    }
}

@media (max-width: 480px) {
    .ajm-filter-search-shortcut {
        display:none;
    }

    .ajm-filter-search-wrap input {
        padding-right: 12px;
    }

    .ajm-filter-letters {
        gap: 4px;
    }

    .ajm-filter-letters button {
        min-width: 29px;
        padding: 0 7px;
    }

    .ajm-donghua-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

.ajm-filter-shell .choices {
    width: 100%;
    margin: 0;
    font-size: 10px;
}

.ajm-filter-shell .ajm-filter-select:has(.choices) {
    border: 0;
    background: transparent;
}

.ajm-filter-shell .choices__inner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 55px;
    padding: 5px 38px 5px 12px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 7px;
    background: #0b0d10;
    color: #e6e8eb;
    font-size: 10px;
    transition: border-color .2s ease,background .2s ease,box-shadow .2s ease;
}

.ajm-filter-shell .choices:hover .choices__inner {
    border-color: rgba(255,255,255,.16);
    background: #0e1114;
}

.ajm-filter-shell .choices.is-focused .choices__inner,.ajm-filter-shell .choices.is-open .choices__inner {
    border-color: rgba(239,16,24,.58);
    background: #0e1013;
    box-shadow: 0 0 0 3px rgba(239,16,24,.07);
}

.ajm-filter-shell .choices__list--single {
    width: 100%;
    padding: 0;
}

.ajm-filter-shell .choices__list--single .choices__item {
    overflow: hidden;
    color: #d5d8dc;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ajm-filter-shell .choices[data-type*="select-one"]::after {
    top: 50%;
    right: 14px;
    width: 6px;
    height: 6px;
    margin: -5px 0 0;
    border: 0;
    border-right: 1.5px solid #727985;
    border-bottom: 1.5px solid #727985;
    transform: rotate(45deg);
    transition: transform .2s ease,margin .2s ease;
}

.ajm-filter-shell .choices[data-type*="select-one"].is-open::after {
    margin-top: -1px;
    border-color: var(--ajm-red);
    transform: rotate(225deg);
}

.ajm-filter-shell .choices__list--dropdown {
    z-index: 100;
    overflow: hidden;
    margin-top: 6px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    background: #0d1013;
    box-shadow: 0 16px 45px rgba(0,0,0,.55);
    opacity: 0;
    transform: translateY(-5px)scale(.985);
    transform-origin: top center;
    transition: opacity .18s ease,transform .18s ease;
}

.ajm-filter-shell .choices.is-open .choices__list--dropdown {
    opacity: 1;
    transform: translateY(0)scale(1);
}

.ajm-filter-shell .choices__list--dropdown .choices__item {
    margin: 1px 0;
    padding: 9px 10px;
    border-radius: 5px;
    color: #969ca5;
    font-size: 10px;
    transition: color .15s ease,background .15s ease;
}

.ajm-filter-shell .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: rgba(255,255,255,.055);
    color: #fff;
}

.ajm-filter-shell .choices__list--dropdown .choices__item.is-selected {
    position: relative;
    background: rgba(239,16,24,.08);
    color: #fff;
}

.ajm-filter-shell .choices__list--dropdown .choices__item.is-selected::after {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
    position: absolute;
    right: 10px;
    color: var(--ajm-red);
    font-weight: 700;
    opacity: 1;
}

.ajm-filter-shell .choices__input {
    width: calc(100% - 12px)!important;
    margin: 6px;
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    outline: none;
    background: #080a0c;
    color: #fff;
    font-size: 10px;
}

.ajm-filter-shell .choices__input:focus {
    border-color: rgba(239,16,24,.48);
    box-shadow: 0 0 0 2px rgba(239,16,24,.06);
}

.ajm-filter-shell .choices__input::placeholder {
    color: #555c65;
}

.ajm-filter-shell .choices[data-type*="select-multiple"] .choices__inner {
    padding: 5px 8px;
    min-height: 42px;
}

.ajm-filter-shell .choices__list--multiple {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
}

.ajm-filter-shell .choices__list--multiple .choices__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 5px 7px;
    border: 1px solid rgba(239,16,24,.20);
    border-radius: 4px;
    background: rgba(239,16,24,.10);
    color: #f5d9da;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .01em;
}

.ajm-filter-shell .choices__button {
    width: 12px;
    margin: 0 0 0 2px;
    padding: 0;
    border: 0!important;
    background: none!important;
    opacity: .55;
    filter: none;
    text-indent: -9999px;
    transition: opacity .15s ease;
}

.ajm-filter-shell .choices__button::before,.ajm-filter-shell .choices__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 1px;
    background: #fff;
}

.ajm-filter-shell .choices__button::before {
    transform: translate(-50%,-50%)rotate(45deg);
}

.ajm-filter-shell .choices__button::after {
    transform: translate(-50%,-50%)rotate(-45deg);
}

.ajm-filter-shell .choices__button:hover {
    opacity: 1;
}

.ajm-filter-shell .choices__placeholder {
    color: #686f79;
    opacity: 1;
}

.ajm-filter-shell .choices__item.has-no-results,.ajm-filter-shell .choices__item.has-no-choices {
    padding: 14px;
    background: transparent!important;
    color: #646b75;
    text-align: center;
}

.ajm-filter-shell .choices__list--dropdown .choices__list {
    max-height: 230px;
    scrollbar-width: thin;
    scrollbar-color: #33383e transparent;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar {
    width: 4px;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
    background: transparent;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #33383e;
}

#ajm-filter-results {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: opacity .24s ease,transform .24s cubic-bezier(.22,1,.36,1);
    will-change: transform,opacity;
}

#ajm-filter-results.is-leaving-left {
    opacity: 0;
    transform: translateX(-28px);
}

#ajm-filter-results.is-leaving-right {
    opacity: 0;
    transform: translateX(28px);
}

#ajm-filter-results.is-entering-from-right {
    opacity: 0;
    transform: translateX(32px);
    transition: none;
}

#ajm-filter-results.is-entering-from-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: none;
}

#ajm-filter-results.is-entering-from-right.is-entered,#ajm-filter-results.is-entering-from-left.is-entered {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .27s ease,transform .32s cubic-bezier(.22,1,.36,1);
}

.ajm-filter-skeleton {
    min-width: 0;
}

.ajm-filter-skeleton-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 7px;
    background: #101316;
}

.ajm-filter-skeleton-line {
    position: relative;
    overflow: hidden;
    height: 8px;
    margin-top: 8px;
    border-radius: 20px;
    background: #101316;
}

.ajm-filter-skeleton-line.is-title {
    width: 82%;
}

.ajm-filter-skeleton-line.is-meta {
    width: 48%;
}

.ajm-filter-skeleton-image::after,.ajm-filter-skeleton-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.055),transparent);
    animation: ajmSkeletonMove 1.35s infinite;
}

@keyframes ajmSkeletonMove {
    100% {
        left: 130%;
    }
}

.ajm-filter-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.ajm-filter-pagination button {
    border: 0;
    cursor: pointer;
}

.ajm-pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px!important;
    background: #0c0f12;
    color: #777e87;
    font-size: 10px;
    font-weight: 600;
    transition: background .18s ease,color .18s ease,transform .18s ease;
}

.ajm-pagination-page:hover {
    background: #15191d;
    color: #fff;
    transform: translateY(-1px);
}

.ajm-pagination-page.is-active {
    background: #ed1018;
    color: #fff;
    box-shadow: 0 5px 17px rgba(237,16,24,.20);
}

.ajm-pagination-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 6px;
    background: #0c0f12;
    color: #858b94;
    font-size: 9px;
    font-weight: 600;
    transition: background .18s ease,color .18s ease;
}

.ajm-pagination-nav:hover:not(:disabled) {
    background: #15191d;
    color: #fff;
}

.ajm-pagination-nav:disabled {
    opacity: .25;
    cursor: default;
}

.ajm-pagination-nav i {
    font-size: 8px;
}

.ajm-pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    color: #4f555d;
    font-size: 8px;
    letter-spacing: 2px;
}

.ajm-filter-shell .choices__list--dropdown,
.ajm-filter-shell .choices__list[aria-expanded] {
    z-index:999;
    overflow:hidden;
    margin-top:6px;
    padding:5px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:8px;
    background:#0d1013;
    color:#fff;
    box-shadow:0 16px 45px rgba(0,0,0,.55);
}

.ajm-filter-shell .choices__list--dropdown .choices__list,
.ajm-filter-shell .choices__list[aria-expanded] .choices__list {
    max-height:240px;
    background:#0d1013;
    color:#fff;
    scrollbar-width:thin;
    scrollbar-color:#33383e transparent;
}

.ajm-filter-shell .choices__list--dropdown .choices__item,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item {
    margin:1px 0;
    padding:9px 11px;
    border-radius:5px;
    background:transparent;
    color:#969ca5;
    font-size:14px;
    transition:background .15s ease,color .15s ease;
}

.ajm-filter-shell .choices__list--dropdown .choices__item--selectable.is-highlighted,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background:#171b20;
    color:#fff;
}

.ajm-filter-shell .choices__list--dropdown .choices__item.is-selected,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item.is-selected {
    position:relative;
    background:rgba(239,16,24,.10);
    color:#fff;
}

.ajm-filter-shell .choices__list--dropdown .choices__item.is-selected::after,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item.is-selected::after {
    content:"ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
    position:absolute;
    top:50%;
    right:11px;
    color:#ef1018;
    font-size:14px;
    font-weight:700;
    transform:translateY(-50%);
    opacity:1;
}

.ajm-filter-shell .choices__list--dropdown .choices__item--disabled,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item--disabled {
    background:transparent;
    color:#454b53;
    opacity:.65;
}

.ajm-filter-shell .choices__input {
    width:calc(100% - 12px)!important;
    margin:6px;
    padding:9px 10px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:6px;
    outline:0;
    background:#080a0c!important;
    color:#fff!important;
    font-size:10px;
}

.ajm-filter-shell .choices__input:focus {
    border-color:rgba(239,16,24,.5);
    background:#090c0f!important;
    box-shadow:0 0 0 2px rgba(239,16,24,.07);
}

.ajm-filter-shell .choices__input::placeholder {
    color:#555c65!important;
    opacity:1;
}

.ajm-filter-shell .choices__item.has-no-results,
.ajm-filter-shell .choices__item.has-no-choices {
    padding:14px;
    background:#0d1013!important;
    color:#646b75;
    text-align:center;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar,
.ajm-filter-shell .choices__list[aria-expanded] .choices__list::-webkit-scrollbar {
    width:4px;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar-track,
.ajm-filter-shell .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-track {
    background:transparent;
}

.ajm-filter-shell .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb,
.ajm-filter-shell .choices__list[aria-expanded] .choices__list::-webkit-scrollbar-thumb {
    border-radius:10px;
    background:#33383e;
}

.ajm-filter-shell .choices__list--dropdown.is-active,
.ajm-filter-shell .choices__list[aria-expanded].is-active {
    background:#0d1013;
}

.ajm-filter-shell .choices.is-open .choices__inner {
    border-color:rgba(239,16,24,.55);
    border-radius:7px;
    background:#0e1013;
}

.ajm-filter-shell .choices.is-open .choices__list--dropdown,
.ajm-filter-shell .choices.is-open .choices__list[aria-expanded] {
    border-color:rgba(255,255,255,.12);
}

.ajm-filter-shell .choices__list--dropdown *,
.ajm-filter-shell .choices__list[aria-expanded] * {
    box-sizing:border-box;
}

.ajm-filter-shell .choices__list--dropdown,
.ajm-filter-shell .choices__list--dropdown .choices__list,
.ajm-filter-shell .choices__list[aria-expanded],
.ajm-filter-shell .choices__list[aria-expanded] .choices__list {
    background-color:#0d1013!important;
}

.ajm-filter-shell .choices__list--dropdown,
.ajm-filter-shell .choices__list--dropdown .choices__list,
.ajm-filter-shell .choices__list[aria-expanded],
.ajm-filter-shell .choices__list[aria-expanded] .choices__list,
.ajm-filter-shell .choices__list[aria-expanded] .choices__item {
    background-color:#0d1013;
}

.ajm-filter-shell .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background:#171b20;
}

.ajm-filter-shell .choices__list[aria-expanded] .choices__item.is-selected {
    background:rgba(239,16,24,.10);
}

.choices[data-type*=select-one] .choices__input {
    border-color: rgb(239 16 24 / 28%)!important;
}