﻿/* RP_20180707
    Styles for the Color of the Year Timeline widget.
    This style sheet is brought in programatically via /Controls/COY/timeline.ascx.vb
*/
.colorsOfTheYear p,
.colorsOfTheYear div {
    margin: 0;
    padding: 0;
}

.colorsOfTheYear {
    max-width: 1200px;
    margin: auto;
}

    .colorsOfTheYear .thumbnails {
        overflow-x: scroll;
        overflow-y: hidden;
        display: inline-flex;
        width: 100%;
        height: 210px;
    }

    .colorsOfTheYear h2.headline {
        font-family: HelveticaNeueLTStd-ThIt, "Helvetica Neue LT Std", sans-serif;
        font-size: 35px;
        padding: 0 0 0 1rem;
    }

    .colorsOfTheYear .chip {
        float: left;
        font-family: helvetica, sans-serif;
        margin: .5rem;
        height: 190px;
        width: 136px;
        background-color: #fff;
    }

    .colorsOfTheYear .swatch {
        height: 70%;
    }

    .colorsOfTheYear p.year {
        color: #fff;
        font-size: 51px;
        font-weight: bold;
        letter-spacing: -2px;
        padding: 86px 1px 0 1px;
    }

    .colorsOfTheYear img.logo {
        margin: 3px 0 0 1px;
        width: 96px;
    }

    .colorsOfTheYear p.name,
    .colorsOfTheYear p.number {
        font-size: 13px;
    }

    .colorsOfTheYear a {
        text-decoration: none;
    }

    .colorsOfTheYear ::-webkit-scrollbar {
        width: 10px;
        height: 6px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    .colorsOfTheYear ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    .colorsOfTheYear ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #e1e1e1;
        height: 3px;
    }

    .colorsOfTheYear ::-webkit-scrollbar-corner {
        display: none;
        height: 0px;
        width: 0px;
    }

/**/
/**/
/*  IE  */
/**/
@media all and (-ms-high-contrast: none), all and (-ms-high-contrast: active) {
    .colorsOfTheYear .chip {
        width: auto;
    }
    .colorsOfTheYear p.year {
        padding-top: 78px;
    }
}