.modal#modal-filters {
    width: 100%;
    height: 100vh;
    display: flex;
    bottom: 0;
    position: fixed;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
    z-index: 2;

}

.modal#modal-filters .modal-content {
    background-color: #061d19;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 998;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    height: fit-content;
    box-sizing: border-box;
    width: 100%;
    margin-top: 9vh;
    min-height: 91vh;
}

.modal#modal-filters h2 {
    color: white;
    margin-bottom: 20px;
    margin-right: auto;
}

.modal#modal-filters .filter-group {
    margin-bottom: 20px;
    height: min-content;
}

.modal#modal-filters .filter-group label {
    color: white;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.modal#modal-filters .filter-group .input-container .line {
    width: 50px;
    height: 3px;
    background-color: #072c25;
}

.modal#modal-filters .filter-group .input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.modal#modal-filters .filter-group input {
    background-color: #072c25;
    border: 2px solid #0a483e;
    padding: 10px;
    color: white;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}

.modal#modal-filters .filter-category {
    margin-bottom: 10px;
}

.modal#modal-filters .filter-category h3 {
    color: #6a7775;
    font-size: 16px;
    margin: 0;
    cursor: pointer;
    padding: 15px 0;
    border-top: 1px solid #072c25;
    border-bottom: 1px solid #072c25;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal#modal-filters .filter-parameters {
    display: none;
    padding: 10px 0;

}

.modal#modal-filters .filter-parameters label {
    display: block;
    color: white;
    margin-bottom: 5px;
    cursor: pointer;
}



.modal#modal-filters .filter-parameters input[type="checkbox"] {
    margin-right: 10px;

}

.modal#modal-filters .bottom-button {
    position: fixed;
    width: calc(100% - 40px);
    bottom: 30px;
    height: 50px;
}

.modal#modal-filters .apply-btn {
    background-color: #14cbb4;
    color: #000000;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 100%;
}

.modal#modal-filters .space {
    height: 75px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.modal#modal-filters .header-info {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
}


.modal#modal-filters .clear-button {
    background-color: #072c25;
    border-radius: 10px;
    color: #88a7a0;
    border: 2px solid #0a483e;
    height: 25px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 90px;
    cursor: pointer;
}