﻿.SearchBarContainer {
    margin:0.8rem auto 0.8rem auto;

    width: 100%;
    min-width: 300px;
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}



.SearchBarBodyContainer {
    width: 100%;
    /height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}



.SearchBarTextBoxContainer {
    width: 95%;
    max-width: 500px;
    min-width: 300px;

    border: 2px solid grey;
    border-radius: 25px;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    padding: 0.3rem;
}

.SearchBarSearchTextBox {
    width: 90%;
    height: 1.5rem;
    min-width: 240px;

    text-align: center;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.SearchBarSearchTextBox:focus {
    border: none;
    outline: none;
}



.SearchBarDDownContainer {
    width: 90%;
    max-width: 550px;
    min-width: 300px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;

    margin: 0.8rem 0;
}

.SearchTextBoxZip {
    width: 45%;
    min-width: 100px;
    max-width: 150px;
    height: 1.5rem;
    text-align: center;
    border: none;
    border-bottom: 2px solid black;
}

.SearchTextBoxZip:focus {
    outline: none;
}

.SearchBarDropDownText {
    width: 45%;
    min-width: 100px;
    max-width: 150px;
    height: 1.8rem;

    border-radius: 3px;

    text-align: center;
    border: none;
    border-bottom: 2px solid black; 
}



.SearchBarLinkButtonContainer {
    padding: 0.4rem 0;
}

.SearchBarContainerLink {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
}

.SearchBarContainerLink:hover {
    color: #a7a2a2;
}

.SearchBarContainerLink:active {
    color: #866e73;

    transform: scale(1.05, 1.05);
}

.SearchBarContainerLinkButton {
    padding: 0.4rem 3.8rem;
    border-radius: 1rem;
    background-color: #727272;
    background-color: lawngreen;
}

#SearchBarLinkButton {
    text-decoration: none;
}


