#kalender-header{
    display: block;
    color:#fff;
    font-size: 2em;
    text-align: center;
    margin: 60px 0 20px 0;
}

#calendar{
    display: flex;
    justify-content: center;
    padding:0 25px;
}

.calendar-body .calendar-events{
    display: none;
}

.calendar-current-date {
    font-weight: bold;
    font-size: 1.45rem;
}
.calendar-selected{
    font-weight: bold !important;
}

.calendar-container {
    background: #fff;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    max-width: 2048px;
}
.calendar-container .calendar-header{
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
}
.calendar-container .calendar-type{
    display: flex;
    margin-right: auto;
    margin-left: 15px;
}
.calendar-container .calendar-type p{
    font-weight: normal;
    font-size: 0.5em;
    padding: 5px;
}
.calendar-container .calendar-type p:hover{
    cursor: pointer;
}


.calendar-navigation {
    display: flex;
}
.calendar-navigation span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    user-select: none;
    color: #aeabab;
    font-size: 1.9rem;
}
.calendar-navigation span:last-child {
    margin-right: -10px;
}
.calendar-navigation span:hover {
    background: #f2f2f2;
}


#calendar-current-day{
    font-size: 0.5em;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    color: #000000;
}
#calendar-current-day:hover{
    cursor:pointer
}
#calendar-current-day a{
    font-size: 0.8em;
    color: #000000;
}


.calendar-body {
    padding: 20px;
    min-height: 630px;
}
.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
}
.calendar-body li {
    width: calc(100% / 7);
    font-size: 1.07rem;
}


.calendar-dates {
    margin-bottom: 20px;
}
.calendar-dates li {
    position: relative;
    z-index: 1;
    cursor: pointer;
    color: #414141;
    min-height: 90px;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    text-align: left;
    padding: 4px;
}
.calendar-dates li:hover{
    background-color: rgb(247, 247, 247);
}
.calendar-dates li.inactive {
    color: #aaa;
}

.calendar-dates li.active {
    color: #fff;
}

.calendar-dates li.active{
    color: #272727;
    background-color: antiquewhite;
}
.calendar-dates li div{
    width: 100%;
    min-height: 30px;
    background-color: #490035;
    color: #fff;
    padding: 5px 5px;
    box-sizing: border-box;
}
.calendar-dates li div .material-icons{
    font-size: 0.8em;
    margin-right: 2px;
}


.calendar-events li{
    width: 100%;
    border: 2px solid rgb(245, 245, 245);
    padding: 10px 15px;
    margin-top: -2px;
}
.calendar-events li h3{
    margin-bottom: 5px;
}


.calendar-weekdays li {
    cursor: default;
    font-weight: bold !important;
    font-weight: 500;
    padding-bottom: 20px;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .calendar-header{
        padding-right: 10px !important; 
        padding-left: 10px !important;
    }
    #calendar{
        padding-left: 4px;
        padding-right: 4px;

    }
    .calendar-weekdays{
        display: none !important;
    }
    .calendar-dates{
        display: none !important;
    }
    .calendar-type{
        display: none !important;
    }
    .calendar-events{
        display: flex !important;
    }
}

@media only screen and (max-width: 450px) {

}