/*
* EFUKT SLIDER WIDGET
* required styles
*/

/* RESET */
.efukt-widget{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none}

.efukt-widget div,
.efukt-widget a,
.efukt-widget i,
.efukt-widget img,
.efukt-widget span{
    margin:0;
    padding:0
}

.efukt-widget img{
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
    border:0;
    z-index:1
}

/* GENERAL */
.oflow{overflow:hidden;text-overflow:ellipsis}
.tflow{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.thumb{overflow:hidden}

/* TRANSITIONS */
a{
    -webkit-transition:all .2s ease-out;
    -moz-transition:all .2s ease-out;
    -ms-transition:all .2s ease-out;
    -o-transition:all .2s ease-out;
    transition:all .2s ease-out;
}

/* STRUCTURE */
.efukt-widget{
    background:#fff;
    width:auto;
    /*max-width:620px;*/
    /*height:192px;*/
    height: 140px;
    max-width: 630px;
    text-align:center;
    border:1px solid #000;
    margin:auto;
    overflow:hidden;
    margin-bottom: 10px;

}

.efukt-widget .bx-wrapper {
    height:100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    *zoom: 1;
    overflow:hidden;
    z-index:1
}

.efukt-widget .bx-wrapper img {
    max-width: 100%;
    display: block;
}

.efukt-widget .bx-clone{display:none!important}

.efukt-widget .bx-viewport{
    width:auto!important;
    height:100%!important;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    position:absolute!important;
    right:32px;
    left:32px;
    z-index:2;
}

/* Loading Icon */
.efukt-widget .bx-loading {
    min-height: 50px;
    background: url(bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* Left & Right Arrow Controls */
.efukt-widget .bx-controls,
.efukt-widget .bx-controls-direction{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1
}

.efukt-widget .bx-controls-direction a {
    color:#333;
    position: absolute;
    top:0;
    outline: 0;
    width: 32px;
    height: 100%;
    z-index: 9999;
}

.efukt-widget .bx-controls-direction a .fa{
    width:100%;
    height:auto;
    font-size:18px;
    text-align:center;
    position:absolute;
    top:50%;
    left:0;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    opacity:1
}

.efukt-widget .bx-controls-direction a:hover{
    color:#aaa
}

.efukt-widget .bx-controls-direction a.disabled {
    display: none;
}

.efukt-widget .bx-prev {
    border-right:1px solid #ddd;
    left: 0;
}

.efukt-widget .bx-next {
    border-left: 1px solid #ddd;
    right: 0;
}

/* SLIDE PANEL */
/* Main List Box */
.efukt-widget .list{
    padding:10px
}

/* List Box Slide */
.efukt-widget .slide{
    text-align:center
}

/* Slide Item */
.efukt-widget .item{
    /*width:30%!important;*/
    width:auto!important;
    margin:auto 1%;
    display:inline-block;
    margin-right: 15px;
    margin-left: 15px;
}

/* SLIDE ITEM ELEMENTS */
/* Thumbs */
.efukt-widget .thumb{
    border:1px solid #000;
    /*margin-bottom:6px; */
    margin-bottom:0px;
    display:block
}

.efukt-widget .thumb img{
    width:142px;
    /*width:100%;*/
    /*height:auto*/
    height: 102px;
}

/* Titles */
.efukt-widget .title{
    height:auto;
    max-height:32px;
    font-size:14px;
    font-weight:700;
    color:#000;
    text-align:left;
    text-decoration:underline;
    line-height:16px;
    margin-bottom:5px;
    display:block
}

.efukt-widget .title:hover{
    color:#7f7f7f
}

/* Item Stats */
.efukt-widget .stats{
    font-size:11px;
    color:#000;
    text-align:left;
    line-height:13px;
    display:block
}

.efukt-widget .stats span{
    margin:auto 8px auto auto;
    display:inline-block
}

.efukt-widget .stats .fa{
    margin-right:5px
}

.efukt-widget .stats a{
    color:#000;
    text-decoration:none
}

.efukt-widget .stats a:hover{
    text-decoration:underline
}

/* MORE BUTTON */
.efukt-widget .button{
    background:#000;
    font-size:14px;
    font-weight:700;
    color:#bf4616;
    text-align:center;
    text-decoration:none;
    line-height:36px;
    right:0;
    bottom:0;
    left:0;
    display:block;
    z-index:2
}

.efukt-widget .button:hover{
    background:#eee;
    color:#000
}

/* RESPONSIVE */
@media screen and (max-width: 650px) {
    .efukt-widget{
        max-width:256px;
        height:532px
    }
    .efukt-widget .item{
        width:90%!important;
        height:auto;
        max-height:180px;
        margin:auto auto 10px auto;
        display:block
    }
}