.lightbox {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: #fff;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.close {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 3%;
    min-width: 30px;
    height: auto;
    margin-right: 3%;
}

.remove {
    position: fixed;
    top: calc(3% + 50px);
    right: 0px;
    width: 3%;
    min-width: 30px;
    height: auto;
    margin-right: 3%;
}

.right {
    position: fixed;
    right: 0px;
    width: 3%;
    min-width: 30px;
    margin-top: 0px;
    top: 45.5%;
    z-index: 10;
    cursor: pointer;
}

.left {
    position: fixed;
    left: 0px;
    width: 3%;
    min-width: 30px;
    margin-top: 0px;
    top: 45.5%;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 70%;
	margin-top: 50px;
    border-radius: 3px;
}

.lightbox:target {
	outline: none;
	display: block;
}