body:after {
    content: url(../img/close2.ico) url(../img/close1.ico);
    display: none;
}

#overlay {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .9);
    z-index: 997;
}

#lightBox {
    position: fixed;
    top: 50%;
    left: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 998;
    border: 3px solid antiquewhite;
    border-radius: 3px;
}

#centeredImg {
    max-width: 100%;
    max-height: 100%;
}

#closeIcon {
    background: url(../img/close2.ico) left no-repeat;
    width: 34px;
    height: 34px;
    padding: 1px;
    position: absolute;
    right: -38px;
    top: 0;
    padding: 0px;
    -webkit-filter: opacity(.25);
    filter: opacity(.25);
}

@media (max-width: 500px) {
    #closeIcon {
        background: url(../img/close1.ico) left no-repeat;
        width: 26px;
        height: 26px;
        right: 1px;
        z-index: 999;
        -webkit-filter: invert(.4);
        filter: invert(.4);
    }
}

#closeIcon:hover {
    -webkit-filter: opacity(.6);
    filter: opacity(.6);
}

@media (max-width: 500px) {
    #closeIcon:hover {
        -webkit-filter: invert(.6);
        filter: invert(.6);
    }
}