.hide_section{
    display:none!important;
}

#loading_gif {
    width: 100vw;
    height: 100vh;
    background: rgba(10,39,64,0.7);
    position: fixed;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading_gif img {
    z-index: 999999999;
    width: 280px; /* Adjust size as needed */
    animation: pulseLogo 2s ease-in-out infinite; /* Apply pulse animation */
}

/* WORK HOURS CUSTOMIZATION */
#hours_inner_container{
    padding-top:1rem;
    padding-bottom:2rem;
    display:flex;
    height:fit-content;
}
/* END OF WORK HOURS CUSTOMIZATION */

/* NEW MENU APPEARANCE */
.menu_container{
    max-width:96%;
}
.categories_container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    flex-direction:row;
}
.categories_column{
    padding-right:0;
    padding-left:0;
}
.category_item{
    padding-right:0;
    padding-left:0;
    margin-bottom:8px;
}
.category_card , .item_card , .menu_card{
    padding:0.5rem 1rem;
    cursor:pointer;
}
.category_card:hover , .item_card:hover , .menu_card:hover{
    /* background-color:#e0e4ff; */
    background-color:rgba(224,228,255,0.5);
}
.category_card.selected_card , .item_card.selected_card{
    background-color:rgba(224,228,255,0.5);
}
/* .category_card.selected_card:hover{
    background-color:white;
} */
.category_item_title , .item_item_title , .menu_item_title{
    display:flex;
    flex-direction:row;
    align-items:center;
}
.category_item_title button , .item_item_title button .menu_item_title button{
    padding-left:0;
    height:30px;
    border:none;
}
.category_item_title a:hover , .item_item_title a:hover , .menu_item_title a:hover{
    text-decoration:none;
}
.category_expand , .item_expand{
    font-size:16px;
    height:30px;
}

.item_price_container{
    min-width:32px;
    text-align:center;
}
.item_list_last_column{
    width:20%;
    justify-content:space-between;
}
.first_column_pagination .results_text{
    flex-wrap:wrap!important;
    justify-content:center!important;
}
.first_column_pagination .results_text ul{
    margin-top:0.5rem!important;
}
/* END OF NEW MENU APPEARANCE */

/* MENU APPEARANCE STORE PAGE */

.menu_outter_container {
    padding-left:30px;
    /* padding-right:30px; */
    margin-bottom:30px;
}
.menu_item_image , .category_item_image , .item_item_image{
    width:50px;
    height:50px;
    object-fit:cover;
    overflow:hidden;
    margin-right:0.75rem;
    border-radius:10px;
}
.category_item_image , .item_item_image{
    width:40px;
    height:40px;
}
.menu_card{
    padding:0.7rem;
    cursor:pointer;
}

/* END OF MENU APPEARANCE STORE PAGE */

/* HOVER HELPING TEXT */

.tooltip_custom {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
    
  .tooltip-text_custom {
    visibility: hidden;
    /* width: 150px; */
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    /* padding: 5px; */
    padding:1% 25%;
    position: absolute;
    /* bottom: 125%; */
    bottom:110%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
  }
    
  .tooltip_custom:hover .tooltip-text_custom {
    visibility: visible;
    opacity: 1;
  }
  
  /* END OF HOVER HELPING TEXT */

  .menu_card::before , .category_card::before , .item_card::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0 solid transparent;
    border-top-right-radius: 0.3rem;
  }
  .menu_card.menu_enabled::before , .category_card.category_enabled::before , .item_card.item_enabled::before{
    border-top: 3px solid #03C03C;
    border-right: 3px solid #03C03C;
  }

  .menu_card.menu_not_enabled::before , .category_card.category_not_enabled::before , .item_card.item_not_enabled::before{
    border-top: 3px solid red;
    border-right: 3px solid red;
  }

  .category_card.category_enabled::before , .category_card.category_not_enabled::before , .item_card.item_enabled::before , .item_card.item_not_enabled::before{
    width:25px;
    height:25px;
  }


  /* TRANSLATIONS */
.translations_container{
    display:flex;
    flex-direction:column;
    padding-top:0.5rem;
    padding-bottom:0.5rem;
    gap:0.75rem;
}

.translation_language_container{
    border:1px solid #deeaf2;
    border-radius:0.3rem;
    background-color:white;

    padding:var(--input-padding-y) calc(3* var(--input-padding-x)) var(--input-padding-y) var(--input-padding-x);

    cursor:pointer;
}

.translation_language_container:hover{
    background-color:#deeaf2;
}

.translation_language_container.first_language{
    background-color:#deeaf2;
    cursor:default;
}

/* END OF TRANSLATIONS */

/* LANGUAGE SWITCHER */
#language_switcher .current_language{
    position:relative;
    width:80px;
    margin-left:10px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    font-size:24px;
}
#language_switcher .current_language::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: solid #333;
    border-width: 2px 2px 0 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(135deg);
}

#language_switcher .other_languages_container{
    display:flex;
    flex-direction:column;
    position:absolute;
    z-index:100000;
}
#language_switcher .other_languages_container > div.other_language{
    margin-left:10px;
    width:80px;
    display:flex;
    justify-content:center;
    cursor:pointer;
    font-size:24px;
}
/* END OF LANGUAGE SWITCHER */



/* ALLERGIES */
#allergies_whole_container{
    padding-bottom:1rem;
}
#allergies_label{
    width:100%;
    border: 1px solid #deeaf2;
    border-radius: 0.3rem;
    background-color: white;
    padding: var(--input-padding-y) calc(3* var(--input-padding-x)) var(--input-padding-y) var(--input-padding-x);
    cursor: pointer;
}
#allergies_label:hover{
    background-color:#deeaf2;
}

.all_allergies_inner_container{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    padding-top:1rem;
}
.all_allergies_first_column , .all_allergies_second_column{
    width:50%;
}
.allergy_container{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:0.5rem;
    margin-bottom:0.5rem;
    flex-wrap:nowrap;
    padding:0.5rem 0;
}
.allergy_container > label{
    margin-bottom:0;
    width:100%;
}

.allergy_container input[type="checkbox"]{
    width:22px;
    height:22px;
    accent-color: #667FEA; /* Changes the default check color */
}


.user_allergy_image_container {
    position: relative;
    display: inline-block;
}

.user_allergy_image_container img {
    display: block;
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
}

.user_allergy_image_container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid black;
    transform: translate(-50%, -50%);
}

.user_allergy_image_container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 115%;
    height: 1px;
    background-color: black;
    transform: rotate(-45deg);
}


.user_allergy_menu_image_container{
    position: relative;
    display: inline-block;
}

.user_allergy_menu_image_container img {
    display: block;
    width: 24px; /* Adjust as needed */
    height: 24px; /* Adjust as needed */
}

.user_allergy_menu_image_container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid black;
    transform: translate(-50%, -50%);
}

.user_allergy_menu_image_container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 115%;
    height: 1px;
    background-color: black;
    transform: rotate(-45deg);
}

/* END OF ALLERGIES */