:root {
    --primary-color: #ee7003;
    --primary-light: #f7892b;
    --primary-dark: #d96500;

    --grey-light: #dcdcdc;
    --grey-dark: #464646;
    --grey-border: #bebebe;

    --calender-color: #19689a;
    --calender-grey: #689bbc;
    --calender-light: #99d7ff;

    --news-color: #006a1e;
    --news-light: #3ca65a;
}

.current-week {
    float: right;
    text-align: right;
    font-family: Vollkorn;
}

.calender-nav {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    height: 3rem;
}

.nav-container {
    position: relative;
}

.calender-nav-reset {
    flex: 1 0 0%;
    margin: 1px;
    height: 100%;
    min-width: 6rem;
    background-color: #689bbc;
    text-align: center;
}

.calender-nav-reset:hover {
    cursor: pointer;
}

.calender-nav-l-r {
    flex: 1 0 0%;
    margin: 1px;
    height: 100%;
    min-width: 3rem;
    max-width: 3rem;
    background-color: #19689a;
}

.calender-nav-l-r:hover {
    cursor: pointer;
}

.calender-nav-center {
    flex: 8 0 0%;
    text-align: center;
    margin: 1px;
    height: 100%;
    background-color: #689bbc;
    align-items: center;
}

.calender-nav-center:hover {
    cursor: pointer;
}

.calender-container {
    padding-left: 3rem;
    padding-right: 3rem;
}

.calender-day {
    flex: 0 0 0%;
    margin-top: 0.5rem;
}

.calender-day-table {
    width: 100%;
}

.calender-day-container {
    justify-content: flex-start;
}

.calender-date-table{
    width: 100%;
    height: 100%;;
}

tbody {
    width: 100%;
}

.calender-day-left-td {
    width: 5rem;
    text-align: center;
    font-size: 1.5rem;
}

.calender-day-left {
    background-color: #19689a;
}

.calender-month {
    font-size: 1rem;
}

.calender-date {
    border: solid #bebebe 1px;
    min-width: 15rem;
    max-width: 19rem;
    flex: 0 1 100%; /* macht auf dem Ipad Probleme*/
    margin: 5px;
    height: 4rem;
}

.calender-date-title {
    font-weight: bold;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.calender-date-title-popup {
    font-weight: bold;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	height: 2rem;
}

.calender-date-location {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
	font-size: 0.8rem;
}

.calender-date-left {
    width: 4.5rem;
    text-align: right;
    font-size: 1.5rem;
    height: 100%;
	padding-right: 0.5rem;
}
.calender-date-left-popup {
    width: 4.5rem;
    text-align: right;
    font-size: 1.5rem;
    height: 100%;
	padding-right: 1rem;
}

.calender-dropdown-anchor {
    position: relative;
    z-index: 10;
}

.calender-dropdown-anchor * {
    z-index: 10;
}

.calender-blocker {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    visibility: hidden;
}

.dropdown-container {
    display: none;
    position: absolute;
    width: 100%;
}

.calender-dropdown {
    margin-left: 3rem;
    margin-right: 3rem;
    color: white;
}

.calender-dropdown-flex {
    margin: 3px;
    margin-bottom: 0;
    background-color: #689bbc;
    border-bottom: solid white 2px;
}

.dropdown-month {
    margin: 1rem;
    text-align: center;
}

.dropdown-table {
    text-align: center;
    vertical-align: middle;
}

.dropdown-month-Title {
	text-decoration: underline;
}

.dropdown-week {
    border-radius: 0.75rem;
}

.dropdown-week:hover {
    background-color: #19689a;
    cursor: pointer;
}

.dropdown-day {
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.dropdown-Wdays-Label {
    width: 1.5rem;
    height: 1rem;
    text-align: center;
    vertical-align: middle;
	font-size: 0.7rem;
	color: #CCCCCC;
}
.dropdown-Wdays-Label-Highlite {
	color: #b74b4b;
}

.calender-hr {
	color: #689bbc;
	margin-top: 0.5rem;
	border-width: 1px;
	border-style: solid;
}

.Termin-Info-Icon {
	height: 0.8rem;
	float: left;
	margin-left: 0.5rem;
}

.calender-Icon-Container {
	position: absolute;
    bottom: 0.5rem;
	padding-left: 0.5rem;
}

@media only screen and (max-width: 620px){
    .calender-container {
        padding: 0;
    }

    .calender-dropdown {
        margin: 0;
    }

    .calender-day-left-td {
        width: 4rem;
    }

    .calender-date-left {
        font-size: 1.2rem;
        width: 3.8rem;
    }

    .calender-date {
        min-width: 0;
        max-width: 100%;
		flex: 0 1 100%;
    }

    .current-week {
        display: none;
    }
}

@media only screen and (max-width: 460px){
    .calender-nav-center {
        font-size: 1.2rem;
    }

    .calender-nav-reset {
        font-size: 1.2rem;
        min-width: 4rem;
    }
}

/*@media only screen and (max-width: 360px) {
    .calender-decorations {
        display: none;
    }
}*/