.reaction-bar {
  position: absolute;
  gap: 16px;
  z-index: 2;

  border: 0;
  bottom: 62px;
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.reaction-bar--left {
  left: 16px;
}

.reaction-bar--right {
  right: 16px;
}

/* btn creator */
.btn-modal-creator {
  z-index: 1;
  pointer-events: all;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  display: none;
}

.btn-modal-creator .btn-modal-creator-div {
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  width: 26px;
  height: 26px;
  overflow: hidden;
}

.btn-modal-creator .btn-modal-creator-div .btn-modal-creator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* btn quiz */
.btn-modal {
  overflow: visible;
  color: var(--dark-mode-11);
  border: 0;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  transition: color 0.3 ease-in, opacity 0.3 ease-in-out;
  cursor: pointer;
  position: relative;
  display: none;
}

.btn-modal > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-modal.btn-modal--enabled {
  color: var(--dark-mode-12);
  pointer-events: all;
  opacity: 1 !important;
}

label.btn-modal.btn-modal--enabled.btn-modal--overlay:before {
  content: '';
  width: 74px;
  height: 74px;
  position: absolute;
  left: -16px;
  top: -15px;
  border-radius: 100%;
  fill: none;
  z-index: 1;
  box-shadow: 0px 0px 0px 100vh rgba(0, 0, 0, 0.7), 0px 0px 38px transparent inset;
  transition: box-shadow 0.3s ease-in;
  -webkit-animation-name: shadow;
  -webkit-animation-duration: 0.5s;
  animation-name: shadow;
  animation-duration: 0.5s;
}

.btn-modal .icon {
  width: 23px;
  height: 26px;
}

/* btn next and previous storybook */
.btnNext,
.btnPrevious {
  overflow: visible;
  box-sizing: content-box;
  color: transparent;

  border: 0;
  width: 50px;
  height: 52px;
  pointer-events: none;
  cursor: pointer;
  opacity: 0.1;
  transition: color 0.3 ease-in, opacity 0.3 ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 100%;
  text-align: center;
}

.btnPrevious {
  color: var(--dark-mode-12);
  pointer-events: all;
  opacity: 1;
}

.btnPrevious .icon svg,
.btnNext .icon svg {
  width: 26px;
  height: 22px;
  margin-bottom: 10px;
}

.btnNext {
  color: var(--dark-mode-12);
  pointer-events: all;
  opacity: 1;
}

@media screen and (orientation: landscape) {
  .mobile-story label.btn-modal.btn-modal--enabled.btn-modal--overlay:before {
    box-shadow: 0px 0px 0px 100vw rgba(0, 0, 0, 0.7), 0px 0px 38px transparent inset !important;
  }
}
