.page-test {
  position: fixed;
  top: 10vh;
  right: 0;
  max-width: 33vw;
  border-radius: 5px;
  background: beige;
  padding: 8px;
  z-index: 99999;
  overflow-y: scroll;
  max-height: 70vh;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.page-test.close {
  -webkit-transform: translate3d(91%, 0, 0);
          transform: translate3d(91%, 0, 0);
}

.page-test.close .page-test__container, .page-test.close .test-title {
  opacity: 0;
}

.page-test li {
  list-style-type: none;
}

.page-test__container {
  padding: 0;
  margin: 0;
}

.page-test__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8px;
}

.page-test__list img {
  width: 50px;
  height: auto;
}

.page-test__link {
  text-decoration: none;
  position: relative;
  color: black;
}

.page-test__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: black;
  display: block;
  -webkit-transition: width .3s ease-out;
  transition: width .3s ease-out;
}

.page-test__link:hover:before {
  width: 100%;
}

.page-test__cross {
  margin: 1rem 0;
  cursor: pointer;
}

.page-test__cross .toggle {
  cursor: pointer;
  display: block;
  height: 2px;
  width: 30px;
  background: black;
  rotate: 45deg;
}

.page-test__cross .toggle:nth-child(even) {
  rotate: -45deg;
}

@media screen and (max-width: 1080px) {
  .page-test {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */