.mv {
  position: relative;
}
.js-modal-open {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #363940;
    color: #fff;
  border-radius: 4px;
    padding: .8rem;
  z-index: 1;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
  left: 0;
    width: 100%;
  z-index: 11;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
  width: 30%;
    min-width: 600px;
  line-height: 1.2;
}
.modal__content p {
  color: #363940;
   margin-bottom: 1rem;
  font-size: 1rem;
}
.modal__content p:first-child {
  text-align: center;
font-weight: bold;
 
}
.modal__content a {
  color: #fe75e6;
}
.modal__content  a.btn {
  display: block;
  text-align: center;
  width: 100%;
background: #363940;
    color: #fff;
  border-radius: 4px;
    padding: .8rem;
  }
.modal__content ul {
  margin-bottom: 1rem;
}
.modal__content ul li {
  color: #363940;
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 6px;
  font-size: 1rem;
}

@media screen and (max-width: 820px) {
  .modal__content {
  height: 80vh;
    overflow: scroll;
    min-width: 0;
    width: 80%;
    }
    .js-modal-open {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {

}