.hidden {
    display: none
}

.interactive-layer-container {
    max-height: 1000px;
}

.interactive-layer-container img {
    z-index: 1;
    max-height: 1000px;
}

.interactive-layer-area-wrapper {
    position:absolute;
}

.hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0);
    opacity: 0;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.hover>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: #009dd4;
    border-radius: 50%;
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.hover > span > i {
    color: #fff;
    font-size: 3rem;
}

.interactive-layer-area-wrapper:hover .hover {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.interactive-layer-area-wrapper:hover .hover > span {
    opacity: 1;
}

@media (max-width: 800px) {
    .hover>span {
        height: 3rem;
        width: 3rem;
        line-height: 3rem;
    }
    .hover > span > i {
        font-size: 2rem;
    }

}