.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: auto;
    max-height: 80vh;
    display: block;
    margin: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.modal a.prev {
	color:#fff;
	font-size: 40px;
	position:absolute;
	top:50%;
	left:10px;
    transform: translateY(-50%);
	cursor:pointer;
}


.modal a.next {
	color:#fff;
	font-size: 40px;
	position:absolute;
	top:50%;
	right:10px;
    transform: translateY(-50%);
	cursor:pointer;
}