/**
 * InfoBox
 *
 * Infobox CSS Styles
 *
 * @developer   Ivan Vicentijevic
 * @version     1.0.0
 */


/** Style Infobox*/

/** InfoBox Close Button */
.infoBox img{
    position: absolute;
    cursor: pointer;
    top: -10px;
    right: -10px;
}
/** Infobox Image Holder */
.store-locations-infobox .infobox-store-image{
    width:100%;
    height:125px;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin-bottom:5px;
}
.store-locations-infobox .listing-loop-image .img-wrap-listing{
    height:200px;
}
/** InfoBox Conteiner */
.store-locations-infobox{
    background: #fff;
    opacity: 1;
    width: 250px;
    padding: 5px 0 0 5px;
    -webkit-box-shadow: 10px 5px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 10px 5px 10px 0px rgba(0,0,0,0.25);
    -o-box-shadow: 10px 5px 10px 0px rgba(0,0,0,0.25);
    -khtml-box-shadow: 10px 5px 10px 0px rgba(0,0,0,0.25);
    box-shadow: 10px 5px 10px 0px rgba(0,0,0,0.25);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -khtml-radius: 3px;
    border-radius: 3px;
}

/** InfoBox Text */
.store-locations-infobox span{
    display: block;
    margin-top: 0px;
    position: relative;
    font-size:14px;
    padding: 0 5px;
    line-height: 16px;
}
.store-locations-infobox span a{
    text-decoration: underline;
}
.store-locations-infobox img{
    width:100%;
}
.store-locations-infobox .listing-loop-image{
    padding:0;
}
/** InfoBox Title */
.store-locations-infobox .infobox-title{
    margin: 0;
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    left:0;
    width:240px;
    padding:0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
}

.store-locations-infobox .pointer{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 5px solid transparent;
    border-top: 40px solid #FFF;
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -khtml-transform: rotate(30deg);
    transform: rotate(30deg);
    position: absolute;
    z-index: -1;
    left: 55px;
    bottom: -30px;
}