.checkbox-dropdown .dropdown-toggle .arrow::before,
.checkbox-dropdown .dropdown-toggle .arrow::after{
    content: none;
}/* Dropdown Container */
.checkbox-dropdown {
    position: relative;
    margin-bottom: 15px;
}

/* Dropdown Toggle Button */
.dropdown-toggle {
    width: 100%;
    padding: 10px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.dropdown-toggle .arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Dropdown Options */
.dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Option Items */
.option-item {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.option-item:hover {
    background: #f5f5f5;
}

.option-item input {
    margin-right: 10px;
    accent-color: var(--ast-global-color-2);;
}

/* Selected Options Display */
.selected-options {
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #666;
}

.selected-options:not([data-empty-text=""]) {
    background: #f0f7ff;
    border-color: #d0e3ff;
    color: #0066cc;
}

/* Form Styles */
.portfolio-attributes-form {
    margin: 0 auto;
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;*/
}

.acf-field {
    margin-bottom: 1rem;
}

.acf-label label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.acf-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.acf-button {
    background: transparent;
    color: var(--ast-global-color-2);
    min-width: 200px;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--ast-global-color-2);
    transition: all 0.3s ease;
}

.acf-button:hover {
    background: var(--ast-global-color-2);
    color: white;
}

.portfolio-attributes__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio_grid.e-loading-overlay{
    position: relative;
    animation: none !important;
}

.portfolio_grid.e-loading-overlay::before{
    content: '';
    width: 100%;
    height: calc(100% + 20px);
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .8);
    z-index: 2;
}

.portfolio_grid.e-loading-overlay::after{
    content: '';
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--ast-global-color-2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*.portfolio_grid .e-loop-nothing-found-message{*/
/*    color: var(--ast-global-color-2) !important;*/
/*    font-weight: 600;*/
/*}*/

.acf-form-submit{
    display: inline-flex;
    gap: 2rem;
}


/**

 */

nav.elementor-pagination a.page-numbers[data-href] {
    cursor: pointer;
}