@charset "utf-8";

.js-modal {
  box-sizing: border-box;
  position: fixed;
  z-index: 5000;
  bottom: 5vh;
  right: 5vw;
  width: fit-content;
  height: fit-content;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}

.js-modal__inner {
  box-sizing: border-box;
  padding: 50px;
  background-color: rgba(0,0,0,.9);
  color: #fff;
}

.js-modal-close {
  position: absolute;
  z-index: 5001;
  display: block;
  margin-left: auto;
  font-size: 2em;
  top: 0;
  right: 10px;
  color: #fff;
}

.js-modal-list {
  margin-top: 1em;
}

.js-modal-list__item:not(:last-of-type) {
  margin-bottom: 1em;
}

.js-modal-list__item::before {
  content: '';
  display: inline-block;
  width: .5em;
  height: .5em;
  margin-right: .25em;
  border-radius: 50%;
  background-color: #91e55c;
}

.js-modal-list__item-link {
  display: inline-block;
  text-decoration: underline;
  transition: .3s all ease-in;
}

.js-modal-list__item-link:hover {
  text-decoration: none;
}