body {
  padding-top: 5rem;
  background-color: #23272B;
  color: #2EF5BF;
  font-family: 'Helvetica', sans-serif;
}

h1{
	margin-bottom: -60px;
	font-size: 1.5em;
}
section{
	padding-top: 30px;
}

/* Anchor fixing because of the top menu bar*/

.subheader{
	margin-top: 60px;
}
.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}
.active{
	background-color: #23272B;
}
/*
 * Calendar Generator
 */

 #style-selection{
 	color: #EE304E;
 	animation: infotext 4s ease-in-out 0s infinite alternate;
 }

@keyframes infotext{
	0% {opacity: 0.7;}
	50%{opacity: 1;}
	100%{opacity: 0.7;}
}

/*SVG ICONS*/
.v-strokes, .v-fills{
	fill: none;
	stroke: #26CC9F;
}
.v-svg{
	margin-bottom: -4px;
	margin-right: 25px;
}

.h-strokes, .h-fills{
	fill: none;
	stroke: #47A6D2;
}
.h-svg{
	margin-bottom: -4px;
	margin-right: 25px;
}

.b-strokes{
	stroke: #26CC9F;	
}
.b-fills{
	fill: #26CC9F;
}
.b-svg{
	margin-bottom: -4px;
	margin-right: 25px;
}


#btnYearValue-b, #btnYearValue-h, #btnYearValue-v{
	margin-top: -100px;
}
.sec-v{
	background-color: #2C3135;
	color: #26CC9F;
	display: block;
	visibility: visible;
}
.sec-h{
	background-color: #23272B;
	color: #47A6D2;
	display: none;
	visibility: hidden;
}
.sec-b{
	background-color: #2C3135;
	color: #26CC9F;
	display: none;
	visibility: hidden;
}
.cg-props-off{
	position: fixed;
	top: 20%;
	right: 5px;
	text-align: center;
	font-size: 12pt;
	vertical-align: middle;
	width: 12em;
	height: 3em;
	border-radius: 1em;
	background-color: #343A40;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding-top: 10px;
	cursor: pointer;
}
.cg-props-on{
	position: fixed;
	top: 20%;
	right: 5px;
	text-align: center;
	font-size: 12pt;
	vertical-align: middle;
	width: 10em;
	height: 3em;
	border-radius: 1em;
	background-color: #23272B;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding-top: 10px;
	cursor: pointer;
}
.cg-props-panel-init{
	position: fixed;
	top: 20%;
	width: 45em;
	height: 30em;
	border: 2px solid #2EF5BF;
	border-radius: 1em;
	background-color: #343A40;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px;
	text-align: center;
	/*animation: slide-out 1s ease-in-out 0s 1 forwards;*/
	right: -45em;
}
.cg-props-panel-hide{
	position: fixed;
	top: 20%;
	width: 45em;
	height: 30em;
	border: 2px solid #2EF5BF;
	border-radius: 1em;
	background-color: #343A40;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px;
	text-align: center;
	animation: slide-out 0.5s ease-in-out 0s 1 forwards;
	/*right: -30em;*/
}

.cg-props-panel-show{
	position: fixed;
	top: 20%;
	/*right: 20px;*/
	width: 45em;
	height: 30em;
	border: 2px solid #2EF5BF;
	border-radius: 1em;
	background-color: #343A40;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px;
	text-align: center;

	animation: slide-in 0.5s ease-in-out 0s 1 forwards;
}

@keyframes slide-in {
	0% {right: -45em;}
	100% {right: 5px;}
}
@keyframes slide-out {
	0% {right: 5px;}
	100% {right: -45em;}
}

.cg-props-panel-header{
	font-size: 1.3em;
}

/* switch start of week */

#weekStartWrapper{
	clear: both;
	padding-top: 10px;
}

.greenDelimiter{
	height: 1px;
	background: #26CC9F;
}

#lblSettingsTitle{
	font-size: 1.5em;
}

.imgProps{
	margin-right: 10px;
	margin-top: -10px;
}

#switchStartWeekOnMonday{
	text-align: center;
	margin-top: 5px;
}
#lblWeekStart{
	padding-top: 2em;
	font-size: 1.1em;
}

#lblWeekStartDay{
	font-size: 1.1em;
}

#lblWeekDay2or3{
	text-transform: uppercase;
	line-height: 2.2;
	font-size: 1.1em;
}

#lblWSOffOn{
	font-size: 2em;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #26CC9F;
}

input:focus + .slider {
  box-shadow: 0 0 1px #26CC9F;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 5px;
}

.slider.round:before {
  border-radius: 5px;
}

/*End switch*/

