.unidades-main-container {
    background-color: #85DAB6;

    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 2rem 10rem;

    /* & > * {
        margin-top: 5rem;
    } */

    @media screen and (max-width: 1400px) {
        flex-direction: column;
    }

    @media screen and (max-width: 1000px) {
        padding: 2rem 2rem;
    }
}

.unidades-wrapper {
    margin-top: 5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 600px;
    min-width: 450px;

    @media screen and (max-width: 700px){
        width: 320px;
        min-width: auto;
        margin: 0;
    }
}

.unidades-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;

    color: #000;

    margin-bottom: 3rem;

    @media screen and (max-width: 700px){
        font-size: 1.5rem;
    }
}

.unidades-search-container {
    position: relative;
    height: 46px;
}

.unidades-search-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgb(223, 225, 229);
    border-radius: 8px;
    background-color: rgb(230, 230, 230);
    color: rgb(85, 85, 85);
    font-size: 16px;
    font-family: Poppins;
    z-index: 0;
}

.unidades-search-wrapper-div-1 {
    min-height: 44px;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.unidades-search-icon {
    flex-shrink: 0;
    margin: 0px 0px 0px 16px;
    fill: grey;
}

.unidades-search-input {
    width: 100%;
    padding: 0px 0px 0px 13px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    font-size: inherit;
    font-family: inherit;
    color: rgb(85, 85, 85);

    @media screen and (max-width: 700px) {
        font-size: 12.5px;
        padding: 0px;
    }
}

.unidades-search:hover {
    background-color: "#E0E0E0";
}

.search-input {
    width: 100%;
    padding: 0px 0px 0px 13px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    font-size: inherit;
    font-family: inherit;
    color: rgb(85, 85, 85);
}

.unidades-search-clear-icon {
    margin: 3px 14px 0px 0px;
    fill: grey;
}

.unidades-image {
    margin-top: 5rem;
    margin-left: 5rem;

    @media screen and (max-width: 1400px) {
        margin-left: 0;
    }
    
    @media screen and (max-width: 700px){
        display: none;
    }
}

.unidades-results-container {
    padding: 5rem;

    @media screen and (max-width: 700px){
        padding: 1rem;
    }
}

.unidades-results-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #168C5A;
    margin-bottom: 3rem;

    @media screen and (max-width: 700px){
        font-size: 1.5rem;
    }
}

.unidades-results-container-list {
    list-style-type: none;
    margin: 0px;
    padding: 0px 0px 16px;
}

.unidades-results-container-list > li {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 4px 0px;
}

.unidades-results-container-list > li:hover {
    background-color: rgb(224, 224, 224);
}

.unidades-results-container-list > li > svg {
    flex-shrink: 0;
    margin: 0px 0px 0px 16px;
    fill: grey;
    width: 20;
    height: 20;
}

.ellipsis {
    margin-left: 13px;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

     @media screen and (max-width: 700px) {
        font-size: 12.7px;
    }
}

.unidades-results-title {
    color: #168C5A;
}

.unidades-results-wrapper {
    background-color: #E6E6E6;
    border-radius: 8px;
}

.unidades-vet-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unidades-vet-details > p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;

    padding: 1.25rem 1rem;

    @media screen and (max-width: 700px){
        font-size: .75rem;
    }
}

.unidades-vet-details > button {
    background-color: #F28E1F;
  
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;

    color: #FAFAFA;

    border: none;
    border-radius: 8px;

    padding: .2rem 1.25rem;
    margin: 0 .5rem;

    cursor: pointer;

    @media screen and (max-width: 700px){
        font-size: .75rem;
    }
}