body {
    overflow-x: hidden;
}

.trendsDayProgram {
    position: relative;
    left: -49.9vw;
    width: 100vw;
    margin-top: 2em;
    margin-left: 50%;
}

.trendsDayProgram__scrollWindow {
    width: 100%;
    overflow: auto;
}

.trendsDayProgram__streams {
    margin: 1.5em 0 0;
    padding: 0;
    list-style: none;
}

.trendsDayProgram__stream {
    display: flex;
    align-items: stretch;
    margin-bottom: 2px;
    background-color: #f2f2f2;
}

.trendsDayProgram__stream:last-child {
    margin-bottom: 0;
}

.trendsDayProgram__streamStart {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    width: calc(9.5em + 48px);
}

.trendsDayProgram__streamTitle {
    display: flex;
    align-items: center;
    padding: 0.5em 0.5em 0.5em 48px;
}

.trendsDayProgram__streamTitleLink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(9.5em + 48px);
    padding: 0.5em 0.5em 0.5em 48px;
    text-decoration: none;
}

.trendsDayProgram__streamStartText {
    font-size: 0.8em;
}

.trendsDayProgram__streamTitleLink .trendsDayProgram__streamTitle {
    display: block;
    padding: 0;
}

.trendsDayProgram__streamTitleLink:hover .trendsDayProgram__streamTitle {
    color: #d52b1e;
}

.trendsDayProgram__timeSlots {
    display: flex;
    margin: 0;
    padding: 0.5em;
    list-style: none;
    background-color: #f2f2f2;;
}

.trendsDayProgram__timeSlot {
    position: relative;
    width: 360px;
    flex: 0 0 360px;
    padding: 0;
    list-style-image: none !important;
    border-left: 1px solid #d8d8d8;
}

.trendsDayProgram__item {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    padding: 0.5em 0.7em;
    border-radius: 4px;
    box-shadow: 0 0 0 1px inset #fff;
    background-color: #ee3125;
    color: #fff;
    z-index: 1;
    transition: transform 0.2s ease-in-out;
}

.trendsDayProgram__item--hasLink:hover {
    transform: translate(0, -4px);
}

.trendsDayProgram__item--small .trendsDayProgram__itemTime,
.trendsDayProgram__item--small .trendsDayProgram__itemTitle,
.trendsDayProgram__item--small .trendsDayProgram__itemMeta {
    position: absolute;
    left: -999em;
}

.trendsDayProgram__item--small.trendsDayProgram__item--hasLink::before {
    content: '\2026';
    position: absolute;
    top: 0.5em;
    left: 0;
    right: 0;
    text-align: center;
}

.trendsDayProgram__timeSlots[style] .trendsDayProgram__item {
    bottom: 0;
}

.trendsDayProgram__item > * {
    color: #fff;
}

.trendsDayProgram__item--media {
    background-color: #f58221;
}

.trendsDayProgram__item--ideation {
    background-color: #f387b6;
}

.trendsDayProgram__item--technology {
    background-color: #2E4057;
}

.trendsDayProgram__item--qa {
    background-color: #aeaa6c;
}

.trendsDayProgram__item--other {
    color: #333;
    background: repeating-linear-gradient(45deg, #dcdcdc, #dcdcdc 10px, #d0d0d0 10px, #d0d0d0 20px);
}

.trendsDayProgram__item--other > * {
    color: #333;
}

.trendsDayProgram__item--nothing {
    background-color: #8d7d6c;
}

.trendsDayProgram__itemTitle {
    font-size: 1rem;
    font-weight: normal;
    flex-grow: 1;
}

.trendsDayProgram__itemTime {
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 0.3em;
}

.trendsDayProgram__itemMeta {
    margin: 0;
    font-size: 0.8rem;
}

.trendsDayProgram__itemLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -999em;
}

/**
 * Hours
 */

.trendsDayProgram__wholeHour {
    display: none;
}

.trendsDayProgram__stream:first-child .trendsDayProgram__wholeHour {
    display: block;
    position: absolute;
    top: -1.7em;
    left: -1px;
    border-left: 1px solid #d8d8d8;
    padding: 0 0.5em;
}

/**
 * Scroll buttons
 */

.has-touch .trendsDayProgram__scrollButton,
.trendsDayProgram--noScrollBy .trendsDayProgram__scrollButton {
    display: none;
}

.no-touch .trendsDayProgram__scrollButton {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 48px;
    max-width: 10%;
    padding: 0;
    border: none;
    opacity: 0.7;
    text-indent: -999em;
    background: rgba(255, 255, 255, 0.75) url(../../../img/icon--arrowLeftRed.svg) no-repeat 50%;
    background-size: 9px;
    z-index: 1;
}

.no-touch .trendsDayProgram__scrollButton:focus,
.no-touch .trendsDayProgram__scrollButton:hover {
    outline: none;
    opacity: 1;
}

.no-touch .trendsDayProgram__scrollButton--right {
    right: 0;
    left: auto;
    background-image: url(../../../img/icon--arrowRightRed.svg);
}
