.go_do_buttons {
    display: flex;
    flex-wrap: wrap;
}
.businessTab {
    border-bottom: 1px solid white;
}
.all .businessTab:last-child {
    border-bottom: none;
}
.businessDiv .businessTab:last-child {
    border-bottom: none;
}
.businessDiv {
    border-bottom: 1px solid white;
    position: relative;
}
.businessDiv:last-child {
    border-bottom: none;
}
.businessTab .branches {
    display: flex;
    flex-wrap: wrap;
}
.bizOptions {
    flex: 7;
}
.nameBusiness {
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: purple;
    font-weight: bold;
}
.businessDetails{
    position: absolute;
    z-index: 10;
    bottom: 0px;
    left: 0px;
}
.businessCard {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to top right, honeydew, white);
    margin-bottom: 5px;
}
.businessCard:hover {
    background: honeydew;
}
.bNamePlaceDescr {
    flex: 7;
}
.businessImage {
    flex: 3;
    padding-right: 10px
}
@media(max-width: 768px) {
    .businessImage img {
        width: 100%;
    }
}
@media(min-width: 768px) {
    .businessImage img {
        width: 70%;
    }
}
.businessLocation {
    background: chartreuse;
    padding: 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
}
.bDescription {
    max-height: 300px;
    overflow: auto;
}

.shopHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: chartreuse;
    padding: 10px;
}
@media(min-width: 768px) {
    .shopHead {
        position: sticky;
        top: 100px;
        z-index: 100;
    }
}