html {
	overflow: hidden;
}

body {
	position: relative;
	background-color: rgb(255, 130, 25);
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro', Verdana, sans-serif;
	overflow: hidden;
	box-sizing: content-box;
}

#bg {
	background-color: lightgrey;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.shy {
	opacity: 0;
	transition: 0.5s;
	transition: max-height 0.01s ease-out;
	max-height: 0 !important;
}

.noshy {
	opacity: 1;
	transition: 0.5s;
	transition: max-height 0.25s ease-in;
	max-height: 10000px;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
	#calendarHeader {
		background-image: linear-gradient(0deg, rgba(255,165,85,.7), #ff8219) !important;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
	#cookie {
		background-color: rgba(210, 105, 0, 0.65) !important;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);	
	}
	#menu {
		background-color: rgba(255, 120, 0, 0.98) !important;
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
	#menuToggleBG {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		padding: 25px;
	}
}

.inlineAdd {
	padding: 0;
	display: block;
	text-align: center;}

#calendar {
	background-color: white;
	max-width: 500px;
	width: 100vw;
	height: 100vh;
	top: 0;
	margin: auto;
	padding: 0;
	text-align: center;
	display: block;
	cursor: default;
	position: relative;
}

#calendarHeader {
	position: absolute;
	width: 100%;
	z-index: 1000;
	font-size: 25px;
	padding: 5px 0 0 0;
	background-image: linear-gradient(0deg, rgba(255,165,85,.9), #ff8219);
	color: white;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

#calendarHeaderYear {
	display: flex;
	text-align: left;
	float: left;
	font-size: 20px;
	padding: 5px 10px 0 10px;
	cursor: pointer;
}

#calendarHeaderDate {
	display: block;
	cursor: pointer;
}

#calendarHeaderHoliday {
	font-size: 18px;
	font-style: italic;
	transition: height 0.5s;
	display: block;
	overflow: hidden;
}

#calendarHeaderItem {
	display: block;
	height: 24px;
	font-size: 15px;
	font-style: italic;
	margin: 5px;
}

#calendarWeek {
	font-size: 15px;
	margin: 0;
	padding: 10px 8px 10px 22px;
}

#calendarHeaderShiftBar {
	width: 100%;
	height: 15px;
	margin: 10px 0 0 0;
	box-shadow: 2px 0 4px rgba(255,255,255,0.5);
}

.calendarWeekDays {
	width: calc(14% + 2.5px);
	margin: 0;
	border-width: 0;
	display: inline-block;
}

#calendarTodayBar {
	font-size: 15px;
	padding: 2px;
	background-color: rgba(255, 255, 255, 0.25);
}

#calendarViewport {
	position: absolute;
	height: 100vh;
	width: 100%;
	display: block;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: smooth;
	scrollbar-width: none;
}

.calendarDaysMonth {
	background-image: linear-gradient(180deg,hsla(0,0%,100%,0) 50%,rgba(0,0,0,0.2) calc(100% - 0.5px), hsla(0,0%,100%,0)); 
	width: 100%;
	margin: 0;
	padding: 0 4px 0 0;
	text-align: right;
	position: relative;
	overflow: hidden;
}

.calendarDaysMonth:before {
	display: block;
	position: absolute;
	content: "";
	width: calc(2% + 15px);
	top: 0;
	left: 0;
	border-top: 1px solid rgba(0,0,0,0.5);
}

.calendarDaysMonthLabel {
	position: absolute;
	display: block;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	background-image: none;
	text-align: center;
	font-size: 30px;
	overflow: hidden;
}

.calendarDaysDay {
	width: calc(14% - 20px);
	padding: 6px 9px 0 9px;
	margin: 0 !important;
	display: inline-block;
	position: relative;
	text-align: center;
	border-color: rgba(0,0,0,0.5);
	border-width: 1px;
}

.calendarDaysDayContent {
	transition: 0.5s;
}

