<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.field-container {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.custom-select-wrapper {
    position: relative;
    width: 240px;
    font-family: 'Segoe UI', sans-serif;
}

.custom-select {
    background: white;
    border: 2px solid #aaa;
    border-radius: 30px;
    padding: 10px 16px;
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .custom-select * {
        font-weight: 500;
    }

    .custom-select:focus {
        outline: none;
        border-color: #7b001c;
    }

.select-arrow {
    margin-left: 10px;
    font-size: 12px;
}

.select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: white;
    border: 2px solid #aaa;
    border-radius: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    overflow-y: auto;
}

.custom-select.open .select-options {
    max-height: 200px;
    opacity: 1;
}

.select-options li {
    padding: 10px 16px;
    cursor: pointer;
}

    .select-options li:hover {
        background-color: #f5dada;
    }

.field-container {
    display: flex;
}

#containerAdvanceSearch {
    overflow: visible;
}


.btns button {
    border: 1.5px solid #A54141 !important;
    background-color: transparent;
    color: #A54141;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all .3s ease-in;
}

    .btns button:active {
        transform: scale(0.9);
    }


    .btns button:hover {
        background-color: #f1e6e8 !important;
    }

.bg-dark-btn {
    background: #73081C !important;
    color: #fff !important;
}

    .bg-dark-btn:hover {
        color: #73081C !important;
    }


.border-btn {
    color: #73081C !important;
    border: 2px solid #73081C !important;
}

.add-field-btn {
    max-width: 106px;
    width: 100%;
}

.fields-wrapper .field-container:not(:last-child) .add-field-btn {
    display: none;
}

.fields-wrapper .field-container:last-child .remove-field-btn {
    display: none;
}

.custom-select {
    color: #9B9B9B;
}

    .custom-select.open,
    .custom-select .selected {
        color: #73081C;
    }

.custom-select-wrapper input {
    padding-block: 9px !important;
    border: 2px solid #aaa !important;
    color: #73081C !important;
    font-weight: normal !important;
    padding-inline: 10px;
}

    .custom-select-wrapper input:focus {
        border-color: #73081C !important;
        box-shadow: none !important;
    }


.field-container .custom-select-wrapper:nth-child(1) {
    max-width: 230px;
    width: 100%;
}

.field-container .custom-select-wrapper:nth-child(2) {
    max-width: 180px;
    width: 100%;
}

.field-container .custom-select-wrapper:nth-child(3) {
    max-width: 357px;
    width: 100%;
}

.field-container.disabled .custom-select-wrapper {
    opacity: 0.5;
    pointer-events: none;
}

.btns {
    white-space: nowrap;
}

.radius-25 {
    border-radius: 25px !important;
}

.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 10px 5px;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: white;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}



    .autocomplete-list li {
        padding: 8px;
        cursor: pointer;
    }


        .autocomplete-list li:hover {
            background-color: #eee;
        }

@media (max-width: 600px) {
    #containerAdvanceSearch .fields-wrapper {
        display: flex;
        flex-direction: column;
    }

    #containerAdvanceSearch .field-container {
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0px 0px 11px 0px rgba(2, 0, 0, 0.3);
        padding: 20px 10px;
        border-radius: 8px;
        position: relative;
    }

    #containerAdvanceSearch .custom-select-wrapper {
        max-width: 100% !important;
        flex: 0 0 100%;
    }

    #containerAdvanceSearch .fields-wrapper .field-container:not(:last-child) .remove-field-btn {
        position: absolute;
        top: -15px;
        right: -6px;
        background: #fff;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }

    #containerAdvanceSearch button {
        font-size: 13px;
    }

    #containerAdvanceSearch &gt; .btns {
        margin-bottom: 50px;
    }
}

.input-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.searchable-input {
    padding: 10px 30px 10px 10px;
    width: 250px;
    font-size: 16px;
}

.spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
</pre></body></html>