@charset "utf-8";
/* CSS Document */

.slide {
    background: #151515;
    position: relative;
}

.slide .item {
    position: relative;
    padding: 0 20px;
    width: 160px;
}

.slide a {
    display: block;
    width: 120px;
    height: 250px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.slide .reflection {
    position: absolute;
    top: 30px;
    left: 0;
    width: 120px;
    text-align: center;
    z-index: 2;
}

.slide a span.text {
    background: url(../../img/layout/ellipse1.png) no-repeat center top;
    color: #9a8052;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    display: block;
    padding: 9px 5px;
    margin: 0 5px;
    position: absolute;
    top: 165px;
    left: 0;
    text-align: center;
    z-index: 2;
    width: 100%;
    margin: auto;
    z-index: 4;
    white-space: normal;
    word-wrap: normal;
}

.slide a span.label_flavour_of_the_month {
    position: absolute;
    top:10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: url(../../img/layout/label_flavour_of_the_month.png) no-repeat;
    background-size: 80px 80px;
    z-index: 3;
}

.slide a span.over {
    display: block;
    position: relative;
    right: 20px;
    width: 160px;

    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in;
    -moz-transition: opacity 0.5s ease-in;
    -o-transition: opacity 0.5s ease-in;
    -ms-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
}

.slide.with_rollover .cycle-slide:hover a span.text,
.slide.with_rollover .cycle-slide:hover .reflection, 
.slide.with_rollover .cycle-slide:hover a span.label_flavour_of_the_month {
    display: none;
}

.slide.with_rollover .cycle-slide:hover a span.over {
    width: 160px;
    height: 250px;
    background-size: cover;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "alpha(opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
}

.slide .cycle-slide:hover a span.text {
    background: url(../../img/layout/ellipse3.png) no-repeat center top;
    color: #fff;
}

.slide.with_rollover .cycle-slide:hover a:hover {
    background-color: none !important;
}

.slide .action {
    position: absolute;
    top: 38%;
    font-size: 60px;
    color: #f4e8ba !important;
    width: 80px;
    height: 80px;
    display: block;
    z-index: 10;
}

.slide .action:hover {
    color: #b0b0b0 !important;
    background: none !important;
}

section.slide {
    background: url(../../img/layout/slide-bg.jpg) repeat;
}

.gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: inherit;
    display: block;
    z-index: 9;
    pointer-events: none;
    background-image: -webkit-linear-gradient(top, #000000, #999999);
 /* Chrome 10-25, iOS 5+, Safari 5.1+ */
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(21,21,21,0));
}

.gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: inherit;
    display: block;
    z-index: 9;
    pointer-events: none;
    background-image: -webkit-linear-gradient(top, #000000, #999999);
 /* Chrome 10-25, iOS 5+, Safari 5.1+ */
    background-image: linear-gradient(to left, rgba(0,0,0,1), rgba(21,21,21,0));
}