.img-hoverable-module {
    .img-hoverable {
        cursor: pointer;
        transition: 0.3s;
    }

    .img-hoverable:hover {
        opacity: 0.7;
    }

    .modal {
        display: block;
        position: fixed;
        z-index: 10;
        padding: 100px 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.9);

        &.hidden {
            display: none;
        }
    }

    .modal-content {
        margin: auto;
        display: block;
        width: auto;
        min-width: 200px;
        max-width: 90%;
    }
}