.liquidlook {
  position: relative;
  z-index: 1;
}
.liquidlook > ul {
    padding-left: 0 !important;
}
.liquidlook > ul img {
    width: 100%;
    height: auto;
}
.liquidlook .arrow {
    position: absolute;
    top: 46%;
    width: 43px;
    height: 43px;
    border: solid 2px #000;
    border-radius: 50%;
    background: transparent;

    z-index: 20;
    color: #000;
    cursor: pointer;
    text-align: center;
}
.liquidlook .arrow:hover {
    background: #f2f2f2;
    border-color: #f2f2f2;
    color: #000;
}
.liquidlook .arrow.prev { left: 28px; }
.liquidlook .arrow.next { right: 28px; }

.liquidlook .arrow i:before {
    font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    line-height: 45px;
    font-size: 15px;
}
.liquidlook .arrow.prev i:before { content: 'l'; }
.liquidlook .arrow.next i:before { content: 'r'; }
.liquidlook .arrow .label { display: none; }

.liquidlook .slick-dots {
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 4px;
}
.liquidlook .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    margin-right: 8px;
    border: solid 1px #000;
    padding: 0;
    background: transparent;    
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.liquidlook .slick-dots button {
    background: none;
    width: 100%;
    height: 100%;
    color: #fff;
    border: none;
    cursor: pointer;
    text-indent: -999em;
}
.liquidlook .slick-dots li:hover {
    background: #000;
}
.liquidlook .slick-dots li.slick-active {
    background: #000;
}

/* Mobile Universal [[ Orange Border ]] */
@media only screen and (max-width: 767px) {
    .liquidlook .arrow {
        display: none;
        width: 14px;
        height: 14px;
        font-size: 14px;
        opacity: 1;
    }
    .liquidlook .arrow.prev { left: 20px; }
    .liquidlook .arrow.next { right: 20px; }

    .liquidlook .arrow.prev i:before { content: 'l'; }
    .liquidlook .arrow.next i:before { content: 'r'; }
    .liquidlook .arrow i:before {
        line-height: 14px;
    }
    
    .liquidlook .slick-dots {
        bottom: 0;
    }


}

