@import "./components/_components.css";
@import "./components/_header.css";
@import "./components/_login.css";

body {
  font-family: Roboto;
  scroll-behavior: smooth;
}
.site-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}
.variant {
  display: flex;
  align-items: center;
  box-shadow: -4px 4px 4px 1px rgb(241, 239, 239);
}
.variant input {
  visibility: hidden;
  width: 0;
}
.variant label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px;
  cursor: pointer;
}
.variant input:checked ~ label {
  background: var(--first);
  color: #fff;
}
.question {
  padding-bottom: 20px;
}

.test-nav {
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #969595;
  font-size: 18px;
  line-height: 1;
}
.v1 {
  background: var(--first);
}
.v2 {
  background: var(--second);
}
.v3 {
  background: var(--third);
}
.right-content {
  max-height: calc(100vh - 80px);
  overflow-y: scroll;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .right-content {
    max-height: 100%;
    overflow-y: visible;
  }
}

#rangePlus {
  cursor: pointer;
  user-select: none;
}
#rangeMinus {
  cursor: pointer;
  user-select: none;
}
