@media (min-width: 1024px) {
  .menuPanel {
    position: fixed;
    transition: 1s;
    bottom: -40vh;
    right: -160px;
    z-index: 10;
    padding: 10px 10px 10px 10px;
    opacity: 0;
  }
  .menuPanel .indicator {
    width: 60px;
    height: 60px;
    margin-bottom: 3em;
    stroke: #8e8b93;
    stroke-width: 1.5px;
    padding: 10px;
    border-radius: 100%;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    position: relative;
    margin-left: auto;
    margin-right: 1em;
    transition: 1s;
    right: 0;
    opacity: 1;
  }
  .menuPanel .indicator::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 3px solid rgba(203, 199, 209, 0.25);
    animation-name: breathing;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    border-radius: 100%;
    transition: border-color 1s;
  }
  .menuPanel .scrollContainer {
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    width: 80px;
    padding-right: 100px;
  }
  .menuPanel .scrollContainer a {
    border: 3px solid rgba(203, 199, 209, 0.1);
    margin: 2px;
    padding: 2vh 1em;
    width: 20vw;
    height: 2.5vh;
    background-image: linear-gradient(to left, rgba(94, 43, 255, 0.5), transparent);
    overflow: hidden;
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 300;
    letter-spacing: 0.1em;
    transform: translateX(0);
    opacity: 0;
    transition: 1s;
    will-change: transform, backdrop-filter;
  }
  .menuPanel .scrollContainer a:hover {
    transform: translateX(-5vw);
  }
  .menuPanel .scrollContainer a:first-of-type {
    border-radius: 15px 0 0 0;
  }
  .menuPanel .scrollContainer a:last-of-type {
    border-radius: 0 0 0 15px;
  }
  .menuPanel:hover {
    bottom: 0;
  }
  .menuPanel:hover .indicator {
    right: -80px;
    opacity: 0;
  }
  .menuPanel:hover .indicator::after {
    border-color: rgba(203, 199, 209, 0.7);
  }
  .menuPanel:hover .container a {
    opacity: 1;
  }
  .menuPanel.visible {
    opacity: 1; /* Pop-up into view */
    right: 0;
  }
}
@media (max-width: 1024px) {
  .menuPanel {
    position: fixed;
    z-index: 100;
    height: 60vh;
    left: 0;
    right: 0;
    bottom: calc(-60vh + min(20vh, 20vw) + min(4vw, 4vh));
    transform: translateY(80vh);
    transition: 1.5s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .menuPanel .indicator {
    width: min(20vh, 20vw);
    height: min(20vh, 20vw);
    stroke: white;
    border-radius: 100%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 3px solid rgba(203, 199, 209, 0.1);
    padding: 3px;
  }
  .menuPanel .phoneOnly {
    width: 100%;
    height: calc(min(20vh, 20vw) + 12px);
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .menuPanel .phoneOnly .filler {
    width: calc(50vw - min(20vh, 20vw));
    height: 50%;
    overflow: hidden;
    position: relative;
  }
  .menuPanel .phoneOnly .filler .corner {
    width: calc(min(20vh, 20vw) / 2);
    height: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
  }
  .menuPanel .container {
    overflow-x: scroll;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    position: relative;
    border-top: 3px solid rgba(203, 199, 209, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .menuPanel .container .scrollContainer {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    gap: 10vw;
    padding: 0 10vw;
    position: relative;
  }
  .menuPanel .container .scrollContainer a {
    width: 76vw;
    height: 90%;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    text-align: center;
    align-content: center;
    text-decoration: none;
    position: relative;
    border-radius: 5px;
    border: 3px solid rgba(203, 199, 209, 0.7);
    background-image: linear-gradient(to bottom, rgba(94, 43, 255, 0.9), rgba(94, 43, 255, 0.2));
  }
  .menuPanel:hover {
    bottom: 0;
  }
  .menuPanel.visible {
    transform: translateY(0);
  }
}
@keyframes breathing {
  0% {
    box-shadow: 0px 0px 15px rgba(94, 43, 255, 0.3);
  }
  50% {
    box-shadow: 0px 0px 30px #5e2bff;
  }
  100% {
    box-shadow: 0px 0px 15px rgba(94, 43, 255, 0.3);
  }
}/*# sourceMappingURL=style_popupmenu.css.map */