/* ===== MenuPopup(Sidebar) styling area ^_^ ======================================================== */

.menu_popup{
    width: 18rem;
    max-width: 80vw;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    /* box-shadow: 0 0 20px 1px var(--clr2); */
    box-shadow: 2px 0 5px rgba(255, 255, 255, 0.116);
    transform: translateX(-100%); /* Default hidden */
    opacity: 0; /* Default hidden */
    z-index: 1000; /* Above overlay */
    padding: 1rem;
    border-right: 1px solid rgb(153, 194, 241);
    /* border-top-right-radius: 1.2rem 1.2rem; */
    /* border-bottom-right-radius: 1.2rem 1.2rem; */
    overflow-y: auto;
    -ms-overflow-style: none;  
    overscroll-behavior: contain; /* important */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;  
    font-family: var(--sm_font_13);
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}
.menu_popup.open {
  transform: translateX(0); /* Slide in */
  opacity: 1; /* Fade in */
  scrollbar-width: none; 
}
.menu_popup::-webkit-scrollbar {
    display: none;
}
.X_menuBar{
    background: transparent;
    color:black;
    padding: 5px 10px;
    border:none ;
    border-radius: 5px;
    width: 2.9rem;
    height: 2.2rem;
    position: absolute;
    top: .8rem;
    right: .2rem;
    /* transform: translateX(-50%); */
    cursor: pointer;
}
.X_menuBar:hover{
    color:red;
    cursor: pointer;
    /* box-shadow: inset 0 0 15px 0px var(--clr2); */

}
#X_menuBar_icon{
    font-size: 1.5rem;
    font-weight: 1000;
}
.menuBar_header{
    font-size:2.4rem ;
    font-weight: 1000 ;
    text-align: center;
    max-width: 50vw;
    margin: auto;
    margin-top: 8vh;
    margin-bottom: 10vh;
    color: rgb(22, 168, 253) ;
}
.menuBar_link_box{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 5vh;

    /* position: absolute;
    top: 35%; */
    /* background-color: #62cf74; */
}
.menuBar_link_box .a{
    display: block;
    text-align: center;
    cursor: default;
}
.menuBar_link_box a span{
    font-family: var(--sm_font_2);
}

.menuBar_link_btn{
    padding: .35rem 1rem;
    color: #000000;
    text-align: center;
    border-radius:15px;
    margin:5px 0px;
    width: 80%;
    font-size: 1rem;
    transition: .8s;
    border: 2px solid #ffffff;
    transition: .3s;
    font-weight: 500;   
    background-color: #2dfa9e;
    cursor: pointer;
    
}
.menuBar_link_btn:hover{
    box-shadow: 0 0 15px 1px rgb(199, 199, 199);
    border: 2px solid green;
    cursor: pointer;  
}
#menuBar_link_btn_home{
    box-shadow: 0 0 15px 1px rgb(199, 199, 199);
    border: 2px solid green;
    cursor: pointer;  
}













.dropdownBtn_wraper{
    width: 82%;
    margin: auto;
    margin-top:8vh;
    margin-bottom: 20vh;

}


.menubar_language_menu,
.menubar_QR_menu{
    margin-bottom: 2vh;
    /* text-align: center; */
}
  a.button {
    /* Frame */
    display: inline-block;
    padding: 5px 25px;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;

    
    /* Style */
    /* border: none; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
    background: var(--button-background);
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
  }
  a.button > i{
    color: #000000bd;
  }
  
  a.button:active {
    filter: brightness(75%);
  }
  
  /* Dropdown styles */
  .dropdown {
    position: relative;
    padding: 0;
    margin-right: 1em;
    border: none;
    display: block;

  }
  
  .dropdown summary {
    list-style: none;
    list-style-type: none;
  }
  
  .dropdown > summary::-webkit-details-marker {
    display: none;
  }
  
  .dropdown summary:focus {
    outline: none;
  }
  
  .dropdown summary:focus a.button {
    border: 2px solid white;
  }
  
  .dropdown summary:focus {
    outline: none;
  }
  
  .dropdown ul {
    position: sticky;
    margin: 1px 0 0 0;
    padding: 0px 0;
    width: var(--dropdown-width);
    left: 50%;
    /* margin-left: calc((var(--dropdown-width) / 2)  * -1); */
    box-sizing: border-box;
    border: 2px solid var(--button-background);
    z-index: 2;
    background: var(--dropdown-background);
    border-radius: 6px;
    list-style: none;
    overflow-y: auto;
    margin-bottom: 5vh;
    
  }
  
  .dropdown ul li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #25d1848e;
  }
  .dropdown ul li a{
    text-align: center;
    transition: .2s;
  }
  .dropdown ul li a:link, 
  .dropdown ul li a:visited {
    display: inline-block;
    padding: 10px 0.8rem;
    width: 100%;
    box-sizing: border-box;
    color: #000000;
    text-decoration: none;
  }
  
  .dropdown ul li a:hover {
    background-color: var(--dropdown-highlight);
    /* color: var(--dropdown-background); */
    font-weight: bolder;
  }
  
  /* Dropdown triangle */
  .dropdown ul::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--dropdown-background) transparent;
  }
  
  
  /* Close the dropdown with outside clicks */
  .dropdown > summary::before {
    display: none;
  }
  
  .dropdown[open] > summary::before {
      content: ' ';
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      z-index: 1;
  }
  











.contactOnly,
.languageChange{
    text-align: center;
    font-size: .9rem;
    /* padding: 1rem; */
}
.contactOnly{
    margin-top: 2rem;
    padding-bottom: 1rem;
}
.languageChange{
    padding-top: 0rem;
}
#cO_box{
    display: inline;    

}
#c1_box{
    display: inline;    

}
.menuBar_footer{
    background: transparent;
    /* margin-top: 6rem; */
    margin-bottom: 7vh;
    margin-left: 50%;
    transform: translateX(-50%);
}
.m_f_l_1,
.m_f_l_2{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: .75rem;
    margin: 0 auto;
    color: #000000be;
    font-family: var(--sm_font_13);
}
.m_f_l_p{
    display: inline-block;
    color: #000000a8;

}


































/* ##################################################################### */


:root {
    --button-background: #2dfa9e;
    --button-color: white;
    
    --dropdown-highlight: #25d183;
    --dropdown-background:#2dfa9e;
    --dropdown-color: black;
    --dropdown-width: 80%;
}











