﻿#calendar {
    font-weight: 700;
}

.month {
    line-height: 2.5em;
}

.header-day {
    float: left;
    width: 14.2857%;
    padding: 14px;
    text-align: center;
    color: white;
    background-color: #414141;
    /*background-color: #3883a3;*/
}

.day {
    float: left;
    width: 14.2857%;
    height: 66px;
    padding: 24px 0;
    text-align: center;
    color: #4f4f4f;
    background-color: #ebebeb;
    border-bottom: 2px solid white;
    background-image: url('../Images/triangle.svg');
    background-size: cover;
    background-position: center;
}

.has-event {
    font-weight: bold;
    text-decoration: underline;
    font-size: xx-large;
    padding: 5px;
}

.today {
    background-color: white;
    background-image: none;
}

.event-header {
    padding: 14px;
    background-color: #71bbd2;
    text-align: center;
    color: white;
    letter-spacing: 1px;
    font-weight: 700;
}

.event {
    margin-bottom: 1em;
}

#dayEvents {
    padding: 14px;
}

.eventTitle {
    font-size: 1.2em;
    font-weight: 700;
}

.calendar-prev {
    line-height: 2.5em;
    padding-left: 15px;
    width: 40px;
    float: left;
    text-align: left;
}

    .calendar-prev:hover {
        cursor: pointer;
        background-color: #71bbd2;
        border-radius: 50%;
    }

.calendar-next {
    line-height: 2.5em;
    padding-right: 15px;
    width: 40px;
    float: right;
    text-align: right;
}

    .calendar-next:hover {
        cursor: pointer;
        background-color: #71bbd2;
        border-radius: 50%;
    }

.icon-event-location {
    margin-right: 5px;
}