#myModal {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 5rem;
  z-index: 10;
}
#myModal .modal-dialog {
  width: 100%;
  height: 100%;
}
#myModal .modal-content {
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 270px;
  background: #fff;
  padding: 15px;
  border: 1px solid rgba(0 0 0 / 50%);
  box-shadow:  0 3px 6px -1px rgba(0 0 0 / 50%);
  border-radius: 5px;
}
#myModal .modal-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-around;
}

#myModal .modal-body h5 {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 0.6rem;
  line-height: 1.45;
}

#myModal .modal-body a {
  text-decoration: none;
  color: #337ab7;
  font-weight: 600;
  transition: all .5s;
  font-size: 14px;
}

#myModal .modal-body a:hover {
  text-decoration: underline;
  cursor: pointer;
}

#myModal .btn,
#myModal .not-btn {
  padding: .6rem;
  font-weight: 500;
  border-radius: 3px;
  transition: all .5s;
  font-size: 14px;
  border: 2px solid #2e6da4;
}

#myModal .btn {
  margin: 0.8rem 0 1rem 0;
  color: #fff;
  background: #337ab7;
}

#myModal .btn:hover {
  background: #28669c;
  cursor: pointer;
}

#myModal .not-btn {
  background: #fff;
}

#myModal .not-btn:hover {
  cursor: pointer;
  background: #dbedfd;
}