.m-bullet {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-tertiary-bg);
  transition: transform var(--default-transition-easing) var(--default-transition-timing), background-color var(--default-transition-easing) var(--default-transition-timing);
  height: 1.6rem;
  width: 1.6rem;
}
.m-bullet.mobile {
  display: block;
}
@media screen and (min-width: 990px) {
  .m-bullet.mobile {
    display: none;
  }
}
.m-bullet.desktop {
  display: none;
}
@media screen and (min-width: 990px) {
  .m-bullet.desktop {
    display: block;
  }
}
.m-bullet:hover, .m-bullet:focus, .m-bullet.show {
  transform: scale(1.25);
  background: var(--color-tertiary-bg);
}
@media screen and (min-width: 990px) {
  .m-bullet:hover, .m-bullet:focus, .m-bullet.show {
    transform: scale(1.375);
  }
}
.m-bullet:hover, .m-bullet:focus {
  cursor: pointer;
}
.m-bullet__modal {
  position: absolute;
  background: var(--color-secondary);
  transform: translate(-50%, -50%);
  width: 75%;
  left: 50%;
  padding: 1.6rem;
  transition: opacity var(--default-transition-easing) var(--default-transition-timing);
}
@media screen and (min-width: 990px) {
  .m-bullet__modal {
    padding: 1.6rem 4rem;
    width: auto;
  }
}
.m-bullet__modal--header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.2rem;
  text-align: left;
}
.m-bullet__modal--title {
  margin-bottom: 0;
}
.m-bullet__modal--designer {
  text-align: left;
}
.m-bullet__modal--link {
  margin-top: 2.3rem;
}
.m-bullet__modal.hidden {
  opacity: 0;
}
.m-bullet__modal.show {
  z-index: 2;
  opacity: 1;
}
.m-bullet__modal.top {
  top: 30%;
}
.m-bullet__modal.bottom {
  top: 70%;
}
