/*------------------------------------*\
    
    WebFX Slick Customizations - Global styling for all slider/carousels

    Add custom slider styling to this file if it should be applied to all slick sliders on the site
    Otherwise, put your slider-specific styles in individual block stylesheets

\*------------------------------------*/


/* Preloader affect for your slider */

.js-slider-has-preloader {
    /* Add class to slider to show  */
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    /* Create and upload a loading gif to your image directory */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    /* Update width based on gif size */
    height: 50px;
    /* Update height based on gif size */
    transition: all .5s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}



.slick-dots {
    padding: 0 0;
    margin: 0;
    list-style: none;
    position: absolute;
    width: 100%;
    text-align: right;
    right: 50px;
    bottom: 40px;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    margin: 0 3px;
    padding: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    line-height: 13px;
    text-align: center;
    background: #FFFFFF;
}
    
.slick-dots li::before {
    display: none;
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    background-color: transparent;
    width: 13px;
    height: 13px;
    border: none;
    padding: 0;
    text-indent: -99999px;
}

.slick-dots li.slick-active button {
    background-color: #FFDA00;
}

/* slick-prev,
slick-next */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0;
    display: block;
    width: 48px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #FFDA00;
    z-index: 9;
    text-align: center;
    border-radius: 0;
    color: #000000;
}

.slick-prev {
    left: 50%;
    margin-left: -55px;
}

.slick-next {
    right: 50%;
    margin-right: -55px;
}

.slick-prev::before {
    content: "\e903";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 17px;
    line-height: 46px;
    font-family: 'icomoon' !important;
}

.slick-prev:hover,
.slick-prev:focus {
    color: #ffffff;
    background: #000000;
}

.slick-next::before {
    content: "\e904";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 17px;
    line-height: 46px;
    font-family: 'icomoon' !important;
}

.slick-next:hover,
.slick-next:focus {
    color: #ffffff;
    background: #000000;
}


/**
 * Hide all but first slide until initialised
 */

.slick-slider:not(.slick-initialized) .slick-slider__item:not(:first-of-type) {display: none}


/* Slider-recipe */

.recipe-main-right .images-grid .slick-initialized .slick-slide {
    display: inline-block !important;
}

.recipe-main-right .images-grid .slick-list {
    padding: 0px !important;
}