
.search-container
{
    width: 50%;
    border: 2px solid black;
    position: absolute;
    z-index: 20;
    left: calc(( 100% - 50%)/2 );
    margin: 2rem;
    
    padding: 1em 1em 1em 1em;
    border-radius: 15px;
    
    background-color:#f8f9fc;
    border: none;
    border-radius: 1em;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
}

.search-result-container:hover
{
    border: 1px solid rgba(0, 0, 0, 0.452);
    border-radius: 1em;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.411);
}


.search-result-container
{
    background-color: white;
    vertical-align: middle;
    padding: 0.5em 0.5em 0.5em 0.5em;
    border: none;
    border-radius: 1em;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5em;
}

.result-image
{
    width: 125px;
    height: 125px;
    display: inline-block;
    vertical-align: top;

}


.result-meta-container
{
    margin-left: 1em;
    display: inline-block;
    max-width: calc(100% - 125px - 2em);
    max-height: 125px;
    overflow-y: hidden;
    vertical-align: top;
}

