sidebar-fixed {
  display: block;
  width: 20vw;
  height: 100vh;
  position: fixed;
  background-color: gray;
  z-index: 4;
  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 {
  position: relative;
  display: block;
  height: 100%;
  width: 90%;
  overflow-y: scroll;
  margin: 5px;
}

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

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

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

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

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

full-screen-popup {
  display: block;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 4;
  pointer-events: all;
  background-color: white;
}
full-screen-popup button {
  position: absolute;
  top: 10px;
  right: 20px;
}

@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 */