.calendarDaysDay:hover .calendarDaysDayContent {
	background-color: rgba(0, 255, 0, 0.25);
}

.calendarDaysDayFirst {
	background-color: white;
	border-top-style: solid;
}

.calendarDaysDayFirstDay {
	background-color: white;
	border-style: solid none none solid;
}

.calendarDaysDayFirstMonthDay {
	font-weight: bold;
}

.calendarDaysDaySelected {
	background-color: rgba(0, 255, 0, 0.15) !important;
	font-weight: bold;
}

.calendarDaysDayToday {
	background-color: rgba(0, 0, 255, 0.15);
	font-weight: bold;
}

.calendarDaysDayCal {
	box-shadow: 0 0 5px 0 rgb(255, 130, 25);
}

.calendarsDaysShiftBox {
	width: 100%;
	height: 10px;
	border-radius: 5px;
	border-color: rgba(0,0,0,0.5);
	border-style: solid;
	border-width: 1px;
	margin: 2px 0 0 0;
}

.smallmonth {
	font-size: 50%;
	display: block;
	width: 100%;
	top: 8%; 
	left: 0;
	position: absolute;
	margin: 0;
	padding: 0;
}

.daynumber {
	font-size: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

.holiday:before {
	content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
	top: 6px;
    right: 6px;
    background-color: rgb(255, 130, 25);
    border-radius: 2px;
	box-shadow: rgb(255, 130, 25) 0 0 2px 2px;
}

.smallyear {
	font-size: 50%;
	display: block;
	width: 100%;
	bottom: calc(8% + 5px + 13px); 
	left: 0;
	position: absolute;
}

.weeknumber {
	position: absolute;
    display: block;
	padding: 4px;
	top: 4px;
	left: -19px;
	border-radius: 10px;
    font-weight: normal;
    font-size: 75%;
    text-align: center;
    background-color: rgba(233, 187, 150, 0.5);
}

#cookie {
	position: absolute;
	bottom: 0;
	width: calc(100% - 20px);
	z-index: 1000;
	background-color: rgba(225, 140, 60, 0.9);
	color: white;
	padding: 10px;
	text-align: left;
}

#cookieText {
	display: flex;
	float: left;
	width: calc(100% - 120px);
}

#cookieButton {
	display: flex;
	float: right;
	padding: 15px;
	background-color: rgba(255,255,255,0.25);
	border-style: solid;
	border-width: 1px;
	border-color: white;
	transition: 0.5s;
}

#cookieButton:hover {
	background-color: rgba(255,0,0,0.25);
}

#menu {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	background-color: rgb(255, 120, 0);
	color: white;
	text-align: left;
	transition: 0.5s linear !important;
	overflow: hidden;
}

.menuContent {
	width: calc(100% - 40px);
	height: 100%;
	padding: 20px;
	overflow-y: auto;
}

#menuToggle {
	position: absolute;
	display: block;
	z-index: 3000;
	text-align: right;
	right: 0;
	padding: 25px;
}

#menuToggleBG {
	position: absolute;
	display: block;
	padding: 10px;
	height: 22px;
	width: 22px;
	border-radius: 22px;
	top: 11px;
	right: 14px;
	box-shadow: 0 0 12px rgba(255,255,255,0.9);
}

.menuCat {
	margin: 20px 0;
	overflow: hidden;
}
.menuCat span {
	display: block;
	margin: 10px 0;
}

#menu a {
	color: white;
	text-decoration-color: rgba(255, 255, 255, 0.5);
}

#menu a:hover {
	text-decoration-color: initial;
}

#menu select {
	display: flex;
	float: right;
	width: 90px;
	margin-right: 20px;
	padding: 2px;
	background-color: rgba(255,255,255,0.1);
	color: white;
	border-color: rgba(255,255,255,0.5);
	border-radius: 5px;
}

#menu select:hover {
	background-color: rgba(255,255,255,0.2);
}

