.menu-page{
    -webkit-transform: none !important; /* Safari and Chrome */
       -moz-transform: none !important; /* Firefox */
        -ms-transform: none !important; /* IE 9 */
         -o-transform: none !important; /* Opera */
            transform: none !important;
}

/* ITEM LIST */
@media (max-width: 325px){
    .custom_content {
        margin: 0px 10px -20px 10px!important;
    }
    .item_short_description{ margin-top:20px;}
}
@media (min-width: 325px){
    .custom_content {
        margin: 0px 10px -20px 10px!important;
    }
    .item_short_description{ margin-top:0px;}
}

.custom_content {
    margin: 0px 10px -20px 10px!important;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 99;
}

.section_page_title{
    text-align:center;
    margin-bottom: 20px;
}

/*ITEM DETAILED DESCRIPTION AND PHOTO STYLE*/
@media (max-width: 325px){
    .description-box{
        position:fixed; top:10% !important; left:1%; z-index: 99999;
        width: 90vw;
        height: 75vh;
    }
}
@media (min-width: 325px){
    .description-box{
        position:fixed; top:10% !important; left:2%; z-index: 99999;
        max-width: 90vw;
        max-height: 80vh;
        width: 90vw;
        height: 75vh;
    }
}

.item_description_hidden{display: none;}
.item_description_visible{display: inline-block; }

.description_close_icon:hover{
  cursor: pointer;
}

.description-box{
    padding: 0px;
    overflow: auto !important;
}

.description_item_content{padding: 12px;}

/*ANIMATION*/
/*fadeIn*/
.fadeIn {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
 }

 @-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: .30;}
 }

 @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: .30;}
 }

 .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
 }

 /*fadeOut*/
 .fadeOut {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
 }

 @-webkit-keyframes fadeOut {
    0% {opacity: .30;}
    100% {opacity: 0;}
 }

 @keyframes fadeOut {
    0% {opacity: .30;}
    100% {opacity: 0;}
 }

 .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
 }

 /*slideTop*/
.slideTop {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-top {
    0% {
        top:50%;
    }
    100% {
        top:7%;
    }
}
@keyframes slide-top {
    0% {
        top:50%;
    }
    100% {
        top:7%;
    }
}

/*slideBottom*/
.slideBottom {
	-webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-bottom {
    0% {
        top:7%;
    }
    100% {
        top:50%;
    }
}
@keyframes slide-bottom {
    0% {
        top:7%;
    }
    100% {
        top:50%;
    }
}

/*Accordion content*/
.accordion-content{
    padding-left: 12px;
    padding-right: 12px;
}

.accordion-style-2 a{
  padding:0 !important;
  line-height: 24px !important;
}

/*Option list*/
.option-list-item{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0px;
    border-bottom: 1px solid lightgrey;
}

.option-list-item-price{
    color:grey;
}

.option-list-item-name{
    font-size: 16px;
}

.option-list-item a{
    text-align: right;
}

/*Buttons styles*/
.hover_light_grey:hover{
    background-color: grey !important;
    color: white !important;
}

/*Item zoomable image*/
.item-image-container
{
     height: 200px;
     overflow: hidden;
}
.item-image-zoomable
{
     height: 100%;
     width: 100%;
     transition: all 0.5s ease;
}
.item-image-zoomable:hover
{
     transform: scale(1.5);
}

/*CATEGORY LIST*/
.category-list a span{
    margin:0px !important;
}

.category-outer-div
{
     height: 150px;
     overflow: hidden;
     border-radius: 10px;
     margin-bottom:15px;
}
.category-inner-div
{
     height: 100%;
     width: 100%;
     background-size: cover;
     background-position: center;
     transition: all 0.5s ease;

}
.category-inner-div:hover
{
     transform: scale(1.2);
}

.category-inner-div-hoverlay {
    position: absolute;
    display:flex; align-items:center; justify-content:center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  .category-inner-text{
    font-size:28px !important;
    color:white !important;
    max-width: 256px !important;
    line-height:32px !important;
    text-align:center !important;
  }

  .category-inner-flag{
     position: relative !important;
     margin-top: -70px;
     margin-left: 0px;
  }
