[data-cover-image] {
  cursor: pointer;
}

.cover-image-modal {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 9999999;
  padding: 100px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.cover-image-modal .image-wrapper {
  width: 80%;
  max-width: 1000px;
  max-height: 100vh;
  text-align: center;
  overflow-y: visible;
}

.cover-image-modal .image-wrapper--single {
  width: 100%;
  max-width: 100%;
}

.cover-image-modal .nav-arrow {
  color: #f1f1f1;
  font-size: 100px;
  transition: 0.1s;
  cursor: pointer;
  padding: 1rem;
  margin: auto;
}

.cover-image-modal .nav-arrow.disabled {
  color: #888;
  cursor: default;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .cover-image-modal .nav-arrow {
    font-size: 40px;
    width: 10%;
    padding: 0;
    text-align: center;
  }
}
