.view-calendar {
    margin-bottom:80px;
}

/* left column */
.view-calendar .left-column svg {
  width: 1rem;
  fill: #0060A9;
}
.view-calendar .left-column .calendar-event {
  border-bottom: 1px solid #dedede;
}
.view-calendar .left-column .calendar-event .field-content.date-text {
  font-size: 0.7rem;
}
.view-calendar .left-column .calendar-event .field-content a {
  color: #0060A9;
  text-decoration:underline;
  font-weight:bold;
}

/* border updating */
.calendar-view-table td {
    border: 1px dashed var(--calendar-view-color-grey);
}
table>:not(caption)>*>* {
    border: 0px;
}

/* filters */
.view-calendar .view-filters .form-select {
    color: #004F9A;
    display: block !important;
    width: 100% !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    border-radius: 0 !important;
    border: 1px solid #dedede;
    margin-top: .25rem;
    margin-bottom: 1rem;
    left: 0;
    top: 0;
}

/* buttons next and prev month */
.calendar-view-pager {
    list-style-type: none;
    padding-left:0;
    justify-content: center;
    float:right;
}
@media only screen and (max-width: 991px) {
  .calendar-view-pager {
    flex-direction: row;
    float: initial;
    margin-top: 1rem;
  }
}
.calendar-view-pager .pager__item {
    margin:0px;
}
.calendar-view-pager .pager__previous,
.calendar-view-pager .pager__next {
    width:68px;
}
@media only screen and (max-width: 991px) {
  .calendar-view-pager .pager__previous,
  .calendar-view-pager .pager__next {
    flex-grow: initial;
  }
}
.calendar-view-pager .pager__previous a {
    background-color: #0060A9;
    width:60px;
    height:57px;
    background-image: url('../images/prev.svg');
    background-repeat:no-repeat;
    background-size: 30px;
    background-position:center center;
    color:#fff;
    text-align:center !important;
    font-size:0px;
    margin:0px 7px 0px 0px;
}
.calendar-view-pager .pager__next a {
    background-color: #0060A9;
    width:60px;
    height:57px;
    background-image: url('../images/next.svg');
    background-repeat:no-repeat;
    background-size: 30px;
    background-position:center center;
    color:#fff;
    text-align:center !important;
    font-size:0px;
    margin:0px 0px 0px 7px;
}

.calendar-view-pager .pager__current {
    background: #E7E5E5;
    color:#000;
    max-width:300px;
    min-width:150px;
}

/* table head */
.calendar-view-table tr th {
    background: #E7E5E5;
    color:#000;
    border: 1px dashed var(--calendar-view-color-grey);
}
.calendar-view-table caption {
    display:none;
}

/* day style */
.calendar-view-table tr td {
    padding:0;
}
.previous-month .calendar-view-day,
.next-month .calendar-view-day,
.current-month .calendar-view-day {
    padding:10px 0 10px 0;
}

.previous-month .calendar-view-day .calendar-view-day__number,
.next-month .calendar-view-day .calendar-view-day__number,
.current-month .calendar-view-day .calendar-view-day__number {
  font-size: 0.75rem;
  font-weight: bold;
}
.current-month .calendar-view-day .calendar-view-day__number {
    background: none;
    color: #0060A9;
    border-radius: 0;
    margin-right:10px;
}
.previous-month .calendar-view-day .calendar-view-day__number,
.next-month .calendar-view-day .calendar-view-day__number {
    background: none;
    color: #555;
    border-radius: 0;
    margin-right:10px;
}
.current-month .calendar-view-day .calendar-view-day__row {
    background-color: #D2DFEB;
    border: 0px;
    border-radius: 0;
    margin: 0 10px 0 10px;
}
.previous-month .calendar-view-day .calendar-view-day__row,
.next-month .calendar-view-day .calendar-view-day__row {
    border-radius: 0;
    margin: 0 10px 0 10px;
    border: 0px;
    background-color: #DDE5E8;
    background-color: #D2DFEB;
}

/* svg */
.view-calendar .right-column svg {
  width: 1rem;
  fill: #0060A9;
}

/* text color */
.current-month .calendar-view-day .calendar-view-day__row .views-field {
    color:#000;
}
/* time font size */
.current-month .calendar-view-day .calendar-view-day__row .views-field-field-event-date {
    font-size: 11px;
    font-weight:bold;
    text-align:right;
}
.current-month .calendar-view-day .calendar-view-day__row .field-content a {
    color: #0060A9;
    text-decoration:underline;
    font-weight:bold;
}
/* multi day event */
.previous-month .calendar-view-day .calendar-view-day__rows .is-multi--first,
.next-month .calendar-view-day .calendar-view-day__rows .is-multi--first,
.current-month .calendar-view-day .calendar-view-day__rows .is-multi--first {
    margin:0 0 0 10px;
}
.previous-month .calendar-view-day .calendar-view-day__rows .is-multi--last,
.next-month .calendar-view-day .calendar-view-day__rows .is-multi--last,
.current-month .calendar-view-day .calendar-view-day__rows .is-multi--last {
    margin:0 10px 0 0;
}
.previous-month .calendar-view-day .calendar-view-day__rows .is-multi--middle,
.next-month .calendar-view-day .calendar-view-day__rows .is-multi--middle,
.current-month .calendar-view-day .calendar-view-day__rows .is-multi--middle {
    margin: 0;
}

