/*
* view-gallery.css
* Created By: Ruchi Chaudhary(SynapseIndia Pvt.Ltd.)
* Created on: 17-08-2021
* version: 1.0
*/
.btn-grey {   
    padding: 10px 30px;
    border: 1px solid #7393B3;
    border-radius: 5px;
    color: #fff;
    background: #7393B3;
    margin: 2px;
  }
  .hint {
    position: absolute;
    display:none;
    top: 40%;
    right: 30%;
    font-weight:bold;
    color:#000;
  }
  .hint a{ color:#000;}
  .gallery_list ul li a.mimage:hover {
    opacity: 0.6;
  }
  .gallery_list ul li a.mimage:hover + .hint {
    display:block;
  }
  .gallery_list ul li {
    display: inline-block;
    padding: 5px;
    width: 218px;
    min-height: 160px;
    vertical-align: top;
    position: relative;
    text-align: center;
    margin-bottom: 6px;
  }
  .gallery_list ul li .imagelabel {
    word-break: break-all;
    width: 100%;
    padding: 5px 0 13px 0;
    font-size: 16px;
    line-height: 20px;
  }
  @media screen and (max-width: 767px) {
    .gallery_list ul li {      
        width: 100%;
        text-align: center;     
    }    
    .gallery_list ul li a.btn-grey {
      min-height: auto;
      width: 210px;    
      display: inline-block;
      padding: 10px 0;
    }
  } 