@CHARSET "UTF-8";

.agenda-calendar {
    position: relative;
    overflow: hidden;
}

.agenda-calendar.no-time-line .cal-day {
    visibility: hidden;
}

.cal-day:hover .appointment-holder {
    background-color: #f9f9f9;
}

.cal-day:hover .time {
    color: #222;
}

.cal-day .time {
    color: #ccc;
}

.cal-day .appointment-holder {
    border-top: 1px solid #ccc
}

.cal-day .appointment-holder .row {
    padding: 1em 0
}

.cal-day .appointment-holder .row:first-child {
    border-bottom: 1px dotted #eee; 
}

.calendar-days {
    margin-top: -912px;
}

@media (max-width: 992px) {
    .calendar-days {
        margin-top: -1129px;
    }
}

.agenda-day-content {
    margin: 25px 0;
}

.agenda-items {
    left: 0;
    right: 0;
    bottom: 0%;
    top: 0;
    /* Attention! only for testing reasons. Set back to 0 */
/*    top: -49.999999%; */
    /**/
    position: absolute;   
}

.agenda-item {
    background: rgba(255, 255, 255, .7);
    box-sizing: border-box;
    position: absolute;
    padding: 1px;
    left: 10%;
    width: 70%;
}

.agenda-item.has-details:not(.break) {
    cursor: pointer;
}

.agenda-item:not(.has-details) .topic b {
    font-weight: normal;
}

.agenda-item.has-details:not(.break) .topic b {
    font-weight: bold;
}

.agenda-item.has-details:not(.break):hover .topic .title {
    color: #db0031;
}

.agenda-item .time {
    border-right: 3px solid #1595d3 /*rgba(241, 99, 125, .7)*/;
    font-size: .8em !important;
    height: 100%;
    text-align: right;
}

.agenda-item-main-row {
    height: 100%;
}

.agenda-item .icons {
    display: inline-block;
/*    float: right;   */
    font-size: .9em;
}

.agenda-item .icons img {
    height: 25px;
    width: 25px;
}


/* Push right items */
/*
.agenda-item.push-right {
    background: rgba(215, 215, 217, .2);
    border-left: 3px solid #1595d3;
    left: 70%;
    padding: 1em;
    width: 30%;
    z-index: 6;
}
*/

.agenda-item.push-right {
    left: 70%;
    z-index: 2;
}

.agenda-item.push-right .time {
    border-color: #a3c969;
}

.agenda-item.push-right .topic {
    background-color: #e7f5d2;
    height: 100%;
}


/* Agenda item details */
.agenda-item-details {
    background: #fff;
    border: 1px solid #999;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: rgba(255, 255, 255, 1);
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    box-shadow: 7px 0 8px rgba(0, 0, 0, .4);
    display: none;
    margin-left: 5%;
    position: absolute;
    width: 0%;
    z-index: 10;
}

.agenda-item-details .inner {
    padding: .5em 2em;
}

.agenda-item-details .inner h1 {
    font-size: 1.7em;
    margin: 0;
    padding: 0;
}

.agenda-item-details .inner h2 {
    color: #db0031;
    font-size: .8em;
    font-weight: bold;
    margin: 1em 0 .3em;
    padding: 0;
    text-transform: uppercase;
}

.agenda-item-details .inner a {
}

.agenda-item-details .inner .person {
    margin: 0 0 10px;
}

.agenda-item-details .inner .person .image {
    border-radius: 100px;
    float: left;
    height: 50px;
    margin: 0 10px 0 0; 
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 50px;
}

.agenda-item-details .inner .person .image img {
    display: block;
    height: 60px;
    left: 50%;
    margin: -30px 0 0 -30px;
    position: absolute;
    top: 50%;
    width: 60px;
}

.agenda-item-details .inner .person .name {
    float: left:
}

.agenda-item.details-visible .time {
    border-color: #1595d3;
}

/* Program Point is a Break */
.agenda-item.break .topic {
    height: 100%;
}

.agenda-item.break .topic b {
    font-weight: normal;
    height: 100%;
    line-height: 1em;
    margin-top: -.5em;
    position: absolute;
    top: 50%;
}

.agenda-item.break .time {
    border: 0;
    position: relative;
}

.agenda-item.break .time img {
    margin-top: -10px;
    position: absolute;
    right: -10px;
    top: 50%;
    height: 22px;
}

/* Hide Timeline */
.agenda-calendar.no-time-line .agenda-item {
    left: 0;
}

.agenda-calendar.no-time-line .agenda-item.push-right {
    left: 60%;
}