/*body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: red;
}*/

.imagecataloguediv {
    position: relative;
    height: 600px;
    max-height: 600px;
    background-color: white;
    -webkit-transition: 2s height ease;
    transition: 2s height ease;
    background-color: #f3f3f3;
    /*background: url(../../images/features/bg.jpg);
    background-position: center;
    background-repeat: repeat;*/
    /*background-size: cover;*/
    
    /*padding-top: 50px;*/
}

    /*.imagecataloguediv::before {
        content: "";        
        background-color: rgba(152, 66, 211, 0.63);
    }*/


.imagecatalogue {
    height: 450px;
    max-height: 450px;
    margin-top: 20px;
    margin-bottom: 20px;
    /*-moz-box-shadow: 10px 10px 50px #ccc;
    -webkit-box-shadow: 10px 10px 50px #ccc;
    box-shadow: 10px 10px 50px #ccc;*/
    -webkit-box-shadow: 10px 10px 5px grey;
    -moz-box-shadow: 10px 10px 5px grey;
    box-shadow: 10px 10px 5px grey;
}


    .imagecatalogue:hover {
        height: 450px;
        max-height: 450px;
        margin-top: 20px;
        margin-bottom: 20px;
        -webkit-box-shadow: 5px 5px 2px grey;
        -moz-box-shadow: 5px 5px 2px grey;
        box-shadow: 5px 5px 2px grey;
        cursor: pointer;
    }


@media screen and (max-width: 390px) {

    .imagecataloguediv {
        height: 500px;
        max-height: 500px;
        background-color: white;
        -webkit-transition: 2s height ease;
        transition: 2s height ease;
        /*padding-top: 50px;*/
    }


    .imagecatalogue {
        height: 350px;
        max-height: 350px;
        margin-top: 50px;
        /*-moz-box-shadow: 10px 10px 50px #ccc;
    -webkit-box-shadow: 10px 10px 50px #ccc;
    box-shadow: 10px 10px 50px #ccc;*/
        -webkit-box-shadow: 10px 10px 5px grey;
        -moz-box-shadow: 10px 10px 5px grey;
        box-shadow: 10px 10px 5px grey;
    }

        .imagecatalogue:hover {
            height: 350px;
            max-height: 350px;
            margin-top: 50px;
            -webkit-box-shadow: 5px 5px 2px grey;
            -moz-box-shadow: 5px 5px 2px grey;
            box-shadow: 5px 5px 2px grey;
            cursor: pointer;
        }

}


@media screen and (max-width: 290px) {

    .imagecataloguediv {
        height: 400px;
        max-height: 400px;
        background-color: white;
        -webkit-transition: 2s height ease;
        transition: 2s height ease;
        /*padding-top: 50px;*/
    }


    .imagecatalogue {
        height: 250px;
        max-height: 250px;
        margin-top: 50px;
        /*-moz-box-shadow: 10px 10px 50px #ccc;
    -webkit-box-shadow: 10px 10px 50px #ccc;
    box-shadow: 10px 10px 50px #ccc;*/
        -webkit-box-shadow: 10px 10px 5px grey;
        -moz-box-shadow: 10px 10px 5px grey;
        box-shadow: 10px 10px 5px grey;
    }

        .imagecatalogue:hover {
            height: 250px;
            max-height: 250px;
            margin-top: 50px;
            -webkit-box-shadow: 5px 5px 2px grey;
            -moz-box-shadow: 5px 5px 2px grey;
            box-shadow: 5px 5px 2px grey;
            cursor: pointer;
        }
}


.zoomvalue {
    position: fixed;
    right: 10px;
    background-color: aquamarine;
    text-align: right;
    padding: 4px;
    z-index: 1000;
    cursor: pointer;
    /*-webkit-transition: box-shadow .25s linear;
    -moz-transition: box-shadow .25s linear;
    -ms-transition: box-shadow .25s linear;
    -o-transition: box-shadow .25s linear;*/
    transition: box-shadow .5s;
    box-shadow: 0 0 10px #777;
}

    .zoomvalue:hover {
        position: fixed;
        right: 10px;
        background-color: aquamarine;
        text-align: right;
        padding: 4px;
        box-shadow: 0 0 4px #777;
    }

@media screen and (max-width: 400px) {
    .zoomvalue {
        position: fixed;
        right: 1px;
        background-color: aquamarine;
        text-align: right;
        padding: 2px;
        z-index: 1000;
        cursor: pointer;
        /*-webkit-transition: box-shadow .25s linear;
    -moz-transition: box-shadow .25s linear;
    -ms-transition: box-shadow .25s linear;
    -o-transition: box-shadow .25s linear;*/
        transition: box-shadow .5s;
        box-shadow: 0 0 10px #777;
        font-size:10px;
    }

        .zoomvalue:hover {
            position: fixed;
            right: 1px;
            background-color: aquamarine;
            text-align: right;
            padding: 2px;
            box-shadow: 0 0 4px #777;
            font-size: 10px;
        }
}
