#brx-content>section {
    width: 100%
}

.dropdown li span,
.expand.highlight span,
.expand span,
.control-select .highlight span.placeholders {
    color: #fff !important
}

[data-control=select] .placeholder,
[data-control=select] .input-value {
    color: #fff !important;
    opacity: var(--builder-placeholder-opacity);
}

.brxe-filter-select {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: -9999px;
}

.custom-select-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 8px 25px;
    color: var(--teal);
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    z-index: 1;
    background: -moz-linear-gradient(270deg, #b0f2ee, #1dd3c8, #454B5A);
    background: -webkit-linear-gradient(270deg, #b0f2ee, #1dd3c8, #454B5A);
    -moz-background-origin: border;
    background-origin: border-box;
    border: 2px solid transparent;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: inset 0 0 2px #0f121e, 0 0 2px #0f121e, inset -999px 0 0 var(--darkBlue);
    transition: all 0.3s;
    /* Ellipsis behavior */
    width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.custom-select-trigger:after {
    display: inline-block;
    position: absolute;
    right: 2px;
    top: 3px;
    content: '';
    width: 32px;
    height: 32px;
    background: url(../../img/faqDown.svg) center center no-repeat;
    background-size: 100% auto;
    margin-left: 30px;
    transition: all 0.2s;
}

.custom-select-wrapper.open .custom-select-trigger:after {
    transform: scale(-1);
    top: 1px
}

.custom-select-wrapper.open .custom-select-trigger {
    filter: brightness(1.1);
    opacity: 1;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-radius: 8px;
    background-color: var(--darkBlue);
    z-index: 10;
    overflow: hidden;
    max-height: 1600px;
    transition: all 0.3s;
    opacity: 0;
    padding: 18px 24px 18px 24px;
    border: 1px solid var(--teal)
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
}

.custom-select-option {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    user-select: none;
    transition: all 0.3s;
    font-weight: bold;
    padding: 6px 0;
}

.custom-select-option:hover {
    color: var(--teal);
    text-decoration: underline;
}

.custom-select-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.searchWrapper .brxe-filter-search .icon {
    right: -36px
}

.bricks-pagination .page-numbers span.dots {
    background-color: transparent;
    color: var(--teal);
}

.bricks-pagination .page-numbers span {
    display: inline-flex;
    background-color: var(--teal);
    color: var(--darkMidBlue);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-weight: bold;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bricks-pagination .page-numbers a {
    color: var(--teal);
    display: inline-flex;
    background: var(--darkMidBlue);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-weight: bold;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 0.3s
}

.bricks-pagination .page-numbers a:hover {
    background-color: var(--teal);
    color: var(--darkMidBlue)
}

.bricks-pagination ul {
    gap: 5px
}