@import url('https://fonts.googleapis.com/css?family=Merriweather&subset=latin-ext');
body,html {
    overflow-x: hidden;
}
body {
    background-color: #4ABDAC;
    color: #DFDCE3;
    font-family: 'Merriweather', serif;
    font-size: 16px;
}
a {
    color: inherit;
}
.intro {
    text-align: center;
}
.intro h1 {
    color: white;
    vertical-align: middle;
    font-size: 1.9em;
}
hr {
    width: auto;
    max-width: 700px;
    border: #DFDCE3 solid;
    border-width: 1px 0 0 0;
}
.calendar {
    margin: 0 auto;
    position: relative;
    height: auto;
    overflow: hidden;
    width: auto;
    max-width: 700px;
    transition: all 1s ease;
}
.calendar.zoom {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translate(-100%, -100%) rotate(-90deg);
    transform: translate(-100%, -100%) rotate(-90deg);
    opacity: 0;
}
.day {
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
}
.day.overview {
    position: relative;
}
.day.overview:after {
    content: "";
    display: block;
    position: absolute;
    z-index: auto;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: grey;
}
.day.overview-ok:after { background: green; }
.day.overview-empty:after { background: red; }
.day.overview-over:after { background: yellow; }
.day.overview-placeholder:after { background: orange; }

.day .day-box {
    text-align: center;
    border-radius: 5px;
    margin: 10px;
    padding: 0 0 10px 0;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
    background: #DFDCE3;
    background-size: cover;
    background-position: 50% 50%;
    transition: all 0.25s ease-out;
}
.day .wday {
    font-size: 12px;
    background: #fc4a1a;
    line-height: 20px;
    border-radius: 5px 5px 0 0;
    font-style: italic;
    color: #DFDCE3;
}
.day .date {
    font-size: 28px;
    font-weight: bold;
    color: #4ABDAC;
    padding: 5px 0;
}
.day .month {
    font-size: 14px;
    color: #4ABDAC;
    font-weight: bold;
}
.day.past:hover .day-box,
.day.today:hover .day-box {
    -webkit-transform: rotate(2deg) scale(1.1);
    transform: rotate(2deg) scale(1.1);
}
.day-size {
    display: inline-block;
    width: 14.285%;
}
@media only screen and (max-width: 768px) {
    .day-size {
        width: 33.333%;
    }
}
@media only screen and (max-width: 768px) {
    .day-spacer {
        display: none;
    }
}
.opened .day-box {
    background-size: cover;
}
.opened .date,
.opened .month {
    color: #DFDCE3;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.today .day-box {
    -webkit-transform: translateY(-2px) scale(1.05);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);
}
.today .date,
.today .month {
    color: #fc4a1a;
}
.day.locked {
    cursor: help;
}
.day.locked .day-box {
    opacity: 0.5;
}
.present {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    overflow: hidden;
    background: #4ABDAC;
    transition: all 0.45s ease-out;
}
.present.hidden {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
}
.present h1 {
    text-align: center;
    font-size: 38px;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}
.present p.with {
    line-height: 1;
    font-size: 12px;
    margin: 10px auto;
}
.present p {
    line-height: 2;
    text-align: center;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.present p.long-text {
    font-size: 16.5px;
    text-align: left;
    line-height: 1.6;
}
.present__x {
    position: fixed;
    z-index: auto;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-size: 40px;
    color: #DFDCE3;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 40px;
}
.present__box {
    padding: 20px;
    margin: 0 auto;
    max-width: 500px;
}
.present__picture {
    display: inline-block;
    width: 100%;
    height: auto;
    border: 10px solid #FFF;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.present__picture--0 {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
}
.present__picture--1 {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    margin-top: -9px;
}
.present__close-button {
    margin-top: 40px;
    text-align: center;
}
.present__users {
    text-align: center;
}
.present__users .user {
    display: inline-block;
    width: 50px;
    margin-left: -5px;
}
.present__users .user__picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-position: center center;
    background-size: cover;
    margin: 0 0 10px 0;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}
.present__playlist {
    list-style:none;
    padding:0
}
.present__playlist li {
    margin-bottom: 10px;
    font-size:12px;
    white-space: nowrap;
}
.present__playlist li a:before {
    content: "►";
    font-size: 20px;
    display: inline-block;
    background: #F7B733;
    border-radius: 6px;
    margin-right: 6px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
 }

.present .poem {
    font-style:italic;
}
@media only screen and (max-width: 768px) {
    .present .poem {
        font-size: 16px;
    }
}

.text-center {
    text-align: center;
}
.btn {
    display: inline-block;
    text-decoration: none;
    color: #DFDCE3;
    background: #F7B733;
    padding: 15px 20px;
    line-height: 1.2;
    border-radius: 5px;
    font-size: 20px;
    box-shadow: 0px 5px 0px #eea309, 0px 6px 1px rgba(0, 0, 0, 0.1);
    margin: 10px 5px;
}
.big {
    font-size: 2em;
    vertical-align: middle;
}

.responsive-yt {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}
.responsive-yt iframe {
    display: block;
}

