:root {
  --active_icon_highlight_color: #fff;      
  --active_icon_background_color: #82c5d5;   
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;
    overflow: hidden;
    background-size: cover;
}

.menu-container {
    width: 80%;
    overflow-x: auto;
    position: relative;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    top: 200px;
    outline: none;
    -webkit-overflow-scrolling: touch; /* For good measure */
}

.menu-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.arrow-left{
    /*background: url('img/icons/arrow-left.svg');*/
    position: absolute;
    /*left: 15px;
    bottom: 240px;*/
    bottom: 240px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: all 2s ease;
}

.arrow-left img{
    height: 100px;
}

.arrow-right{
    /*background: url('img/icons/arrow-right.svg');*/
    position: absolute;
    /*right: 15px;
    bottom: 240px;*/
    bottom: 240px;
    right: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: all 2s ease;
}

.arrow-right img{
    height: 100px;
}


.menu {
    display: flex;
    align-items: center;
    width: max-content;
}

.menu-item {
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 100px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s, opacity 0.3s;
    
    nav-right: auto;
  nav-left: auto;
}

.menu-item .img-wrapper{
    height: 100px;
    width: 100px;
    padding: 30px 30px;
    color: white;
    border-radius: 80px;
    border: 1px solid white;
    position: relative;
}

.menu-item .img-wrapper img{
    cursor: pointer;
    text-align: center;
    width: 100px;
    user-select: none;
}

.menu-item .img-wrapper .img-tint{
    background: black;
    opacity: 0.5;
    height: 100px;
    width: 100px;
    padding: 30px 30px;
    color: white;
    border-radius: 80px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item p{
    font-family: Candara;
    font-size: 50px;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.menu-item.active .img-wrapper .img-tint{
    background: none;
    opacity: 1;
}

.menu-item:focus {
    outline: none;
}

.menu-item.active {
    transform: scale(1.1);
    outline: none;
}

.spacer {
    flex: 0 0 auto;
    height: 1px;
}




  
  
.svg-icon {
    width: 100px;
    height: 100px;
    background-color: white;
    /*-webkit-mask: url('dine.svg') no-repeat center;
    mask: url('dine.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;*/
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.svg-icon:hover {
    background-color: #82c5d5;  /* #e91 */
}

.menu-item.active .svg-icon{
    background-color: var(--active_icon_background_color);  /* #e91 */
}
.menu-item.active .img-wrapper{
    /*border: 1px solid #e91e63;*/
    background: white;
    transform: scale(1.3);
    transform-origin: center center;
    box-shadow: 0px 0px 15px var(--active_icon_highlight_color);      /* #e91 */
}





.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  
  height: 50px;
  position: fixed;
  bottom: 0px;
  
}

.marquee-tint{
    height: 50px;
    width: 100%;
    background: black;
    opacity: 0.5;
    position: absolute;
}

.marquee-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 100%;
    font-size: 30px;
    line-height: 50px;
    color: #dfdddd;
    font-family: Candara;
}





/* Hidden initially */
.hidden {
  opacity: 0;
  transform: translateY(-20px);
}

/* Fade-in from top */
.fade-in-top {
  animation: fadeInTop 1s ease forwards;
}

/* Fade-in from bottom */
.fade-in-bottom {
  animation: fadeInBottom 1s ease forwards;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.menu-item.pop-in {
  animation: popIn 0.4s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}






.main-iframe{
    border: none;
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
}