#menu input {
	width: calc(100% - 20px - 30px);
	margin-left: 20px;
	padding: 2px;
	background-color: rgba(255,255,255,0.1);
	color: white;
	border-color: rgba(255,255,255,0.5);
	border-radius: 5px;
	border-width: 1px;
}

#menu input:hover {
	background-color: rgba(255,255,255,0.2);
}

#menu option {
	color: black;
}

#calendarBrowse, #calendarBrowsePrint {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 5000;
	background-color: rgb(255, 120, 0);
	color: white;
	text-align: left;
	transition: 0.5s linear !important;
	overflow-y: auto !important;
}

#calendarBrowseDiv, #calendarBrowsePrintDiv {
	width: calc(100% - 40px);
	height: 100%;
	padding: 20px;
}

#calendarBrowseContent #calendarBrowsePrintContent {
	display: block;
	margin: 10px 0;
	overflow-y: auto;
}

.calendarBrowseColY {
	width: 30%;
	display: inline-block;
	font-weight: bold;
}

.calendarBrowseColM {
	width: 70%;
	display: inline-block;
}

.calendarBrowseYear, .calendarBrowsePrintYear {
	padding: 10px;
	border-color: white;
	border-width: 1px;
	border-bottom-style: solid;
}

.calendarBrowseThisYear {
	color: rgb(255, 235, 160);
}

.calendarBrowseMonth, .calendarBrowsePrintMonth {
	width: 25%;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

.calendarBrowseMonth:hover, .calendarBrowsePrintMonth:hover {
	text-decoration: underline;
}

.calendarBrowsePrintYearSpan:hover {
	text-decoration: underline;
}

.calendarBrowseOpener:hover {
	text-decoration-color: rgba(255, 255, 255, 0.5);
	text-decoration: underline;
}

/*#noJS {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 4000;
	background-color: rgb(255, 120, 0);
	color: white;
	text-align: left;
	transition: 0.5s linear !important;
	overflow: hidden;
}*/

#unsupportedBrowser {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 4000;
	background-color: rgb(255, 120, 0);
	color: white;
	text-align: left;
	transition: 0.5s linear !important;
	overflow: hidden;
}

#browserButton {
	margin: 40px; 
	padding: 15px;
	background-color: rgba(255,255,255,0.25);
	border-style: solid;
	border-width: 1px;
	border-color: white;
	transition: 0.5s;
	text-align: center;
}

#browserButton:hover {
	background-color: rgba(255,0,0,0.25);
}

/*ScrollBar*/

::-webkit-scrollbar {
	display: none;
}

::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: rgba(0,0,0,0.5);
}

