@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.search-form-container {
  
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.search-form-custom {
    width: 100%;
    margin: 0 auto; 
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
}
.select-category-container {
    width: 25%;
    justify-content: space-between;
    margin-bottom: 10px;
    display: inline-block;
}
.input-search-container {
    width: 50%;
    justify-content: space-between;
    margin-bottom: 10px;
    display: inline-block;
    border-left: red solid 2px;
    padding-left: 20px;

}
.icon-search-custom{
    position: absolute;
    width: 30px;
    margin-top: 10px;
}
.button-search-container {
    width: 20%;
    justify-content: space-between;
    display: inline-block;
  
}
.search-form-custom input[type="text"],
.search-form-custom button {
    width: 100%;
    padding: 12px 5px;

    border: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: none ;
}
.search-form-custom input[type="text"]{
    color: #b7b7b7;
    font-weight: bold;
    font-size: 16px;
    border: none;
    padding-left: 45px;
    padding-top: 18px;
}
.search-form-custom input[type="text"]::placeholder {
    color: #b7b7b7; /* Cambia este color al que prefieras */
    font-weight: bold;
    font-size: 16px;
    
}
.search-form-custom input[type="text"]:focus {
    outline: none;
    border: none;
}
.search-form-custom button {
    background-color: #0056b3;
    color: white;
    width: 90%;
    border: none;
    margin-left: 10%;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
    
}

.search-form-custom button:hover {
    background-color: #0056b3;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}
.custom-select i {

    color: #0056b3;
    font-weight: 900;
    font-size: 18px;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

    border-radius: 4px;
    cursor: pointer;
    color: #b7b7b7;
    font-weight: bold;
    font-size: 16px;
}

.custom-select-trigger img {
    width: 16px;
    height: 16px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    border-radius: 10px;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 2;
    box-shadow: 1px 2px 12px rgba(0,0,0,0.07);
}

.custom-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #f0f0f0;
    padding: 15px 10px;
}
.custom-option img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
 
}

.custom-option:hover {
    background: #f0f0f0;
}

.custom-select.open .custom-options {
    display: flex;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #0073aa;
}

.pagination a:hover,
.pagination span.current {
    background-color: #0073aa;
    color: #fff;
}
.categorias-list {
    display: block;
    padding: 20px;
}

.categoria-item {
    display: flex;

 
    border-radius: 8px;

    transition: transform 0.3s ease;
    margin-bottom: 10px;
}
.categoria-item button {
    background-color: white !important;
    color: #0056b3 !important;
    width: 100%;
    border: none;
    width: 100%;
    cursor: pointer;
    border: 1px solid #0056b3;
    font-weight: 400 !important;
    font-size: 14px;
}

.categoria-item:hover {
    transform: translateY(-5px);
}

.categoria-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.categoria-label {
    font-size: .8em;
}
@media (max-width: 768px) {
    .search-form-custom {
        width: 90%;
        padding: 15px;
    }
    .search-form-container{
        padding: 0;
    }

    .select-category-container,
    .input-search-container {
        width: 100%;
        display: block;
        margin-bottom: 15px;
        border-left: none;
        padding-left: 0;
    }
    .button-search-container {
        width: 100%;
      margin: 0 auto;
      padding: 0;
      
    }

    .input-search-container {
        padding-left: 0;
    }

    .search-form-custom button {
        background-color: #0056b3;
        color: white;
        width: 95%;
        border: none;
        margin-left: 2%;
        cursor: pointer;
        border-radius: 30px;
        font-weight: bold;
        font-size: 20px;
        
    }

    
}