.lpv-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: auto;	
    background-color: rgba(255,255,255,0.95);
}

.lpv-modal-content {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 20px;	
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*.lpv-modal-content:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("https://micheleokadoner.com/wp-content/uploads/2018/12/MOD-Signiture-Black-70smaller.png");
  background-size: 200px 100px;
  background-position: 30px 30px;
  background-repeat: no-repeat;
  opacity: 0.7;
}*/

.lpv-close-button {
    color: #333;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
}

.lpv-close-button:hover {
    color: #666;
}

#lpv-gallery-img {
    /*max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
	*/
		width: 90%;
		height: 90%;
		object-fit: contain;
   
    display: block;
    margin: 0 auto;
    background: #f0f0f0;
}




#lpv-gallery-caption {
    color: #444;
    font-size: .75rem;
    margin-top: 10px;
    max-width: 80%;
    text-align: center;
}

#lpv-prev, #lpv-next {
    font-size: 3rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

#lpv-prev { left: 20px; }
#lpv-next { right: 20px; }

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
