#shop_row
{
    clear: both;
    width: 100%;
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
}
#shop_label
{
    float: none;
    width: 100%;
    display: block;
    text-align: left;
}
#shop_input
{
    float: none;
    width: 90%;
    display: block;
}
#shop_memo
{
    font-size: var(--font-small); 
    ___font-style: italic;
    margin-left: 10px;
}
.shop_button
{
    color: var(--menu-fg-color);
    background-color: var(--menu-bg-color);
    padding: 10px;
    display: inline-block;
}
#shop_ID
{
    display: none;
}
#shop_date
{
    position: relative;
    display: block;
}
#shop_subtitle
{
    color: var(--menu-bg-color);
    background-color: var(--main-bg-color);
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: var(--std-font-size);
    display: block;
    outline: 1px solid var(--menu-bg-color);
    text-align: center;
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: bold;
    clear: both;
}
#shop_highlight
{
    color: var(--menu-bg-color);
    background-color: var(--main-bg-color);
    font-weight: bold;
}

@media (min-width: 700px) 
{
    #shop_label
    {
        float: left;
        width: 30%;
        text-align: right;
    }
    #shop_input
    {
        float: left;
        width: 70%;
    }
}

