/* snipp_caption_hover_effect */
.thumbnail {
    position:relative;
    overflow:hidden;
}

/* control dimention max & min for option menu */
.option_menu {
    max-width: 160px; /*160px;*/
    min-width: 100px;    
}

/* snipp_caption_hover_effect */ 
.caption {
    position:absolute;
    top:-100%;
    right:0;
    overflow:hidden;   
    background:rgb(24, 24, 24);
    background:rgba(24, 24, 24, 0.65);       
    width:100%;
    height:100%;
    padding:2%;
    text-align:center;
    color:#fff !important;
    z-index:2;
    -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;
}
.thumbnail:hover .caption {
    top:0%;
}

.caption h2,
.caption h3,
.caption h4 {
    margin-bottom: 15px;
    color:#fff !important;
    font-size: 172.50%;
}

.caption h5 {
    margin-bottom: 5px;
    color:#fff !important;
    font-size: 112.50%;
}

/*.caption .icon-white, .caption .icon-white a {
  padding-right: 10%;
  padding-left: 10%;
}*/

/* ajust position of tooltip */
/*.tooltip.top { 
  margin-top: -32px !important; 
}*/

/* ajust position of tooltip, replaces code above */
.tooltip-optbko {   
  display: inline-block; /* Fix for tooltip position */
  margin-right: 10%;
  margin-left: 10%;
}
