* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blocks {
  width: 500px;
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}

.grab {
  position: fixed;
  -webkit-transition: all 0.23s ease;
  transition: all 0.23s ease;
  width: 5px;
  border-radius: 2px;
  z-index: 999;
}

.grab-handle {
  background: #ccc;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
/*# sourceMappingURL=style.css.map */