.header2 {
    padding: 30px 0;
    padding-left: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 80px;
    width: 100%;
}

.header2 .container {
    width: 990px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0 20px;
    padding: 0;
}

.header2 .logo {
    width: 296px;
    height: 80px;
}

.header2 .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    justify-content: flex-end;
    width: 100%;
    column-gap: 50px;
}

.header2 .search-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#showSearch {
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #006393;
}

#showSearch i {
    font-size: 18px;
    width: 38px;
}

#showSearch:hover {
    background: #313131;
    background: #777;
    color: #313131;
    background: #08c;
    background: #006393;
    color: #fff;
    /* filter: none; */
}

#showSearch {
    background: none;
    font-size: 13px;
    height: 38px;
    border-radius: 20px;
}

#showSearch.visible {
    display: none;
}

#showSearch.hidden {
    display: none;
}

#formSearch {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#formSearch.static {
    display: flex;
    position: static;
}

#formSearch.absolute {
    display: flex;
    position: fixed;
    left: 10px;
    top: 60px;
    filter: opacity(90%);
    z-index: 90;
}

#formSearch input {
    color: #ddd;
    background: #006393;
    font-family: Arial;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 20px 0 0 20px;
    width: 350px;
    height: 38px;
}

#formSearch input::placeholder {
    color: #ddd;
}

#formSearch button {
    background: #006393;
    border-radius: 0 20px 20px 0;
    padding: 10px 15px;
    font-size: 13px;
    font-family: Arial;
    height: 38px;
}

#formSearch i {
    color: #fff;
}

.cart {
    font-size: 32px;
}

.cart i {
    color: #006393;
    z-index: 1;
}

.cart .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    font-size: 14px;
    color: white;
    font-weight: 800;
    z-index: 2;
    top: 8px;
}

@media (max-width: 990px) {
    .header2 .logo {
        width: 186px;
        height: 50px;
    }

    .header2 .actions {
        column-gap: 20px;
    }

    /*.header2 .search-container {
    }*/
}

@media (max-width: 766px) {
    .header2 .actions {
        column-gap: 5px;
    } 

    #formSearch input {
        width: 250px;
    }
}

@media (max-width: 640px) {
    #showSearch.visible {
        display: flex;
    }

    #formSearch.static {
        display: none;
    }
}

@media (max-width: 380px) {

    .header2 .container {
        flex-direction: column;
    }
}