body {
	scrollbar-width: none;
	scrollbar-color: rgba(0,0,0,0.5) transparent;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Hamburger menu */
#toggle {
  display: block;
  cursor: pointer;
}
#toggle input {
  display: none;
}
#toggle input + div {
  width: 20px;
  height: 14px;
  position: relative;
}
#toggle input + div div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}
#toggle input + div div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
#toggle input + div div span:first-child {
  top: 0;
}
#toggle input + div div span:first-child:before, #toggle input + div div span:first-child:after {
  top: 0;
}
#toggle input + div div span:last-child {
  bottom: 0;
}
#toggle input + div div span:last-child:before, #toggle input + div div span:last-child:after {
  bottom: 0;
}
#toggle input + div div span:before, #toggle input + div div span:after {
  content: '';
  display: block;
  width: 47%;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: border-radius .3s ease, background .4s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, border-radius .3s ease, background .4s ease;
  transition: transform .5s ease, border-radius .3s ease, background .4s ease, -webkit-transform .5s ease;
}
#toggle input + div div span:before {
  left: 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: translate(1px, 0) scaleX(1.1);
          transform: translate(1px, 0) scaleX(1.1);
}
#toggle input + div div span:after {
  right: 0;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: translate(-1px, 0) scaleX(1.1);
          transform: translate(-1px, 0) scaleX(1.1);
}
#toggle input + div svg {
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  stroke-dasharray: 0 82.801 8 82.801;
  stroke-dashoffset: 82.801;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, stroke .4s ease, -webkit-transform .5s ease;
  transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, transform .5s ease, stroke .4s ease;
  transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, transform .5s ease, stroke .4s ease, -webkit-transform .5s ease;
}
#toggle input + div svg:nth-child(3) {
  -webkit-transform: rotate(180deg) scale(1);
          transform: rotate(180deg) scale(1);
}
#toggle input:checked + div div {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#toggle input:checked + div div span:before, .toggle input:checked + div div span:after {
  background: #fff;
}
#toggle input:checked + div div span:first-child:before {
  -webkit-transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
          transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
}
#toggle input:checked + div div span:first-child:after {
  -webkit-transform: rotate(-45deg) translate(-2.2px, -3px) scaleX(1.05);
          transform: rotate(-45deg) translate(-2.2px, -3px) scaleX(1.05);
}
#toggle input:checked + div div span:last-child:before {
  -webkit-transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
          transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
}
#toggle input:checked + div div span:last-child:after {
  -webkit-transform: rotate(45deg) translate(-2.2px, 3px) scaleX(1.05);
          transform: rotate(45deg) translate(-2.2px, 3px) scaleX(1.05);
}
#toggle input:checked + div svg {
  stroke-dashoffset: 62;
  stroke-dasharray: 0 82.801 62 82.801;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  stroke: #fff;
}
#toggle input:checked + div svg:nth-child(3) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

/*Shift Colours*/

