/* Restautant Menu  */

.item.layout-text {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* TAB menu */

.mobile-category_icon {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.mobile-category_icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.mobile-category_icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.mobile-category_icon span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.mobile-category_icon span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.mobile-category_icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}
.mobile-category_icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.mobile-category_icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 8px;
}
.toggle-aib .tabs .tabs-wrap {
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
    display: flex;
}
.toggle-aib .tabs .tab {
    float: left;
    background: white;
    color: #005f40;
    height: auto;
    margin: 3px 5px 3px;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 7px;
    transition: all .3s;
    border: 1px solid #005f40;
    text-transform: uppercase;
}
.toggle-aib .tabs .tab:hover, .toggle-aib .tabs .tab.active {
    color: #ffffff;
    background: #005f40;
    transition: all 0.5s;
}
.toggle-aib .panels {
    padding: 20px 10px;
}
.toggle-aib .panels .panel {
    display: none;
}
.toggle-aib .panels .panel:first-child {
    display: block;
}
/* end tab menu */

.addon-wrap {
    margin-bottom: 25px;
}
.addon-wrap .addon-group, .addon-wrap .content {
    margin-bottom: 10px;
}
.addon-wrap .addon-name {
    font-weight: bold;
    color: #f14c53;
}
.addon-wrap .addon_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px 20px;
}
.addon-wrap .addon_item {
    padding: 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
.addon_item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.addon_item-dots {
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
    z-index: 5;
}
.separator_dots {
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    border-bottom: 1px dashed #000;
}
.addon_item-price, .addon_item-note {
    display: inline-block;
}
.menu_description {
    margin: 0px 24px 15px;
    text-align: center;
    line-height: normal;
}
.items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.item {
    width: calc(50% - 13px);
    display: flex;
}
.item-left {
    margin-right: 15px;
}
.item-image {
    min-width: 100px;
    height: 100px;
    max-width: 100px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #D9DADF;
}
.item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.item-right {
    width: 100%;
}
.item-right .item-header {
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.item-right h6.item-title {
	font-size: 16px;
    font-weight: bold;
    padding-bottom: 0px;
    line-height: normal;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.item-right span.item-price {
    margin-left: 15px;
    font-weight: bold;
    color: #e29e3b;
    font-size: 16px;
	background: #ffca06;
	padding: 2px 10px;
	border-radius: 5px;
}
.item-right .item-price span.item-note {
    color: #000;
}
.item-right .item-badges {
    display: flex;
}
.item-right .item-badges .badge-icon {
    line-height: normal;
    margin-right: 5px;
}
.item-right .item-badges .badge-icon:last-child {
    margin-right: 0px;
}
.item-right .item-badges .badge-icon img {
    width: 25px;
}
.item-option {
    border-bottom: 1px dashed #D9DADF;
    padding: 5px 0px;
}
.item-option-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
h6.item-option-name {
    padding-bottom: 0px;
    display: flex;
    align-items: center;
	font-weight: normal; 
	text-transform: capitalize;
    letter-spacing: 0px;
}
.item-option-price {
    line-height: normal;
    font-weight: bold;
    color: #333;
	background: #ffca06;
	padding: 2px 10px;
	border-radius: 5px;
}
.item-option-badges {
    display: flex;
    margin-left: 8px;
}
.item-option-badges .badge-icon {
    float: left;
    margin-right: 5px;
}
.item-option-badges .badge-icon:last-child {
    margin-right: 0px;
}
.item-option-badges img {
    width: 25px;
}
@media only screen and (min-width: 981px) {
    .toggle-aib .tabs {
        display: block !important;
    }
    .mobile-category {
        display: none;
    }
}
@media only screen and (max-width: 980px) {
    .filterable-category {
        position: relative;
    }
    .toggle-aib .tabs {
        display: none;
        position: absolute;
        background: #fff;
        width: 100%;
        padding: 15px 10px;
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .toggle-aib .tabs .tabs-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 5px;
        background: #fff;
        overflow: auto;
        min-height: 150px;
    }
    .toggle-aib .tabs .tab {
        font-size: 14px;
        width: 100%;
        margin: 0px;
        border-radius: 0px;
    }
    .mobile-category {
        background: #000;
        color: #fff;
        padding: 5px 40px 5px 10px;
        border-radius: 3px;
        font-size: 14px;
        cursor: pointer;
    }
    .mobile-category_icon-wrap {
        position: absolute;
        right: 10px;
        top: 8px;
    }
    .item {
        width: 100%;
    }
    .item-right .item-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .item-caption {
        font-size: 14px;
        line-height: normal;
    }
    .item-right span.item-price {
        font-size: 14px;
        margin-left: 0px;
    }
    .item-option-price {
        font-size: 14px;
    }
}
@media only screen and (max-width: 768px) {
    .toggle-aib .tabs .tab {
        text-align: center;
    }
    .menu_description {
        margin: 0px 0px 15px;
    }
}
@media only screen and (max-width: 480px) {
    .toggle-aib .tabs .tabs-wrap {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .toggle-aib .tabs .tab.active {
        font-weight: normal;
    }
    .addon-wrap .addon_items {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .item-image {
        min-width: 70px;
        height: 70px;
        max-width: 70px;
    }
    .item-caption {
        font-size: 12px;
    }
}
/* End Restaurant Menu  */
