@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,600|Roboto+Slab');
body {
    font-family: 'Dosis', sans-serif;
    font-size: 75%;
}


/* ---- Padding for the entire calendar */

.fc {
    padding: 25px 0px;
}

@media (min-width: 600px) {
    .fc {
        padding: 25px 30px;
    }
}

@media (min-width: 800px) {
    .fc {
        padding: 50px 60px;
    }
}


/* ---- Event Styles */

.fc-event.fc-event-skin {
    background-color: white !important;
    border: 1px solid #7C1B5C !important;
    border-radius: 7px;
}

.fc-event-inner.fc-event-skin,
.fc-event-head.fc-event-skin {
    background-color: transparent !important;
    border: 0;
}

.fc-event {
    padding: 2px;
}

.fc-view.fc-view-agendaDay .fc-event {
    padding: 5px;
}

.fc-event-inner {
    border: 0;
}

.fc-grid .fc-event {
    margin: 5px;
}

.fc-event-head {
    padding: 2px;
}

.fc-event-time {
    color: #7C1B5C;
    font-weight: 600;
}

@media (min-width: 800px) {
    .fc-grid .fc-event-inner {
        display: flex;
    }
    .fc-grid .fc-event-time {
        padding: 0px 5px;
    }
}

.fc-event-content,
.fc-event-title {
    font-weight: 300;
    color: #000104;
}


/* ---- Month View Styles */

.fc-grid .fc-day-number {
    float: left;
    margin: 5px;
}


/* ---- Border and Agenda Styles */

table thead tr th.fc-widget-header {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-weight: normal;
}

.fc-widget-header .fc-agenda-divider-inner {
    background: #ccc;
    height: 1px;
}

.fc-widget-header.fc-agenda-divider {
    border: 0;
}

.fc-view table thead th {
    padding-bottom: 5px;
}

.fc-agenda .fc-agenda-axis {
    border-top: 0;
    border-left: 0;
    border-bottom: 0;
    padding-right: 10px;
}

.fc-agenda .fc-widget-content {
    border-top: 0px;
    border-bottom: 0px;
}

.fc-agenda-days {
    border-bottom: 1px solid #ccc;
}


/* ---- Header Styles */

.fc-header {
    border-bottom: 1px solid #4AAB54;
    margin-bottom: 35px;
}

.fc-header td {
    vertical-align: middle;
}

.fc-header-title h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2em;
    font-weight: normal;
}

.fc-header-title:before {
    content: "Volunteer Calendar";
    text-transform: uppercase;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    color: #4AAB54;
    letter-spacing: 2px;
}

.fc .fc-header-center {
    text-align: right;
    width: 100%;
    padding-right: 10px;
}

@media (max-width: 600px) {
    .fc .fc-header-left {
        display: block;
    }
    .fc .fc-header-center {
        display: block;
        text-align: left;
        float: left;
        width: initial;
    }
    .fc .fc-header-right {
        display: block;
        text-align: left;
        float: left;
    }
}

.fc-state-default,
.fc-state-default .fc-button-effect span {
    background: #ffffff;
    font-size: 14px;
}

.fc-state-default .fc-button-inner {
    background: transparent;
}

.fc-state-default .fc-button-inner {
    color: #7C1B5C;
    border: 0px;
}

.fc-state-highlight {
    background: #eeeeee;
}

.fc-button.fc-state-default,
.fc-button.fc-state-active,
.fc-button.fc-state-hover {
    background-color: white;
    border: 1px solid #7C1B5C;
    color: #7C1B5C;
    padding: 3px 7px !important;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 400px) {
    .fc-button.fc-state-default,
    .fc-button.fc-state-active,
    .fc-button.fc-state-hover {
        padding: 0px !important;
    }
}

.fc-button.fc-state-disabled,
.fc-button.fc-state-active,
.fc-button.fc-state-hover {
    background-color: #7C1B5C;
    border: 1px solid #7C1B5C;
    background-image: none;
}

.fc-button.fc-state-disabled .fc-button-inner,
.fc-button.fc-state-active .fc-button-inner,
.fc-button.fc-state-hover .fc-button-inner {
    color: white;
}

.fc-state-default .fc-button-effect span {
    background: transparent;
    border: 0;
}

.fc-button.fc-corner-left {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.fc-button.fc-corner-right {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}


/* for sizing of text symbols */

.fc-button-next .fc-button-content,
.fc-button-prev .fc-button-content {
    font-family: serif;
}

/* hide all day, before 8am, after 8pm */
.fc-agenda-allday, .fc-agenda-divider,
.fc-slot0, .fc-slot1, .fc-slot2, .fc-slot3, .fc-slot4, .fc-slot5,
.fc-slot6, .fc-slot7, .fc-slot8, .fc-slot9, .fc-slot10, .fc-slot11,
.fc-slot12, .fc-slot13, .fc-slot14, .fc-slot15,
.fc-slot42, .fc-slot43, .fc-slot44, .fc-slot45, .fc-slot46, .fc-slot47 {
    display: none;
}