:root {
	--shift0BG: linear-gradient(to right, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 100%, 1) 30%, hsla(240, 100%, 50%, 1) 36%, hsla(240, 100%, 50%, 1) 64%, hsla(54, 100%, 50%, 1) 70%, hsla(54, 100%, 50%, 1) 100%);
	--shift1BG: linear-gradient(to right, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 100%, 1) 30%, hsla(240, 100%, 50%, 1) 36%, hsla(240, 100%, 50%, 1) 64%, hsla(0, 100%, 50%, 1) 70%, hsla(0, 100%, 50%, 1) 100%);
	--shift2BG: linear-gradient(to right, hsla(120, 100%, 50%, 1) 0%, hsla(120, 100%, 50%, 1) 30%, hsla(0, 0%, 100%, 1) 36%, hsla(0, 0%, 100%, 1) 64%, hsla(0, 100%, 50%, 1) 70%, hsla(0, 100%, 50%, 1) 100%);
	--shift3BG: linear-gradient(to right, hsla(120, 100%, 50%, 1) 0%, hsla(120, 100%, 50%, 1) 30%, hsla(0, 0%, 100%, 1) 36%, hsla(0, 0%, 100%, 1) 64%, hsla(240, 100%, 50%, 1) 70%, hsla(240, 100%, 50%, 1) 100%);
	--shift4BG: linear-gradient(to right, hsla(54, 100%, 50%, 1) 0%, hsla(54, 100%, 50%, 1) 30%, hsla(120, 100%, 50%, 1) 36%, hsla(120, 100%, 50%, 1) 64%, hsla(240, 100%, 50%, 1) 70%, hsla(240, 100%, 50%, 1) 100%);
	--shift5BG: linear-gradient(to right, hsla(54, 100%, 50%, 1) 0%, hsla(54, 100%, 50%, 1) 30%, hsla(120, 100%, 50%, 1) 36%, hsla(120, 100%, 50%, 1) 64%, hsla(0, 0%, 100%, 1) 70%, hsla(0, 0%, 100%, 1) 100%);
	--shift6BG: linear-gradient(to right, hsla(0, 100%, 50%, 1) 0%, hsla(0, 100%, 50%, 1) 30%, hsla(54, 100%, 50%, 1) 36%, hsla(54, 100%, 50%, 1) 64%, hsla(0, 0%, 100%, 1) 70%, hsla(0, 0%, 100%, 1) 100%);
	--shift7BG: linear-gradient(to right, hsla(0, 100%, 50%, 1) 0%, hsla(0, 100%, 50%, 1) 30%, hsla(54, 100%, 50%, 1) 36%, hsla(54, 100%, 50%, 1) 64%, hsla(120, 100%, 50%, 1) 70%, hsla(120, 100%, 50%, 1) 100%);
	--shift8BG: linear-gradient(to right, hsla(240, 100%, 50%, 1) 0%, hsla(240, 100%, 50%, 1) 30%, hsla(0, 100%, 50%, 1) 36%, hsla(0, 100%, 50%, 1) 64%, hsla(120, 100%, 50%, 1) 70%, hsla(120, 100%, 50%, 1) 100%);
	--shift9BG: linear-gradient(to right, hsla(240, 100%, 50%, 1) 0%, hsla(240, 100%, 50%, 1) 30%, hsla(0, 100%, 50%, 1) 36%, hsla(0, 100%, 50%, 1) 64%, hsla(54, 100%, 50%, 1) 70%, hsla(54, 100%, 50%, 1) 100%);
	--shift10BG: linear-gradient(to right, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 100%, 1) 30%, hsla(240, 100%, 50%, 1) 36%, hsla(240, 100%, 50%, 1) 64%, hsla(54, 100%, 50%, 1) 70%, hsla(54, 100%, 50%, 1) 100%);
	--shift11BG: linear-gradient(to right, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 100%, 1) 30%, hsla(240, 100%, 50%, 1) 36%, hsla(240, 100%, 50%, 1) 64%, hsla(0, 100%, 50%, 1) 70%, hsla(0, 100%, 50%, 1) 100%);
	--shift12BG: linear-gradient(to right, hsla(120, 100%, 50%, 1) 0%, hsla(120, 100%, 50%, 1) 30%, hsla(0, 0%, 100%, 1) 36%, hsla(0, 0%, 100%, 1) 64%, hsla(0, 100%, 50%, 1) 70%, hsla(0, 100%, 50%, 1) 100%);
	--shift13BG: linear-gradient(to right, hsla(120, 100%, 50%, 1) 0%, hsla(120, 100%, 50%, 1) 30%, hsla(0, 0%, 100%, 1) 36%, hsla(0, 0%, 100%, 1) 64%, hsla(240, 100%, 50%, 1) 70%, hsla(240, 100%, 50%, 1) 100%);
	--shift14BG: linear-gradient(to right, hsla(54, 100%, 50%, 1) 0%, hsla(54, 100%, 50%, 1) 30%, hsla(120, 100%, 50%, 1) 36%, hsla(120, 100%, 50%, 1) 64%, hsla(240, 100%, 50%, 1) 70%, hsla(240, 100%, 50%, 1) 100%);
	--shift15BG: linear-gradient(to right, hsla(54, 100%, 50%, 1) 0%, hsla(54, 100%, 50%, 1) 30%, hsla(120, 100%, 50%, 1) 36%, hsla(120, 100%, 50%, 1) 64%, hsla(0, 0%, 100%, 1) 70%, hsla(0, 0%, 100%, 1) 100%);
	--shift16BG: linear-gradient(to right, hsla(0, 100%, 50%, 1) 0%, hsla(0, 100%, 50%, 1) 30%, hsla(54, 100%, 50%, 1) 36%, hsla(54, 100%, 50%, 1) 64%, hsla(0, 0%, 100%, 1) 70%, hsla(0, 0%, 100%, 1) 100%);
	--shift17BG: linear-gradient(to right, hsla(0, 100%, 50%, 1) 0%, hsla(0, 100%, 50%, 1) 30%, hsla(54, 100%, 50%, 1) 36%, hsla(54, 100%, 50%, 1) 64%, hsla(120, 100%, 50%, 1) 70%, hsla(120, 100%, 50%, 1) 100%);
	--shift18BG: linear-gradient(to right, hsla(240, 100%, 50%, 1) 0%, hsla(240, 100%, 50%, 1) 30%, hsla(0, 100%, 50%, 1) 36%, hsla(0, 100%, 50%, 1) 64%, hsla(120, 100%, 50%, 1) 70%, hsla(120, 100%, 50%, 1) 100%);
	--shift19BG: linear-gradient(to right, hsla(240, 100%, 50%, 1) 0%, hsla(240, 100%, 50%, 1) 30%, hsla(0, 100%, 50%, 1) 36%, hsla(0, 100%, 50%, 1) 64%, hsla(54, 100%, 50%, 1) 70%, hsla(54, 100%, 50%, 1) 100%);
}

