@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap");
body{
	background: rgb(253,187,45);
	background: linear-gradient(0deg, rgba(253,187,45,1) 0%, rgba(244,225,82,1) 97%);
	font-family: 'Trebuchet MS', sans-serif;
	color: black;
	min-height:95vh;
	padding-bottom:5vh;
}

.content{
	display: flex;
	height: 100%;
	flex-direction: column;
}

.hidden{
	display: none;
}

#calendarDiv{
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-gap: 10px;
	grid-auto-rows: minmax(100px, auto);
}

.overlay {
	
	opacity: 0;
	background-color: rgba(0,0,0,0.7);
	transition: .5s ease;
	
}

hr{
	margin: 0.5rem 0 !important;
}

.overlayContent{
	text-align: center;
	color: white;
	font-family: "Luckiest Guy", cursive;
	
	position: absolute;
	top: 50%; 
	transform: translateY(-50%) translateX(-50%); 
	left: 50%;
	
	width: 80%;
	font-size:0.8vw;
}


.card:hover .overlay {
  opacity: 1;
}

.dayBlock{
	padding:0 !important;
}

.comment{
	font-family: Trebuchet;

	font-size: 0.6vw;
}

.image {
	display: block;
	width: 100%;
	height: auto;
}

.dayNumber{
	position: absolute;
	bottom: 0.3em;
	right: 0.3em;
	
	
	font-size: 2vw;
	
	padding: 0;
	
}

.superFont{
	font-family: "Luckiest Guy", cursive;
	color: white !important;
	text-shadow: 0 0.1em 20px rgba(0, 0, 0, 1), 0.05em -0.03em 0 rgba(0, 0, 0, 1),
    0.05em 0.005em 0 rgba(0, 0, 0, 1), 0em 0.08em 0 rgba(0, 0, 0, 1),
    0.05em 0.08em 0 rgba(0, 0, 0, 1), 0px -0.03em 0 rgba(0, 0, 0, 1),
    -0.03em -0.03em 0 rgba(0, 0, 0, 1), -0.03em 0.08em 0 rgba(0, 0, 0, 1), -0.03em 0 0 rgba(0, 0, 0, 1);
}

.header{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Luckiest Guy", cursive;
	height: 100%;
}

.header h1 {
	font-size: 5vw;
  color: white;
  text-shadow: 0 0.1em 20px rgba(0, 0, 0, 1), 0.05em -0.03em 0 rgba(0, 0, 0, 1),
    0.05em 0.005em 0 rgba(0, 0, 0, 1), 0em 0.08em 0 rgba(0, 0, 0, 1),
    0.05em 0.08em 0 rgba(0, 0, 0, 1), 0px -0.03em 0 rgba(0, 0, 0, 1),
    -0.03em -0.03em 0 rgba(0, 0, 0, 1), -0.03em 0.08em 0 rgba(0, 0, 0, 1), -0.03em 0 0 rgba(0, 0, 0, 1);
}

h1 span {
	transform: scale(0.9);
	display: inline-block;
}
h1 span:first-child {
	animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}
h1 span:last-child {
	animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

@keyframes bop {
  0% {
    transform: scale(0.9);
  }
  50%,
  100% {
    transform: scale(1);
  }
}

@keyframes bopB {
  0% {
    transform: scale(0.9);
  }
  80%,
  100% {
    transform: scale(1) rotateZ(-3deg);
  }
}
/*
button{
    background: #fcba03;
    color: white;
    cursor: pointer;
    font-size: 2em;
    padding: 1.5rem;
    border: 0;
    border-radius: 10px;
    width: auto;
    position: relative;
}
*/
.inline-block{
	display: inline-block;
}


#controlPanel{
	text-align:center;
	/*
	font-size: 2em;
	*/
}
/*
#controlPanel button{
	margin-left: 5em;
	margin-right: 5em;
	margin-bottom: 1em;
	margin-top: 1em;
}
*/
.spoilCheck{
	/*
	font-size: 2em;
	*/
	display:inline-block;
	margin-left: 5em;
}

footer {
    position: fixed;
    height: 5vh;
    background-color: #ff8a03;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
	color: white;
	text-align: center;
}

footer button{
	margin-top: 0.2em;
	padding: 0.2em;
	border-radius: 100%;
	float: right;
}
.footerText{
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}



.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #FFFFFF; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "OUI";
    padding-left: 10px;
    background-color: #39b510; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "NON";
    padding-right: 10px;
    background-color: #db3c0b; color: #FFFFFF;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 56px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}

/* LOADER */
.outer-wrapper{
  display: inline-block;
  margin: 5px 15px;
  padding: 25px 15px;
  background: #ffa503;
  min-width: 50px;
  width : 100%;
}

.column-wrapper{
  height: 200px;
  width: 20px;
  background: #CFD8DC;
  transform: rotate(180deg);
  margin: 0 auto;
}

.column{
  //position: relative;
  //display: block;
  //bottom: 0;
  width: 20px;
  height: 0%;
  background: #90A4AE;
  //transfrom: -moz-translateY(-10px);
}

.percentage, .value{
  margin-top: 10px;
  padding: 5px 10px;
  color: #FFF;
  background: #263238;
  position: relative;
  border-radius: 4px;
  text-align: center;
}

.value{
  background: #7986CB;
}


