html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input {
	margin: 0;
	border: 0;
	padding: 0;
}

body{
	font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.disclaimer{
	display: block;
	margin-bottom: 10px;
}

.btn{
	background-color: #ffdd03;
    border-radius: 4px;
    box-shadow: 0 2px 14px -8px rgba(0,0,0,0.29);
    color: #33414f;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
    max-width: 100%;
    padding: 16px 52px;
    text-align: center;
    text-transform: none;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover{
	text-decoration: none;
    border-bottom: none;
    background: #dec000;
}

#hero{
	position: relative;
	background-color: #ffd900;
	height: 100vh;
	background-image: url('McOttoSlider.jpg');
	background-size: cover;
	background-position: 80% center;
}

header#hero a{
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
}

img.center{
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

header#hero h2{
	position: absolute;
	bottom: 28%;
	font-size: 50px;
	text-transform: uppercase;
	text-align: center;
	width: 60%;
	max-width: 800px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	color: #fff;
}

.loggedIn{
	background-color: #242f3a;
	color: #fff;
}

.loggedIn section:last-child{
	border-bottom: solid 1px rgba(255,255,255,0.5);
}

header#user{
	background-color: rgba(255,255,255,0.1);
}

.container{
	width: 95%;
	max-width: 1000px;
	margin: auto auto;
	padding: 15px;
}

header#user a{
	color: #fff;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
}

.table{
	margin-top: 50px;
}

.table h2{
	color: rgb(255, 221, 1);
	border-bottom: solid 1px #fff;
}

.day_grid{
	padding: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.day_grid .day{
	transition: all .25s;
	cursor: pointer;
	position: relative;
	text-align: center;
	width: 12%;
	padding-top: 2%;
	padding-bottom: 2%;
	border-radius: 4px;
	background-color: rgba(255,255,255,0.1);
	border-bottom: solid 4px rgba(255,255,255,0.1);
}

.nice{
	display: none;
	height: 48px;
}

.day_grid .day:before{
	content: "";
	position: absolute;
	width: 44px;
	height: 44px;
	position: absolute;
	top: -12px;
	right: -12px;
	border-radius: 100%;
	background-color: #4e5760;
}

.day_grid .day img{
	pointer-events: none;
	transition: all .25s;
	opacity: 0;
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 500;
	max-width: 50px;
	width: 50%;
}

.day:hover{
	background-color: rgba(255,255,255,0.15);
	border-bottom: solid 4px rgb(255, 221, 1);
}

.day.sticker:hover,
.day.disabled:hover{
	background-color: rgba(255,255,255,0.1) !important;
	border-bottom: solid 4px rgba(255,255,255,0.1) !important;
}

.sticker_tooltip{
	transition: all .25s;
	opacity: 0;
	white-space: nowrap;
	position: absolute;
	border-radius: 4px;
	background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.5);
    padding-left: 5px;
    padding-right: 5px;
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.disabled{
	opacity: 0.25;
}

.top ul li:hover{
	border-color: #fff;
}

.top ul li.hover .sticker_tooltip,
.top ul li:hover .sticker_tooltip{
	bottom: 135%;
	opacity: 1;
}

.sticker_tooltip img{
	display: inline-block;
	height: 24px;
	margin: 5px 1px 2px 1px;
}

.day.today:hover{
	background-color: rgba(255,255,255,0.15) !important;
	border-bottom: solid 4px rgb(255, 221, 1) !important;
}


.top ul{
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-top: 5px;
}

.top ul li{
	transition: all .25s;
	cursor: default;
	position: relative;
	margin: 5px 10px;
	border-bottom: solid 2px rgba(255,255,255,0.1);
	border-radius: 2px;
	color: rgba(255,255,255,0.6);
}

.day_grid .day.sticker, .day_grid .day.disabled{
	cursor: default;
}

.day_grid .day.sticker img{
	opacity: 1;
    animation-duration: 1s;
    animation-name: bounce-4;
    animation-timing-function: ease;
}

.day_grid .day.today{
	border-bottom: solid 4px rgb(255, 221, 1);
}

.day_grid .day b{
	display: block;
	font-size: 30px;
	opacity: 0.2;
}

header#user a b{   
	color: rgb(255, 221, 1);
	display: block;
	font-size: 20px;
}

.user_section{
	text-align: center;
	margin-top: -60px;
}

.user_section h1{
	margin-bottom: 20px;
}

.mute{
	opacity: 0.75;
}

.mute p{
	font-size: 11px;
}

.user_section img{
	display: block;
	width: 90%;
	max-width: 100px;
	margin: auto auto;
	border-radius: 100%;
	margin-bottom: 10px;
}

header#user a.logout{
	position: relative;
	float: right;
	color: #fff;
	top: 7px;
	padding: 5px 10px;
	text-transform: uppercase;
	border-radius: 4px;
	color: rgb(255, 221, 1);
	border: solid 1px rgb(255, 221, 1);
}

section{
	width: 95%;
	max-width: 1000px;
	padding: 50px 0px;
	margin: auto auto;
}

p{
	margin: auto auto;
	width: 95%;
	max-width: 1024px;
	font-size: 13px;
}

#logo{
	display: block;
	width: 90%;
	max-width: 400px;
	margin: auto auto;
}

footer a{
	transition: opacity .25s;
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
}

footer a:hover{
	opacity: 1;
}

@keyframes bounce-4 {
    0%   { transform: scale(1,1)    translateY(0); }
    10%  { transform: scale(1.1,.9) translateY(0); }
    30%  { transform: scale(.9,1.1) translateY(-10px); }
    50%  { transform: scale(1,1)    translateY(0); }
    100% { transform: scale(1,1)    translateY(0); }
}

footer{
	font-size: 12px;
	padding: 30px;
	background-color: #242f3a;
	color: #fff;
	text-align: center;
}

@media(max-width: 800px){
	section{
		text-align: center;
	}
	.top ul{
		justify-content: center;
	}
	section.mute{
		text-align: left;
	}
	header#hero img{
		top: 30%;
	}
	header#hero h2{
		font-size: 30px;
		width: 90%;
		bottom: 35%;
	}
	header#hero a{
		bottom: 20%;
		white-space:nowrap;
	}
	.day_grid{
		padding-left: 10px;
		padding-right: 10px;
	}
	.day_grid .day{
		width: 42%;
		margin-bottom: 6%;
	}

	.day{
		background-color: rgba(255,255,255,0.1) !important;
		border-bottom: solid 4px rgba(255,255,255,0.1) !important;
	}
	.day.today{
		background-color: rgba(255,255,255,0.15) !important;
		border-bottom: solid 4px rgb(255, 221, 1) !important;
	}
}