﻿


.imgmodal {
    z-index: 9998 !important; /* Sit on top */
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (image) */
.imgmodal-content {
    z-index: 99998 !important; /* Sit on top */
    position: relative;
    margin: auto;
    display: block;
    max-width: 750px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    object-fit: scale-down !important;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.00); /* Black w/ opacity */
}

/* The Close Button */
.imgclose {
    z-index: 99999 !important; /* Sit on top */
    position: absolute;
    top: 15px;
    right: 18px;
    color: #f1f1f1;
    font-size:xx-large;
    font-weight: bold;
    transition: 0.3s;
    padding: 10px;
    background: rgba(255,0,1,0.75);
    text-align: center;
    border-radius: 5px;
    line-height: 30px;
}

    .imgclose:hover,
    .imgclose:focus {
        color: #fff;
        background: rgba(255,0,1,1);
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 750px) {
    .imgmodal-content {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        width: auto;
        position: relative;
        top: 50%;
        object-fit: scale-down !important;
    }