.calendarDaysShift0 {
  background-image: var(--shift0BG);
}

.calendarDaysShift1 {
  background-image: var(--shift1BG);
}

.calendarDaysShift2 {
  background-image: var(--shift2BG);
}

.calendarDaysShift3 {
  background-image: var(--shift3BG);
}

.calendarDaysShift4 {
  background-image: var(--shift4BG);
}

.calendarDaysShift5 {
  background-image: var(--shift5BG);
}

.calendarDaysShift6 {
  background-image: var(--shift6BG);
}

.calendarDaysShift7 {
  background-image: var(--shift7BG);
}

.calendarDaysShift8 {
  background-image: var(--shift8BG);
}

.calendarDaysShift9 {
  background-image: var(--shift9BG);
}

.calendarDaysShift10 {
  background-image: var(--shift10BG);
}

.calendarDaysShift11 {
  background-image: var(--shift11BG);
}

.calendarDaysShift12 {
  background-image: var(--shift12BG);
}

.calendarDaysShift13 {
  background-image: var(--shift13BG);
}

.calendarDaysShift14 {
  background-image: var(--shift14BG);
}

.calendarDaysShift15 {
  background-image: var(--shift15BG);
}

.calendarDaysShift16 {
  background-image: var(--shift16BG);
}

.calendarDaysShift17 {
  background-image: var(--shift17BG);
}

.calendarDaysShift18 {
  background-image: var(--shift18BG);
}

.calendarDaysShift19 {
  background-image: var(--shift19BG);
}

/*Print */

@media print{
	@page {
		size: A4 landscape; 
		margin: 25mm 0 0 25mm;
	}
	
	header nav, header, footer, @page:footer, @page:header{
		display: none;
	}
	
	html, body {
		overflow: unset !important;
		background-color: unset !important;
		-webkit-print-color-adjust: exact !important;
	}
	
	#calendar, #bg {
		display: none;
	}
	
	#printViewport {
		opacity: 1 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	h1 {
		margin-top: 10px !important;
	}
}

.printMonth {
	width: 100vw;
	page-break-inside: avoid;
}

.printWeek {
	
}

.printDaysDay {
	width: 18.5mm;
	height: 18.5mm;
	padding: 1.5mm 2.3mm 0 9px;
	margin: 0 5mm !important;
	display: inline-block;
	position: relative;
	text-align: center;
	border-color: rgba(0,0,0,0.5);
	border-width: 0.25mm;
}

.printDaysDayContent {
	background-color: rgba(0, 255, 0, 0.1);
}

.printDaysDayFirst {
	background-color: white;
	border-top-style: solid;
}

.printDaysDayFirstDay {
	background-color: white;
	border-style: solid none none solid;
}

.printDaysDayFirstMonthDay {
	font-weight: bold;
}

.printDaysDayCal {
	box-shadow: 0 0 1.3mm 0 rgb(255, 130, 25);
}

.printDaynumber {
	font-size: 100%;
	display: block;
	margin: 0;
	padding: 0;
}