/* Mobile devices */
@media screen and (max-width: 480px) {
    .image-action {
        visibility: visible;
    }

    .image-view img {
        height: 363px;
        width: 248px;
    }
}

/*  iPads, Tablets (Portrait)*/
@media (min-width: 481px) and (max-width: 768px) {
    .image-action {
        visibility: visible;
    }
    .image-view img {
        height: 385px;
        width: 518px;
    }
}

/* Small screens, laptops or ipad (Landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
    .image-action {
        visibility: visible;
    }

    .image-con {
        height: 200px;
    }

    .image-con img {
        height: 200px;
    }
}

/* Small screens, laptops or ipad (Landscape) */
@media (min-width: 1025px) and (max-width: 1300px) {
}

/* Extra large screens, TV */
@media (min-width: 1301px) {
}
