﻿
.divGridBoxText {
  display:table;
    position: absolute;
    bottom: 27px;
    left: 0px;
    background-color: #cecece;
    width: calc(100% - 20px);
    padding: 1px 10px;
    font-size: 14px;
    opacity:0;
}

.divPageGalleryImageTop:hover .divGridBoxText {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

.divPageGalWrapper {
    position: fixed;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 100000;
    opacity: 0;
}

.divPageGalWrapperOpen {


    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,.5);
    padding: 15px;
    overflow: unset;
}

.divPageClosebtn {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 3px;
    background-color: #7c7574;
    font-size: 15px;
    color: #fff;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

    .divPageClosebtn:hover {
        float: right;
        border-radius: 3px;
        background-color: #afa3a0;
        font-size: 15px;
        color: #fff;
    }

/********** Responsive *************/
/*wide width**********************************************/
@media (min-width: 901px) {
    .divPageGalleryImage {
        position: fixed;
        display: none;
        width: 0px;
        height: 0px;
        overflow: hidden;
        z-index: 100000;
    }

}

/*medium width**********************************************/
@media (min-width: 701px) and (max-width: 901px) {
    .divPageGalleryImage {
        position: fixed;
        display: none;
        width: 0px;
        height: 0px;
        overflow: hidden;
        z-index: 100000;
    }

}

/* mobile width*******************************************/
@media (max-width: 700px) {
    .divPageGalleryImage {
        position: fixed;
        display: none;
        width: 0px;
        height: 0px;
        height: 0px;
        overflow: hidden;
        z-index: 100000;
    }

    
}


/********** End Responsive *************/
