sidebar-fixed {
  display: flex;
  justify-content: end;
  width: 20vw;
  height: 100vh;
  position: fixed;
  background-color: gray;
  z-index: 3;
  top: 0;
}
sidebar-fixed button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 7vh;
  padding: 0;
}
sidebar-fixed button p {
  width: 20px;
  margin: 0;
}
sidebar-fixed content {
  display: block;
  height: 100%;
  width: 85%;
  margin: 10px;
  overflow-y: scroll;
}

content::-webkit-scrollbar {
  display: none;
}

.right {
  right: -20vw;
  transition: right 1s;
}
.right button {
  left: -25px;
}

.left {
  left: -20vw;
  transition: left 1s;
}
.left button {
  right: -25px;
}

.right.open {
  right: 0;
  transition: right 1s;
}

.left.open {
  left: 0;
  transition: left 1s;
}

popup {
  display: block;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 3;
  pointer-events: none;
}

@media screen and (max-width: 500px) {
  sidebar-fixed {
    width: 100vw;
  }
  .right {
    right: -100vw;
  }
  .right button {
    transition: left 1s;
  }
  .left {
    left: -100vw;
  }
  .left button {
    right: -25px;
    transition: right 1s;
  }
  .right.open button {
    left: 0;
    transition: left 1s;
  }
  .left.open button {
    right: 0;
    transition: right 1s;
  }
}
@media screen and (min-width: 500px) and (max-width: 1030px) {
  sidebar-fixed {
    width: 100vw;
  }
  .right {
    right: -100vw;
  }
  .right button {
    transition: left 1s;
  }
  .left {
    left: -100vw;
  }
  .left button {
    right: 25px;
    transition: right 1s;
  }
  .right.open button {
    left: 0;
    transition: left 1s;
  }
  .left.open button {
    right: 0;
    transition: right 1s;
  }
}
@media screen and (min-width: 1030px) and (max-width: 1500px) {
  sidebar-fixed {
    width: 30vw;
  }
  .right {
    right: -30vw;
  }
  .right button {
    transition: left 1s;
  }
  .left {
    left: -30vw;
  }
  .left button {
    right: 25px;
    transition: right 1s;
  }
}/*# sourceMappingURL=popups.css.map */