@charset "UTF-8";

.content-container {
  width: 90%;
  position: relative;
  margin: 0 auto;
}


.shortcut-btn {
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 60vh;
  left: 30px;
  transform: translate(-50%, 0) scale(1);
  padding: 20px 8px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #131D47;
  z-index: 1002;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.15s linear;
  display: none;
}
.shortcut-btn p {
  text-align: center;
  font-size: 1.0625em;
  font-weight: 700;
  color: #A3B2BF;
}
.shortcut-btn p .shortcut-arrow.active img {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .shortcut-btn {
    display: block;
  }
  .shortcut-btn:hover {
    transform: translate(-50%, 0) scale(1.1);
  }
}

.shortcut-content {
  width: 40%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -50vw;
  z-index: 1001;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-image: linear-gradient(to right, rgb(18, 23, 44), rgba(18, 23, 44, 0));
  opacity: 0;
  display: none;
  transition: left 0.5s ease, opacity 0.5s ease;
}

.shortcut-content.active {
	left: 0;
	opacity: 1;
	display: block;
}

.shortcut-content ul {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 30px 0 0 80px;
  height: calc(100vh - 30px);
  padding-right: 50px;
  box-sizing: border-box;
  overflow: auto;
}
.shortcut-content ul::-webkit-scrollbar {
  width: 5px;
}
.shortcut-content ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.shortcut-content ul::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.shortcut-content ul::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}
.shortcut-content .shortcut-item {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 1em;
  font-weight: 700;
  color: #E2EAF2;
  margin: 10px 0;
  cursor: pointer;
  opacity: 0.9;
  transition: 0.15s linear;
}
.shortcut-content .shortcut-item:hover {
  color: #fff;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .shortcut-content {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */