body {
    cursor:none;
}

@keyframes loop {
	0% { transform-origin: 0% 50%; transform: scale3d(0,1,1); }
	50% { transform-origin: 0% 50%; transform: scale3d(1,1,1); }
	51% { transform-origin: 100% 50%; }
	100% { transform-origin: 100% 50%; transform: scale3d(0,1,1); }
}

.hover-reveal {
	position: fixed;
	width: 250px;
	height: 200px;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 9;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hover-reveal__img {
	background-size: cover;
	background-position: 50% 50%;
}


.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding-top: 100px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}


.lightboxable:hover {
  cursor: zoom-in;
}


.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    z-index: 2000;
}

.close-text {
    font-size: 16px;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*.magnifier-lens {*/
/*    position: absolute;*/
/*    border: 3px solid #000;*/
/*    border-radius: 50%;*/
/*    cursor: none;*/
/*    width: 200px;*/
/*    height: 200px;*/
/*    display: none;*/
/*    z-index: 1000;*/
/*    overflow: hidden;*/
/*}*/

.container-story {
    margin-top: 5%;
}

/*end css*/