<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.shortcut {
  width: 100%;
  height: auto !important;
  justify-content: center;
  position: absolute !important;
  display: flex;
  flex-direction: row;
  z-index: 600;
  top: auto;
  bottom: 0;
}

.shortcut .shortcut__wrap {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(var(--c-neutral-lightest), .2);
  backdrop-filter: blur(15px) brightness(.8);
  -webkit-transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: left 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  width: 100%;
  cursor: pointer;
  position: relative;
}

.shortcut .shortcut__wrap .shortcut__button {
  width: auto;
  display: grid;
  align-items: center;
  height: auto;
}

.shortcut .shortcut__wrap::after {
  content: '';
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0;
  bottom: 0;
  width: 0.5px;
  height: 80%;
  background: rgb(var(--c-neutral-lightest), .2);
  z-index: 1;
}

.shortcut .shortcut__wrap:last-child::after {
  content: none;
}

.shortcut .shortcut__wrap.-active h4,
.shortcut .shortcut__wrap h4 {
  display: none;
}

.shortcut .shortcut__wrap h4::after {
  content: '\f062';
  font-family: 'FaSharpRegular', sans-serif;
  margin-left: 0.5rem;
  display: inline-block;
  font-size: 14px;
}

.shortcut .shortcut__wrap&gt;a {
  color: rgb(var(--c-neutral-lightest));
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  line-height: 44px;
}

.shortcut__wrap img {
  margin: 0 auto;
  height: auto;
  max-width: 28px;
  max-height: 28px;
}

.shortcut__wrap:nth-child(2) img {
  max-width: 54px;
  max-height: 54px;
}

.shortcut__wrap:nth-child(3) img {
  max-width: 34px;
  max-height: 34px;
}

.shortcut__wrap.-active {
  backdrop-filter: none;
}

/* Popup */
.shortcut__wrap.-active .popup {
  display: block;
}

.popup {
  background-color: rgba(var(--c-neutral-lightest), .2);
  backdrop-filter: blur(15px) brightness(.8);
  overflow: hidden;
  display: none;
  width: 300px;
  z-index: 2500;
  top: 25rem;
  padding: 1rem 0.5rem;
  position: fixed;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  height: auto;
  max-height: calc(100vh - 120px - 1rem);
}

.popup__title {
  padding: 0.5rem 4%;
  color: rgb(var(--c-neutral-darkest));
  font-family: var(--f-family);
  font-weight: var(--f-weight-b);
  font-size: 140%;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.popup__close {
  justify-self: flex-end;
  cursor: pointer;
  grid-column: 2;
}

.popup__close::after {
  content: "\f063";
  font-family: 'FaRegular', sans-serif;
  color: rgb(var(--c-neutral-lightest));
  font-size: 20px;
  right: 1rem;
  top: 0.5rem;
  position: absolute;
}

.popup__content .font__button {
  margin-bottom: 0.75rem;
}

.popup__content input {
  padding: 0.3rem 4rem 0.3rem 1rem;
  border-radius: var(--b-radius);
}

.popup__content input[type="submit"] {
  padding: 0.3rem 1.2rem;
  display: flex;
  margin-top: 0.5rem;
}

body .shortcut__wrap.-active::before {
  position: fixed;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(var(--c-neutral-darkest), .7);
}

.popup__container {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  max-height: calc(100vh - 120px);
  scrollbar-color: rgb(var(--c-neutral-lighter)) rgb(var(--c-primary));
  scrollbar-width: thin;
  color: rgb(var(--c-neutral-lightest));
}

.popup__container a {
  color: rgb(var(--c-neutral-lightest));
}

.popup__container::-webkit-scrollbar-track {
  background-color: rgb(var(--c-neutral-lighter));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.popup__container::-webkit-scrollbar {
  width: 5px;
}

.popup__container::-webkit-scrollbar-thumb {
  background-color: rgb(var(--c-primary));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.popup__container .font__button {
  text-transform: none;
  display: inline-block;
  color: rgb(var(--c-neutral-lightest));
  font-weight: var(--f-weight-b);
  width: auto;
  padding: .3rem 1rem;
  position: relative;
  margin-top: .6rem;
  border: 2px solid rgb(var(--c-neutral-lightest));
  background-color: transparent;
}

@media (hover: hover) {
  .popup__container .font__button:hover {
    color: rgb(var(--c-primary));
    border: 2px solid transparent;
    background-color: rgb(var(--c-neutral-lightest));
  }
}


/* =============================================================================
   Media Queries
   ========================================================================== */
@media (min-width: 660px) {

  .popup {
    width: 400px;
  }
}

@media (min-width: 660px) {
  .shortcut .shortcut__wrap {
    max-width: 320px;
  }

  .shortcut .shortcut__wrap:first-child,
  .shortcut .shortcut__wrap:nth-child(4) {
    max-width: 480px;
  }

}

@media (min-width: 800px) {
  .shortcut {
    position: absolute;
    z-index: 1000;
    flex-direction: row;
    height: auto !important;
    bottom: 0;
  }

  .shortcut .shortcut__wrap h4 {
    color: rgb(var(--c-neutral-lightest));
    font-size: var(--f-size-l-2);
    font-weight: var(--f-weight-sb);
    display: block;
  }

  .shortcut__wrap img {
    max-width: 30px;
    max-height: 30px;
  }

  .shortcut__wrap:nth-child(2) img {
    max-width: 60px;
    max-height: 60px;
  }

  .shortcut__wrap:nth-child(3) img {
    max-width: 40px;
    max-height: 40px;
  }

  .shortcut .shortcut__wrap h4::after {
    font-size: 20px;
  }

  .shortcut .shortcut__wrap .shortcut__button {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
  }

}

@media (min-width: 1024px) {

  .popup {
    background-color: rgba(var(--c-neutral-lightest), .2);
    backdrop-filter: blur(15px) brightness(.8);
    overflow: hidden;
    z-index: 2500;
    bottom: 0;
    padding: 1rem 0.5rem;
    position: absolute;
    z-index: 2000;
    width: 100%;
    transition: 0.3s ease-out;
    left: 0;
    transform: none;
    top: inherit;
  }


  body .shortcut__wrap.-active::before {
    background-color: transparent;
  }

  .shortcut__wrap.-active .shortcut__button&gt;img {
    left: 1rem;
    position: absolute;
    transform: rotate(-10deg);
    max-width: 160px;
    max-height: 160px;
    bottom: -0.5rem;
    opacity: 0.3;
    z-index: 3000;
  }

}

@media (min-width: 1280px) {
  .shortcut__wrap img {
    max-width: 44px;
    max-height: 44px;
  }

  .shortcut__wrap:nth-child(2) img {
    max-width: 74px;
    max-height: 74px;
  }

  .shortcut__wrap:nth-child(3) img {
    max-width: 54px;
    max-height: 54px;
  }

  /* Popup */

  .popup__title {
    padding: 0 1.5rem;
    height: 80px;
  }

  .popup__content {
    padding: 1rem 1.5rem;
  }

  .popup__content .grid__main {
    display: block;
  }

  .popup__close::after {
    content: "\f063";
    font-family: 'FaRegular', sans-serif;
    color: rgb(var(--c-neutral-lightest));
    font-size: 30px;
    right: 1rem;
    top: 0.75rem;
    position: absolute;
  }

  body .shortcut__wrap.-active::before {
    position: inherit;
  }

}

@media (min-width: 1580px) {
  .popup {
    width: 480px;
  }
}</pre></body></html>