﻿.predictive {
    position: relative;
    float: right;
    margin-right: 17px;
    width: 296px;
    max-width: 66px;
}

.predictive.is-active {
    margin-right: -44px;
    max-width: 296px;
    transition: all 0.2s linear;
}

.predictive-search-bar {
    width: 100%;
    max-width: 296px;
}

@media only screen and (min-width: 460px) {
    .predictive {
        width: 376px;
    }

        .predictive.is-active {
            margin-right: 17px;
            max-width: 376px;
        }

    .predictive-search-bar {
        max-width: 376px;
    }
}

@media only screen and (min-width: 560px) {
    .predictive {
        width: 476px;
    }

        .predictive.is-active {
            max-width: 476px;
        }

    .predictive-search-bar {
        max-width: 476px;
    }
}

@media only screen and (min-width: 760px) {
    .predictive {
        width: 526px;
    }

        .predictive.is-active {
            max-width: 526px;
        }

    .predictive-search-bar {
        max-width: 526px;
    }
}

@media only screen and (min-width: 830px) {
    .predictive {
        width: 576px;
    }

        .predictive.is-active {
            max-width: 576px;
        }

    .predictive-search-bar {
        max-width: 576px;
    }
}

@media only screen and (min-width: 960px) {
    .predictive {
        width: 676px;
    }

        .predictive.is-active {
            max-width: 676px;
        }

    .predictive-search-bar {
        max-width: 676px;
    }
}

.predictive-search-bar > input {
    position: relative;
    display: block;
    margin-top: 4px;
    padding: 0;
    width: 0;
    width: 100%;
    opacity: 0;
    height: 39px;
    line-height: 39px;
    border: 0;
    transition: all 0.2s linear;
    background-color: #fff;
}

.predictive-search-bar > input.is-visible {
    z-index: 3;
    padding: 0 10px;
    width: 100%;
    border: solid 1px #eeeded;
    opacity: 1;
}

    .predictive-search-bar > input[type="text"]:focus {
        outline: none;
        border: solid 1px #999;
    }

.predictive-search-bar > .predictive-search-icon {
    z-index: 4;
    display: inline-block;
    padding: 0;
    width: 28px;
    height: 28px;
    top: 10px;
    right: 10px;
    position: absolute;  
    cursor: pointer;
    color: #fff;
}

    .predictive-search-bar > .predictive-search-icon.is-active {
        color: #999;
    }

.predictive-results {
    position: absolute;
    top: 41px;
    left: 1px;
    width: 594px;
    width: 99.66442953020134%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 2px 2px #999;
}

/*.predictive-results-list > ul {
    margin-bottom: 15px;
}

.predictive-results-list > ul:last-of-type {
    margin-bottom: 0;
}*/

.predictive-results-list > ul > li {
    position: relative;
    border-bottom: solid 1px #eeeded;
    padding: 0 0 0 10px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.predictive-results-list > ul > li > .content-title {
    display: inline-block;
    width: 450px;
    width: 75.75757575757576%;
    height: 32px;
    line-height: 32px;
}

.predictive-results-list > ul > li > .content-type {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    padding-left: 10px;
    width: 100px;
    height: 34px;
    line-height: 34px;
}

.predictive-results-list > ul > li > .content-type.is-event {
    width: 60px;
}

.predictive-results-list > ul > li > .content-type.is-news {
    width: 50px;
}

.predictive-results-list > ul > li > .content-type.is-review {
    width: 80px;
    width: 60px;
}

.predictive-results-list > ul > li > .content-type.is-interview {
    width: 80px;
}

.predictive-results-list > ul > li > .content-type.is-competition {
    width: 95px;
}

.predictive-results-list > ul > li:hover, .predictive-results-list > ul > li.is-selected {
    background-color: #f5f5f5;    
}

.predictive-results-summary {
    position: relative;
    padding: 15px 40px 15px 0;
    text-align: right;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.predictive-results-summary > span.icon-play2 {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    color: #ba1a56;
    color: #762b90;
}