.sidebar {
  --sidebar-bg: rgb(1, 43, 86);
  position: absolute;
  inset: 0;
  width: 30%;
  height: 100%;
  background: var(--sidebar-bg);
  box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.25);
  padding: 3% 1%;
  z-index: 20 !important;
}
.cheveron {
  --cheveron-size: 25%;
  width: var(--cheveron-size);
  aspect-ratio: 1;
  background-color: var(--sidebar-bg);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  inset: 50% calc(-1 / 2 * var(--cheveron-size)) auto auto;
  font-size: 5vw;
  padding-left: 10%;
  display: grid;
  place-content: center;
  cursor: pointer;
}

.cheveron::after {
  content: '\3E';
}

.sidebar :is(.title, .sub-title) {
  text-transform: uppercase;
  font-size: 4vw;
  color: #fff;
}

.sidebar .hero-content {
  width: 65%;
  aspect-ratio: 1;
  margin: 5% auto;
  padding: 1%;
  border: 0.1em solid #1cbdfa;
  border-radius: 50%;
  padding: 5%;
}

.sidebar .hero-content::after {
  content: '';
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  inset: 0;
  margin: auto;
  border: 0.1em dashed #1cbdfa;
}

.sidebar .avatar-container{
  cursor: pointer;
  z-index: 10;
}

.sidebar .avatar-container .avatar {
  top: 5%;
  width: 90%;
  height: 75%;
  object-fit: contain;
}

.sidebar .avatar-container label {
  color: #fff;
  font-size: 3vw;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.right-sidebar {
  inset: 0 0 auto auto;
}

.right-sidebar .buttons{
  top: 5%;
}

.right-sidebar .cheveron-left {
  inset: 50% auto auto calc(-1 / 2 * var(--cheveron-size));
  padding-left: unset;
  padding-right: 10%;
}
.right-sidebar .cheveron-left::after {
  content: '\3C';
}

.right-sidebar .hero-content {
  text-transform: uppercase;
  font-size: 3vw;
}

.right-sidebar .hero-content::before {
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  inset: 0;
  margin: auto;
  border: 0.01em solid #1cbdfa;
}

.right-sidebar .stop {
  top: 30%;
  line-height: 1.2em;
}

.right-sidebar .stop-num {
  font-size: 5vw;
}

.right-sidebar .arrow {
  height: 25%;
  width: auto;
  z-index: 10;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  cursor: pointer;
}

.right-sidebar .arrow-down {
  top: unset;
  bottom: 8%;
  left: 38%;
  transform: scaleY(-1);
}

@media screen and (min-aspect-ratio: 4/3) {
  .sidebar :is(.title, .sub-title, .stop-num) {
    font-size: 5vh;
  }
  .sidebar :is(.avatar-container label, .hero-content) {
    font-size: 3.5vh;
  }
  .cheveron {
    font-size: 7vh;
  }
}
