.calendar
{
position: relative;
overflow: hidden;
text-align: center;
font-family: Arial;
font-size: 14px;
background: #ffffff;
/* Farbe Überschrift Monat*/
color: #000000;
}
.calendar a
{
text-decoration: none;
color: inherit;
}
/* Monatbutton link rechts*/
.calendar header .simple-calendar-btn
{
display: inline-block;
position: absolute;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
color: #c0c0c0;
border-radius: 50%;
border: 2px solid #c0c0c0;
}
.calendar header .simple-calendar-btn:hover
{
border: 2px solid #c0c0c0;
background: #c0c0c0;
color: #ffffff;
}
.calendar header .simple-calendar-btn:before
{
content: '';
position: absolute;
top: 9px;
left: 8px;
width: 8px;
height: 8px;
border-style: solid;
border-width: 3px 3px 0 0;
transform: rotate(45deg);
transform-origin: center center;
}
.calendar header .btn-prev
{
top: 0;
left: 0;
transform: rotate(-180deg);
}
.calendar header .btn-next
{
top: 0;
right: 0;
}
.calendar header .btn-next:before
{
transform: rotate(45deg);
}
.calendar header .month
{
padding: 0;
margin: 0;
}
/* Überschrift Terminanzeige */
.ansicht
{
padding: 0;
margin: 0;
    padding-bottom:20px;
    color: #000000;
}
/*Jahranzeige */
.calendar header .month .year
{
color: #000000;
font-size: 12px;
font-weight: 100;
}
.calendar table {
width: 100%;
margin: 20px 0;
border-spacing: 0px;
/* Rahmen außen um alle Tage*/
border-right: 1px solid #c0c0c0;
border-bottom: 1px solid #c0c0c0;
}
/* Größe Wochentage oben*/
.calendar thead
{
font-size: 14px;
font-weight: 600;
/* Farbe Wochentage*/
color: #008000;
}
/* Rahmen um die Tage*/
.calendar td
{
padding: .8em .1em;
border-top: 1px solid #c0c0c0;
border-left: 1px solid #c0c0c0;
}

/* Tage im Kalender */
.calendar .day {
position: relative;
color: #000000;
display: inline-block;
font-size: 14px;
width: 2.5em;
height: 2.5em;
line-height: 2.5em;
border-radius: 50%;
border: 2px solid transparent;
cursor: pointer;
}
/* aktueller Tag Termin Kreisanzeige usw */
.calendar .day:hover
{
border: 2px solid #0080c0;
}
.calendar .day.today
{
background: #0080c0;
color: #ffffff;
}

/* aktueller Tag Termin */
.calendar .day.today.has-event:after {
/* Termine aktueller Punkt */
background: #ff0000; }

/* nicht aktiver Monat */
.calendar .day.wrong-month
{
color: #CBD1D2;
}
.calendar .day.wrong-month:hover {
border: 2px solid transparent; }

/* Tag hat einen Termin */
.calendar .day.has-event:after
{
content: '';
position: absolute;
top: calc(50% + .9em);
left: calc(50% - 4px);
width: 10px;
height: 10px;
border-radius: 50%;
/* Termine Punkt */
background: #ff0000;
}
.calendar .day.disabled
{
cursor: default;
}
.calendar .day.disabled:hover
{
border: 2px solid transparent;
}


/* Hintergrund Terminanzeige */
  .calendar .event-container {
    font-size: 14px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    background-color: #aaaaaa;
    box-sizing: border-box;
    }
    .calendar .event-container .event-wrapper {
      overflow-y: auto;
      max-height: 89%; }

/* Terminansicht schließen */
.calendar .event-container .close {
position: absolute;
width: 20px;
height: 20px;
top: 10px;
right: 10px;
cursor: pointer;
border-radius: 50%;
border: 2px solid black;
background-color: white; }

/* Terminansicht schließen */
.calendar .event-container .close:before, .calendar .event-container .close:after
{
content: '';
position: absolute;
top: 2px;
left: 8px;
width: 4px;
height: 80%;
background-color: black;
}
.calendar .event-container .close:before
{
transform: rotate(45deg);
}
.calendar .event-container .close:after
{
transform: rotate(-45deg);
}
/* inhalt des Termin */
.calendar .event-container .event
{
margin: 0 auto;
position: relative;
width: 99%;
padding: 1em;
margin-bottom: 1em;
background: #ffffff;
box-sizing: border-box;
text-align: left;
color: #000000;
border-radius:5px;
}


.calendar .event-container .event-date {
margin-bottom: 1em; }
.calendar .event-container .event-hour {
float: right; }
.calendar .event-container .event-summary {
font-weight: 600; }

/* Hintergrund Terminanzeige beim Öffnen */
.calendar .filler {
position: absolute;
width: 0;
height: 0;
border-radius: 50%;
background: #aaaaaa;
transform: translate(-50%, -50%); }

.footer{
padding-bottom: 5px !important;
border: none !important;
background-color: transparent;
font-size: 10px;
text-align: left;
}
.footer a{
color: #808080;
text-decoration: none !important;
}