








.header {
    margin: 15px 0 0 15px;
}

.header:first-child {
    margin-top: 0;
}



.form {
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.form img {
    cursor: pointer;
}

.input {
    width: calc(100% - 50px);
    height: 40px;
    padding-left: 10px;
    
    background-color: white;

    display: flex;
    align-items: center;
}

.suggContainer {
    width: 100%;
    height: 40px;

    background-color: rgb(245, 245, 245);

    display: none;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow: auto;
}

.suggContainer p {
    width: auto;
    height: auto;
    margin-left: 10px;

    background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;

}









@media (min-width: 1350px) {
    .focusedHeader {
        opacity: 1;
        font-size: 32pt;
    }
}

@media (max-width: 1350px) {

    #filterSection {
        justify-content: center;
    }

    .focusedHeader {
        opacity: 1;
        font-size: 16pt;
    }


}



.focusedForm{
    opacity: 1;
    border-bottom: 3px solid var(--accentColor);
}




.unFocusedHeader {
    opacity: 0.75;
    font-size: 16pt;
}

.unFocusedForm{
    opacity: 1;
    border-bottom: 3px solid #3e3e3eb0;
}




.disabledHeader {
    opacity: 0.25;
    font-size: 16pt;
}

.disabledForm{
    opacity: 0.5;
    border-bottom: 3px solid #3e3e3eb0;
}




#searchButt {
    margin-top: 30px;
    width: 100%;
    height: 43px;

    color: white;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

.disabledButt {
    opacity: 0.25;
    background-color: var(--fontColor);

}

.enabledButt {
    opacity: 1;
    background-color: var(--accentColor);
}