.cg-close-prop{
	position: absolute;
	top: 8px;
	right: 10px;
	width: 28px;
	border: 1px solid #2EF5BF;
	cursor: pointer;
}
.cg-close-prop:hover{
	color: #2EF5BF;
	font-weight: bold;
	border: 2px solid #2EF5BF;	
}
.cg-props-left{
	float: left;
	width: 14em;
}
.cg-props-right, .cg-props-mid{
	float: left;
	width: 14em;
	margin-left: 12px;
	margin-bottom: 12px;
}


#y-wrapper{
	position: fixed;
	top: 10%;
	right: 5px;
	text-align: center;
	width: 10em;
	height: 3em;
	border-radius: 1em;
	background-color: #343A40;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Container für Pfeil links */
.cg-change-year-down{
	float: left;
	width: 2em;
	height: 3em;
	border-radius: 1em 0 0 1em;
	border-right: 1px solid #23272B;
	background-color: #343A40;
	padding-top: 8px;
	cursor: pointer;
}
.cg-change-year-down:hover{
	background-color: #23272B;
}

/* Pfeil links SVG Grafik*/
.cg-change-year-img-down{
	height: 2em;
	vertical-align: middle;
}

/* Container für Pfeil rechts */
.cg-change-year-up{
	float: left;
	width: 2em;
	height: 3em;
	border-radius: 0 1em 1em 0;
	border-left: 1px solid #23272B;
	background-color: #343A40;
	padding-top: 8px;
	cursor: pointer;
}
.cg-change-year-up:hover{
	background-color: #23272B;
}
/* Pfeil rechts SVG Grafik*/
.cg-change-year-img-up{
	height: 2em;
	vertical-align: middle;
}

.cg-year{
	float: left;
    font-size: 1.5em;
/*    font-family: 'Futura';*/
    line-height: 200%;
    color: #343A40;
	background-color: #2EF5BF;
	width: 4em;
	height: 100%;
	background: linear-gradient(to right , rgba(46,245,191,0)0%, rgba(46,245,191,0.9) 40%, rgba(46,245,191,1) 50%, rgba(46,245,191,0.9) 60%, rgba(46,245,191,0)100%);
}

.btn-props-panel{
	clear: both;
	background-color: #2EF5BF;
	color: #23272B;
	border: 1px solid #25C297;
	border-radius: 5px;
	padding: 5px;
	height: 35px;
	cursor: pointer;
}

.btn-props-panel:hover{
	clear: both;
	background-color: #2EF5Bb;
	color: #23272B;
	border: 1px solid #23272B;
	padding: 5px;
	height: 35px;
}

.selectpicker{
	vertical-align: middle;
	background-color: #23272B;
	color: white;
	width: 200px;
	border-radius: 0px;
	border: 0px;
	height: 30px;
}

.wday0, .wdate0{
	/*fill: red;*/
}
.wday1, .wdate1{
	/*fill: lime;*/
}
.wday2, .wdate2{
	/*fill: yellow;*/
}
.wday3, .wdate3{
	/*fill: orange;*/
}
.wday4, .wdate4{
	/*fill: brown;*/
}
.wday5, .wdate5{
	/*fill: lightblue;*/
}
.wday6, .wdate6{
	/*fill: purple;*/
}

.donation-button{
	position: absolute;
	top: 150px;
	transform: rotate(-30deg);
}
.donation{
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.btn-copy2clipboard{
	background-color: #343A40;
}

.btn-primary,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
    background-color: #26CC9F !important;
    border-color: #26CC9F !important;
}

.btn-primary:hover{
    background-color: #04AA7D !important;
}

.entitySymbol{
	font-size: 1.3em;
}

/* Copy to clip board message */

.bg-modal{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0px;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.modal-content{
	top: 0px;
	width: 550px;
	height: 320px;
	background-color: lightgrey;
	color: #505050;
	border-radius: 8px;
	align-items: center;
	padding-top: 20px;
	position: relative;
	text-align: center;
	/*visibility: hidden;*/
}


.logo{
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}

.close-modal{
	position: absolute;
	top: 0px;
	right: 15px;
	color: darkgrey;
	font-size: 2em;
	transform: rotate(45deg);
	cursor: pointer;
}

.close-modal:hover {
	color: #505050;
	cursor: pointer;
}

.msgWrapper{
	top: -1000px;
	width: 100%;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	justify-content: center;
	display: flex;
	animation: ;
}

@keyframes showMsg {
	0%{top:-1000px;}
	100%{top:100px;}
}
@keyframes hideMsg {
	0%{top:100px;}
	100%{top:-1000px;}
}

.copy2clipboardMessage{
	width: 550px;
	height: 320px;
	background-color: lightgrey;
	color: #505050;
	border: 2px solid darkgrey;
	border-radius: 8px;
	align-items: center;
	padding-top: 20px;
	position: relative;
	text-align: center;
	margin-top: 350px;
	margin-bottom: 350px;
	display: inline-block;
	box-shadow: 5px 5px rgba(36,36,36,0.7);
	/*visibility: hidden;*/
}

#btnDonate{
	margin-top: 0px;
}