.d-flex {
    display: flex;
}
.j-c-between {
    justify-content: space-between;
}
.f-d-column {
    flex-direction: column;
}
.f-w-w {
    flex-wrap: wrap;
}
.a-i-c {
    align-items: center;
}
.g {
    gap: 1rem;
}

.w-40 {
    width: 45% !important;
}
.p-top {
    padding-top: 1rem;
}
.m-top {
    margin-top: 1rem;
}
/* Estilização da lista de sugestões */
.suggestions {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    max-height: 10rem;
    overflow-y: scroll;
    border-radius: 10px;
    position: absolute;
    top: 133px;
    width: 90%;
    background-color: #f1f1f1;
    z-index: 99;
}
.ContainerImageLogo {
    height: 2.5rem;
}
.w-100 {
    width: 100%;
}
.LineStyle {
    display: flex;
    gap: 1rem;
    flex: 1;
    padding: 1rem 0.5rem;
}

.ContainerList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 1rem 2rem;
    margin-bottom: 15px;
}
.ContainerButtonMobile {
    border-radius: 3px;
    padding: 1px !important;
    font-size: 34px !important;
    /* display: flex; */
    /* border: solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1200px) {
    .w-100 {
        width: 100% !important;
    }
}

@media screen and (max-width: 900px) {
    .ContainerHeaderMobile {
        font-size: 12px !important;
    }
    .ContainerList {
        padding: 0px;
        margin-bottom: 0px;
    }
    .ContainerButtonMobile {
        border-radius: 3px;
        padding: 1px !important;
        font-size: 34px !important;
        /* display: flex; */
        /* border: solid red; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .avatar {
        font-size: 12px !important;
    }
    .LineStyle {
        padding: 0.5rem;
    }
}
