.side-stream--open a {
  color: #343434;
}
.side-stream--open {
  position: absolute;
  color: #343434;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-color: rgba(0,0,0,0.7);
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.side-stream__buttons {
  position: fixed;
  right: 0;
  z-index: 100000;
  top: 50vh;
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  transition: right 0.5s ease;
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.side-stream__buttons button {
  border-radius: 0;
  background-color: black;
  color: white;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  font-size: 1.5rem;
  width: 100%;
}

.side-stream--open .side-stream__buttons {
  right: 91vw;
}

.side-stream__container {
  position: fixed;
  right: 0;
  z-index: 100000;
  top: 0;
  height: 100vh;
  overflow: scroll;
  scroll-behavior: auto;
  width: 0vw;
  display: none;
  background-color: white;
  -webkit-box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgb(0 0 0 / 12%), 0 2px 4px rgb(0 0 0 / 24%);
  box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgb(0 0 0 / 12%), 0 2px 4px rgb(0 0 0 / 24%);
  padding: 2rem;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.side-stream--open .side-stream__container {
  display: block;
  width: 90vw;
}

.side-stream button:focus {
  outline: none;
}

.side-stream button span {
  margin-left: 1rem;
  -webkit-transition: display 0.5s ease;
  -moz-transition: display 0.5s ease;
  -o-transition: display 0.5s ease;
  transition: display 0.5s ease;
}

.side-stream button .hidden {
  display: none;
}

.actions-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .side-stream button span {
    display: none;
  }
}

.js-stream-close-btn {
  display: none !important;
}

.side-stream--open .js-stream-close-btn {
  display: inline-block !important;
  background: white;
  border-radius: 50%;
  font-size: 2rem;
  padding: 3px;
  position: fixed;
  top: 2rem;
  cursor: pointer;
  right: 87.5vw;
  z-index: 999999;
}

@media (min-width: 768px) {
  .side-stream--open .side-stream__container {
    width: 70vw;
  }
  .side-stream--open .side-stream__buttons {
    right: 71vw;
  }
  .side-stream--open .js-stream-close-btn {
    right: 68.7vw;
  }
}

@media (min-width: 992px) {
  .side-stream--open .side-stream__container {
    width: 50vw;
  }
  .side-stream--open .side-stream__buttons {
    right: 51vw;
  }
  .side-stream--open .js-stream-close-btn {
    right: 49vw;
  }
}

@media (min-width: 1200px) {
  .side-stream--open .side-stream__container {
    width: 40vw;
  }
  .side-stream--open .side-stream__buttons {
    right: 41vw;
  }
  .side-stream--open .js-stream-close-btn {
    right: 39vw;
  }
}
