﻿html, body {
    padding:0;
    margin:0;
    font-size:10pt;
    font-family:Arial;
    color:#606060;

}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.topdiv {
    border: none 1px red;
    min-height: 70px;
    display: grid;
    grid-template-columns: 50px 1fr 50px 50px; /* Col 1: 200px, Col 2: 1 part, Col 3: 2 parts */
    gap: 10px;
    padding-right: 10px;
    background-color: #0d6efd;
    color: #ffffff;
    /*border-bottom:solid 2px #dddddd;*/
}

.company {
    text-align: center;
    padding: 10px;
}



.logo {
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 70px;
    height: 70px;
    line-height: 60px;
    /*border:solid 1px green;*/
    color: #ffffff;
    background-image: url(../logos/logo2_320.png);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 5px center;
}

.searchbox {
    padding: 5px;
    border: none 1px red;
    height: 38px;
    line-height: 38px;
    width: 100%; /*calc(100% - 10px);*/
    /*width:95%;*/
    /*margin:0 5px;*/
}

    .searchbox:focus {
        outline: hidden;
    }

.topbox {
    border: solid 1px #cccccc;
    border-radius: 5px;
    height: 40px;
    margin-top: 10px;
}

.topbox_cart {
    border: solid 1px #cccccc;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    text-align: center;
}

.topbox_60 {
    border: none 1px #cccccc;
    border-radius: 5px;
    height: 60px;
    text-align: center;
    color: #ffffff;
    /*margin-top: 10px;*/
    white-space: nowrap; /* Prevents text from wrapping to a second line */
    overflow: hidden;
    line-height: 60px;
    font-size: 1.5em;
    font-weight: bold;
}

.find_btn {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 70px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    background-color: forestgreen;
}

.cat_label {
    height: 35px;
    line-height: 35px;
    width: 100%;
    padding-left: 5px;
    /*background-color:yellow;*/
    background-image: url(../logos/down_arrow_light_gray_30_15.png);
    background-repeat: no-repeat;
    background-size: 20px 8px;
    background-position: right 3px center;
}

.menu {
    padding-top: 40px;
    cursor: pointer;
    background-image: url(../logos/menu_icon_40_w.png);
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: center center;
}



.cart {
    text-align: center;
    color: #ffffff;
}

.badge {
    /*background: #3498db;*/
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    vertical-align: top;
    margin-left: -8px;
}

.badge2 {
    position: relative;
    top: -10px;
    left: 5px;
    background-color: red;
    color: #ffffff;
}

.test {
    display: none;
}

.fish {
    background-image: url(../logos/fish_50.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 3px center;
}

.meat {
    background-image: url(../logos/meat2_50.png?123);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 3px center;
}
.fishnmeat {
    background-image: url(../logos/fnm_50.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 3px center;
}

@media (max-width: 768px) {
    .test {
        display: block;
    }

    .topbox_60 {
        font-weight: normal;
        color: #ffffff;
    }

    .topdiv {
        border: none 1px red;
        min-height: 70px;
        display: grid;
        grid-template-columns: 50px 1fr 50px 50px; /* Col 1: 200px, Col 2: 1 part, Col 3: 2 parts */
        gap: 10px;
        padding-right: 10px;
        background-color: #0d6efd;
        color: #ffffff;
        /*border-bottom:solid 2px #dddddd;*/
    }

    
}