.img-thumb img {
    width:100%;
    position: relative;
    cursor: pointer;
    transition: all 600ms;
}
.img-thumb img:hover {
    transform: scale(1.15);
    transition: all 600ms;
}
.img-cnt {
    z-index: 999;
    position:absolute;
    font-size:10px;
    background:#fff;
    padding:3px 5px;
    bottom:-5px;
    right:5px;
    border:1px solid #ccc;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.overlay {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 10000;
}

.img-big {
    display:none;
    position: fixed;
    z-index: 10001;
    padding:20px;
    background:#222;
    width: 800px;
    text-align: center;
    /*transition: all 300ms;*/
}
.img-big-next {
    display: block;
    z-index:10002;
    position:absolute;
    right:-70px;
    top:120px;
    padding:5px;
    background: #000;
    border:1px solid #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
}
.img-big-next:hover {
    background:#d40000;
}
.img-big-prev {
    display: block;
    z-index:10002;
    position:absolute;
    left:-70px;
    top:120px;
    padding:5px;
    background: #000;
    border:1px solid #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    
}
.img-big-prev:hover {
    background:#d40000;
}

.img-big-play {
    margin-top:10px;
    float:left;
    cursor: pointer;
    
}
.img-big-play:hover {
    color:#d40000;
}
.img-big-pause {
    margin-top:10px;
    float:right;
    cursor: pointer;
    
}
.img-big-pause:hover {
    color:#d40000;
}
.img-big-controls {
    width:50px;
    left:auto;
    right:0;
    margin:0;
    font-size: 20px;
}
.img-controls-noactive {
    color:#fff;
}
.img-controls-active {
    color:#d40000;
}

.img-big-navigation-xs {
    display:none;
}

#ratingbox {
    position: absolute;
    margin-top: 10px;
    right:0;
}

@media(max-width:768px){
   .img-big {
        display:none;
        position: fixed;
        top: 0;
        bottom:auto;
        left: 0;
        width: 100%;
        z-index: 10001;
        padding:5px 10px;
    } 
    .img-big-next {
        position: relative;
        margin-top:20px;
        left:auto;
        right:auto;
        top:auto;
        width: 20%;
        float:right;
    }
    .img-big-next img {
        height:40px;
    }
    .img-big-prev {
        position: relative;
        margin-top:20px;
        right:auto;
        left:auto;
        top:auto;
        width: 20%;
        float:left;
    }
    .img-big-prev img {
        height:40px;
    }
    
    .img-big-play {
        float:left;
        color:#fff;
        width:40%;
        padding:5px;
    } 
    .img-big-pause {
        float:right;
        color:#fff;
        width:40%;
        padding:5px;
    }  
    .img-big-controls {
        position: absolute;
        width:120px;
        left:0;
        right:0;
        margin-left:auto;
        margin-right:auto;
        text-align: center;
        margin-top:10px;
    }
    .img-big-navigation-xs {
        display:block;
        clear: both;
    }
    #ratingbox {
        position: relative;
        margin-top: -10px;
        right:0;
        left:0;
        margin-left: auto;
        margin-right: auto;
    }
    
}