.footerDrawer {
  background-color: #eeeeee;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 3;
  display: none;
}

.footerDrawer .open {
  background-color: #eeeeee;
}

.footerDrawer .content {
  height: calc(100vh - 60px);
  background-color: #cccccc;
  overflow-y: scroll;
}

.footerDrawer .heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footerDrawer .heading h5 {
  margin-bottom: 0;
}

.sideDrawer {
  width: 400px;
  z-index: 1;
  position: absolute;
  left: -1000px;
  background: #DDD;
  color: #000;
  height: calc(100% - 62px);
  box-shadow: 2px 0px 5px 0px rgb(0 0 0 / 20%);
}

.sideDrawer.visible {
  left: 350px;
}

.sideDrawer .heading, .footerDrawer .heading {
  background-color: #eeeeee;
  padding: 15px;
  font-size: 20px;
  position: relative;
}

.sideDrawer .content {
  background-color: #FFF;
  overflow-y: auto;
  height: calc(100% - 150px);
}

.sideDrawer .btn-close, .footerDrawer .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

@media (max-width: 768px) {
  .sideDrawer {
    width: 100%;
  }
  .sideDrawer.visible {
    left: 0;
    z-index: 3;
  }
}