.calendar-entry {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(255,255,255,0.8);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
.calendar-entry:hover {
    cursor: pointer;
}
.calendar-entry:hover .calendar-entry-more {
    color: #FFC300;
}

.calendar-entry i {
    width: 1.25em;
    text-align: center;
}

@media all and (min-width: 40.6875em) {
    /* min-width is 701px */

    .calendar-entry-more {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 35px;
    }

}

@media all and (max-width: 40.625em) {
    /* max-width is 700px */

    .calendar-entry-more {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%
    }

}

.calendar-entry-categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.calendar-entry-category {
    margin: 2px;
    padding: 2px;
    background: #FFC300;
    border: 1px solid #FFC300;
    color: #000000;
    font-size: 0.7em;
    font-weight: bold;
}

.calendar-entry-main {
    margin-right: 35px;
}

.calendar-entry-meta {
    display: inline-block;
    border-bottom: 1px solid #000000;
}

.calendar-entry-date {
    margin-right: 20px;
}

.calendar-entry-time {
    white-space: nowrap;
}

.calendar-entry-title {
    padding: 5px 0;
    color: #FFC300;
    font-size: 1.1em;
    font-weight: bold;
}

.calendar-entry-details {
    display: none;
}

.calendar-entry-location {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #000000;
}