.view {
   width: 195;
   height: 195px;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   margin-bottom: 20px;
}
.view .mask, .view .content {
   width: 195px;
   height: 195px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view a.info {
   background-image:url('../images/oko.png');
   background-position: 50% 50%;
   background-repeat: no-repeat;
   background-size: 50px auto;
   display: inline-block;
   width:195px;
   height:195px;
}
.third-effect .mask {
   opacity: 0;
   overflow:visible;
   border:97.5px solid rgba(85,190,213,0.7);
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
   box-sizing:border-box;
   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
.third-effect a.info {
   position:relative;
   top:-97.5px;
   left:-97.5px;
   opacity: 0;
   -webkit-transition: opacity 0.3s 0s ease-in-out;
   -moz-transition: opacity 0.3s 0s ease-in-out;
   -o-transition: opacity 0.3s 0s ease-in-out;
   -ms-transition: opacity 0.3s 0s ease-in-out;
   transition: opacity 0.3s 0s ease-in-out;
}
.third-effect:hover .mask {
   opacity: 1;
   border:97.5px solid rgba(85,190,213,0.7);
}
.third-effect:hover a.info {
    opacity:1;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
    
