/* header_container.module.css */
.header_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    padding: 0 1.2em;
    grid-area: head;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 #dcdcdc;
}

.header_options {
    display: flex;
    width: fit-content;
    place-content: center;
    place-items: center;
}

/* button_action_sale.module.css */
.button_action_sale {
    align-items: center;
    border-radius: 200px;
    border: 0;
    box-shadow: var(--box-shadow-sm);
    column-gap: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin-left: 30px;
    padding: 8px 12px;
    position: relative;
    transition: background-color 0.3s ease-in-out;
    width: max-content;
}

.button_action_sale .info-sales {
    margin-left: 6px;
    text-align: left;
    transition: background-color 0.3s ease-in-out;
    white-space: nowrap;
}

.modal-content {
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 992px) {
    .header_container {
        padding: 0 0.2em;
    }
}