﻿.expandSymbol {
    height: 30px;
    width: 30px;
    background: url('../images/plus.png') no-repeat center center;
    background-size: cover;
    cursor:pointer;
}

.shrinkSymbol {
    height: 30px;
    width: 30px;
    background: url('../images/minus.png') no-repeat center center;
    background-size: cover;
    cursor: pointer;
}
.DataMenuCategoryName {
    text-decoration: none;
    
    font-size: 25px;
    padding: 3px;
    line-height: 40px;
    color: #7a0607;
    font-family: 'Rasa-SemiBold';
}
.category-items {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

    .category-items.hidden {
        max-height: 0;
        padding: 0;
        margin: 0;
    }
.toggleSymbol {
    width: 30px;
    height: 30px;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
  
    cursor: pointer;
}

.category-items.hidden {
    display: none !important;
}
.CategoryListOuter {
    border:2px solid black;
    display:flex;
    flex-wrap:wrap;
}
.CategoryNameLink {
    padding: 10px 18px;
    background-color: #7a0607;
    color: #fff2bb;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    font-family: 'Rasa-SemiBold' !important;
}
    .CategoryNameLink:hover {
        color:beige !important;
    }
.DataMenuItemPrice {
    font-weight:bold;
    color:black;
}
.DataMenuItemDescription {
    font-family: 'Rasa-Light';
    color: #665f5f !important;
}
.DataMenuItemName {
    font-weight: bold;
    font-family:'Rasa-SemiBold';
}
.highlight-item {
    animation: highlightFlash 2s ease;
    background-color: #ef52221c !important;
    border: 2px solid #ef52221c;
    border-radius: 5px;
}
#searchSuggestions {
    z-index:100;
}

@keyframes highlightFlash {
    from {
        background-color: #fff3cd;
    }

    to {
        background-color: #fff;
    }
}
