
#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    width: 100%;
}

.modalPopup {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    background: none;
    width: 50%;
    padding: 0 0 30px;
    -webkit-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
}

.modalContent {
    padding: 0 2em;
}
.modalContent img{
    width: auto;
height: 35vw; 
border:4px double #fff;
}
.headerBar {
    width: 100%;
    /* background: #edcb04 url(http://cognex.com/gfx/site/bg-global-header.png) repeat-x 0 0; */
    margin: 2px;
    /* text-align: center; */

}

.headerBar img {
    margin: 1em .7em;
}



.buttonStyle {
    border: transparent;
    border-radius: 0;
    background: #fff;
    color: #eee !important;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    padding: 6px 25px;
    text-decoration: none;
    background: -moz-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6d6d6d), color-stop(100%, #1e1e1e));
    background: -webkit-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
    background: -o-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
    background: -ms-linear-gradient(top, #6d6d6d 0%, #1e1e1e 100%);
    background: linear-gradient(to bottom, #6d6d6d 0%, #1e1e1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6d6d6d', endColorstr='#1e1e1e', GradientType=0);
    /*	-webkit-box-shadow: 0 2px 4px 0 #999;
box-shadow: 0 2px 4px 0 #999; */
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
   
    /* float:right;
    width: auto; */
}

.buttonStyle:hover {
    background: #1e1e1e;
    color: #fff;
    background: -moz-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e1e1e), color-stop(100%, #6d6d6d), color-stop(100%, #6d6d6d));
    background: -webkit-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
    background: -o-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
    background: -ms-linear-gradient(top, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
    background: linear-gradient(to bottom, #1e1e1e 0%, #6d6d6d 100%, #6d6d6d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e1e1e', endColorstr='#6d6d6d', GradientType=0);
}

/* .returnToProfile {
    text-align: center;
    margin: 3em;
}

.returnToProfile a,
.returnToProfile a:visited {
    color: #ddd;
}

.returnToProfile a:hover {
    color: #fff;
} */

@media screen and (max-width: 560px) {
    .modalContent img{
        height: 18vh;
        /* border: 4px double #fff; */
        /* margin: 0 auto; */
        position: relative;
        justify-content: center;
        display: grid
;
        left: 20px;
    }
    .modalPopup {
        left: 22%;
    }
    .headerBar {
        text-align: center;
    }
  }