* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

ul {
    padding: 20px;
}

.navbar {
  background: #9ab7ed;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
}

#logo {
    height: 80px;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__links:hover {
    color: #000000;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        height: auto;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #9ab7ed;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        /* height: 30vh; */
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
        height: 80px;
    }

    .navbar__links {
        text-align: center;
        padding: 1rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* For main */

.main__container {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    min-height: 100%;
    margin: 0 auto -28rem;
    /* height: 90vh; */
}

.push {
    height: 28rem;
}

.main__content h1 {
    font-size: 3rem;
}

.main__content h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.cgm__title {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    margin-bottom: 50px;
    display: block;
    max-width: 1000px;
}

.biblevers__content {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.biblevers__src {
    text-align: right;
    padding-right: 10px;
    padding-bottom: 10px;
}

.water_img {
    grid-column-start: 2;
    grid-column-end: 4;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    padding-top: 25px;
    padding-bottom: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .main__content {
      text-align: center;
      /* margin-bottom: 1rem; */
    }

    .cgm__title {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        margin-top: 0;
        display: block;
        max-width: 1000px;
    }

    .main__content h1 {
      font-size: 2.5rem;
      margin-top: 1rem;
    }

    .main__content h2 {
      font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .main__content {
      text-align: center;
      /* margin-bottom: 1rem; */
    }

    .cgm__title {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        display: block;
        max-width: 1000px;
    }

    .main__content h1 {
      font-size: 2.5rem;
      margin-top: 1rem;
    }

    .main__content h2 {
      font-size: 1.5rem;
    }

    .water_img {
        grid-column-start: 1;
        grid-row-start: 2;
        width: 100%;
        padding-top: 0;
    }

    .push {
        grid-row-start: 3;
        height: 28rem;
    }
}

@media screen and (max-width: 480px) {
    .main__content h1 {
      font-size: 2rem;
      margin-top: 1rem;
    }

    .main__content h2 {
      font-size: 1rem;
    }

    .biblevers__src {
        text-align: right;
        padding: 0 5%;
    }
}

/* Footer CSS */
.footer__container {
    background-color: #141414;
    padding: 3rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 28rem;
    margin-top: auto;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    text-align: left;
    width: 240px;
    box-sizing: content-box;
}

.footer__link--items h2 {
    margin-bottom: 16px;
}

.footer__link--items > h2 {
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer_icons_container {
    display: grid;
    grid-template-columns: 100px 100px;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-items: center;
    column-gap: 5px;
    row-gap: 5px;
}

.footer__link--items a:hover {
    color: #b12828;
    transition: 0.3s ease-out;
}

.imageExternLink {
    max-height: 100px;
    max-width: 100px;
}


@media screen and (max-width: 820px) {
    .footer__container {
        background-color: #141414;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__link--wrapper {
      flex-direction: row;
    }

    .footer__link--items {
        padding: 0px;
        width: 220px;
    }

    .social__media--wrap {
      flex-direction: row;
    }
}

@media screen and (max-width: 480px) {
    .footer__container {
        background-color: #141414;
        padding: 1rem 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer__link--wrapper {
        flex-direction: row;
    }

    .footer__link--items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        padding: 10px;
        width: 80%;
        text-align: left;
        box-sizing: content-box;
    }
}



/* For main for "Impressum"*/
.impressum_main__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 80%;
    max-width: 1000px;
    min-height: 100%;
    margin: 0 auto -28rem;
    /* height: 90vh; */
}

.impressum_main__content {
    text-align: justify;
    margin: 1rem 1rem;
}

@media screen and (max-width: 768px) {
    .impressum_main__container {
        width: 100%;
    }
}





/* For main for directions */
.directions_main__container {
    width: 100%;
    min-height: 100%;
    margin: 0 auto -28rem;
}

.directions_main__content {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-self: center;
    column-gap: 0px;
    text-align: left;
}

.directions_main__content h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
}

.directions_img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
    max-width: 750px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 7%;
    order: 1;
}

.directions_img_div {
    justify-self: end;
}

.directions_content {
    justify-self: start;
}

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .directions_main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .directions_main__content {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        column-gap: 10px;
    }

    .directions_img_div {
        order: 2;
    }

    .directions_main__content h1 {
      font-size: 2rem;
      margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .directions_main__container {
      display: grid;
      grid-template-columns: 100%;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .directions_main__content {
      text-align: left;
      /* margin-bottom: 1rem; */
    }

    .directions_main__content h1 {
      font-size: 2rem;
      margin-top: 1rem;
    }

    .directions_img {
        grid-column-start: 1;
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

}

@media screen and (max-width: 480px) {
    .directions_main__content h1 {
      font-size: 1.5rem;
      margin-top: 1rem;
    }
}





/* Contact form part */
.contact_main__container {
    display: grid;
    grid-template-columns: 35% 50%;
    grid-row-gap: 1.5rem;
    align-items: center;
    justify-self: center;
    width: 100%;
    /* min-height: 100%; */
    margin: 0 0;
    margin-bottom: -26rem;
    /* height: 90vh; */
}

.contact-section-header {
    text-align: center;
    margin: 0 auto;
    padding: 40px 0;
    font: 300 60px 'Oswald', sans-serif;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.contact-text {
    font: 300 18px 'Lato', sans-serif;
    letter-spacing: 1.5px;
    color: #2b2b2b;
}

.place {
    grid-row-start: 1;
    grid-column-start: 2;
}

.phone {
    grid-row-start: 2;
    grid-column-start: 2;
}

.gmail {
    grid-row-start: 3;
    grid-column-start: 2;
}

.fa-map-marker{
    grid-row-start: 1;
    grid-column-start: 1;
    justify-self: right;
    padding-right: 62px;
}

.fa-phone{
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: right;
    padding-right: 56px;
}

.fa-envelope{
    grid-row-start: 3;
    grid-column-start: 1;
    justify-self: right;
    padding-right: 53px;
}

.contact-text a {
    color: #2b2b2b;
    text-decoration: none;
    transition-duration: 0.2s;
}

.contact-text a:hover {
    color: #415dcd;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .contact_main__container {
        display: grid;
        grid-template-columns: 25% 65%;
        width: 100%;
    }

    .contact-text {
        letter-spacing: 1px;
    }
}


/* About us section */
.about_us_main__container {
    display: grid;
    grid-template-columns: 400px 400px 400px;
    align-items: center;
    justify-self: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    margin: 0 auto -28rem;
    /* height: 90vh; */
}

.cgm__title {
    grid-column-start: 1;
    grid-column-end: 4;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    margin-bottom: 50px;
    display: block;
    max-width: 800px;
}

.flyer_img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    max-width: 400px;
}

#flyer_1 {
    margin-right: 0;
}

#flyer_2 {
    margin-left: 0;
    margin-right: 0;
}

#flyer_3 {
    margin-left: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .about_us_main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .cgm__title {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        margin-top: 0;
        display: block;
        max-width: 800px;
    }
}

@media screen and (max-width: 768px) {
    .about_us_main__container {
      display: grid;
      grid-template-columns: 100%;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .main__content {
      text-align: center;
      /* margin-bottom: 1rem; */
    }

    .cgm__title {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: block;
        max-width: 1000px;
    }

    .flyer_img {
        width: 100%;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding: 0 0;
    }

    #flyer_1 {
        grid-row-start: 2;
    }

    #flyer_2 {
        grid-row-start: 3;
    }

    #flyer_3 {
        grid-row-start: 4;
    }
}


/* dates... */

.dates_main__container {
    width: 100%;
    min-height: 100%;
    margin: 0 auto -28rem;
}

.dates_main__content {
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: center;
    align-items: center;
    justify-self: center;
    column-gap: 0px;
    text-align: left;
}

.dates_main__content h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
}

#dates_title {
    grid-column-start: 1;
    grid-column-end: 3;
    align-self: center;
    justify-self: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.dates_text h2 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
}

.dates_text {
    grid-column-start: 2;
}

#calendar {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: rgb(255, 255, 255);
    background: rgba(66, 66, 66, 1);
    width: 420px;
    /* margin: 10% auto; */
    height: 600px;
    grid-row-start: 2;
    align-self: center;
    justify-self: right;
    justify-content: center;
    margin-right: 5%;
}

#additional_events_id {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    margin-right: 0;
    justify-self: center;
    margin-top: 20px;
}

#date_flyer_1_link {
    justify-self: right;
    justify-content: center;
    align-self: center;
    grid-column-start: 1;
    grid-row-start: 4;
    margin-right: 5%;
    margin-top: 20px;
}

#date_flyer {
    max-width: 400px;
    max-height: 400px;
}

#date_flyer_2_link {
    grid-column-start: 2;
    grid-row-start: 4;
    justify-self: left;
    margin-top: 20px;
}

#date_flyer_3_link {
    justify-self: right;
    justify-content: center;
    align-self: center;
    grid-column-start: 1;
    grid-row-start: 5;
    margin-right: 5%;
    margin-top: 20px;
}

#date_flyer_4_link {
    grid-column-start: 2;
    grid-row-start: 5;
    justify-self: left;
    margin-top: 20px;
}


/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .dates_main__container {
      display: grid;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .dates_main__content {
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-self: center;
        column-gap: 10px;
    }
}

@media screen and (max-width: 900px) {
    .dates_main__container {
      display: grid;
      grid-template-columns: 100%;
      grid-template-columns: 100%;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: -28rem;
    }

    .dates_main__content {
      text-align: left;
      grid-template-columns: 95%;
      margin-left: 1rem;
    }

    .dates_main__content h1 {
      font-size: 2rem;
      margin-top: 1rem;
    }

    .dates_main__content h2 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .dates_text {
        grid-column-start: 1;
        grid-row-start: 2;
    }

    #calendar {
        grid-column-start: 1;
        grid-row-start: 3;
        margin: 0 2%;
        justify-self: center;
    }

    #additional_events_id {
        grid-column-start: 1;
        grid-row-start: 4;
        margin-right: 0;
        justify-self: center;
    }

    #date_flyer_1_link {
        grid-column-start: 1;
        grid-row-start: 5;
        justify-self: center;
        margin-top: 20px;
        margin-right: 0;        
    }

    #date_flyer_2_link {
        grid-column-start: 1;
        grid-row-start: 6;
        justify-self: center;
        justify-content: center;
        align-self: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #date_flyer_3_link {
        grid-column-start: 1;
        grid-row-start: 7;
        justify-self: center;
        justify-content: center;
        align-self: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0;
    }

    #date_flyer_4_link {
        grid-column-start: 1;
        grid-row-start: 8;
        justify-self: center;
        justify-content: center;
        align-self: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0;
    }
    
}

@media screen and (max-width: 480px) {
    .dates_main__content h1 {
      font-size: 1.5rem;
      margin-top: 1rem;
    }

    .dates_main__content h2 {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}









*, *:before, *:after {
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

.header {
    height: 50px;
    width: 420px;
    background: rgba(66, 66, 66, 1);
    text-align: center;
    position:relative;
    z-index: 100;
}
    
.header h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
    font-weight: 100;
    letter-spacing: 1px;
}

.left, .right {
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    top: 50%;
    margin-top: -7.5px;
    cursor: pointer;
}

.left {
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent rgba(160, 159, 160, 1) transparent transparent;
    left: 20px;
}

.right {
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent rgba(160, 159, 160, 1);
    right: 20px;
}

.month {
    overflow: hidden;
    opacity: 0;
}

.month.new {
    /* -webkit-animation: fadeIn 1s ease-out; */
    opacity: 1;
}

.month.in.next {
    -webkit-animation: moveFromTopFadeMonth .4s ease-out;
    -moz-animation: moveFromTopFadeMonth .4s ease-out;
    animation: moveFromTopFadeMonth .4s ease-out;
    opacity: 1;
}

.month.out.next {
    -webkit-animation: moveToTopFadeMonth .4s ease-in;
    -moz-animation: moveToTopFadeMonth .4s ease-in;
    animation: moveToTopFadeMonth .4s ease-in;
    opacity: 1;
}

.month.in.prev {
    -webkit-animation: moveFromBottomFadeMonth .4s ease-out;
    -moz-animation: moveFromBottomFadeMonth .4s ease-out;
    animation: moveFromBottomFadeMonth .4s ease-out;
    opacity: 1;
}

.month.out.prev {
    -webkit-animation: moveToBottomFadeMonth .4s ease-in;
    -moz-animation: moveToBottomFadeMonth .4s ease-in;
    animation: moveToBottomFadeMonth .4s ease-in;
    opacity: 1;
}
    
.week {
    background: #4A4A4A;
}

.day {
    display: inline-block;
    width: 60px;
    padding: 10px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    background: #4A4A4A;
    position: relative;
    z-index: 100;
}

.day.other {
    color: rgba(255, 255, 255, 0.304);
}

.day.today {
    color: rgba(156, 202, 235, 1);
}
    
.day-name {
    font-size: 9px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .7px;
}

.day-number {
    font-size: 24px;
    letter-spacing: 1.5px;
}

.day .day-events {
    list-style: none;
    margin-top: 3px;
    text-align: center;
    height: 12px;
    line-height: 6px;
    overflow: hidden;
}

.day .day-events span {
    vertical-align: top;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 5px;
    height: 5px;
    line-height: 5px;
    margin: 0 1px;
}

.blue { background: rgba(156, 202, 235, 1); }
.orange { background: rgba(247, 167, 0, 1); }
.green { background: rgba(153, 198, 109, 1); }
.yellow { background: rgba(249, 233, 0, 1); }
.red { background: rgb(181, 45, 30); }
.aqua { background: rgb(0, 255, 255); }

.details {
    position: relative;
    width: 420px;
    height: 75px;
    background: rgba(164, 164, 164, 1);
    margin-top: 5px;
    border-radius: 4px;
}

.details.in {
    -webkit-animation: moveFromTopFade .5s ease both;
    -moz-animation: moveFromTopFade .5s ease both;
    animation: moveFromTopFade .5s ease both;
}

.details.out {
    -webkit-animation: moveToTopFade .5s ease both;
    -moz-animation: moveToTopFade .5s ease both;
    animation: moveToTopFade .5s ease both;
}

.arrow {
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -2px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent rgba(164, 164, 164, 1) transparent;
    transition: all 0.7s ease;
}

.events {
    height: 75px;
    padding: 7px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.events.in {
    -webkit-animation: fadeIn .3s ease both;
    -moz-animation: fadeIn .3s ease both;
    animation: fadeIn .3s ease both;
}

.events.in {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    animation-delay: .3s;
}

.details.out .events {
    -webkit-animation: fadeOutShrink .4s ease both;
    -moz-animation: fadeOutShink .4s ease both;
    animation: fadeOutShink .4s ease both;
}

.events.out {
    -webkit-animation: fadeOut .3s ease both;
    -moz-animation: fadeOut .3s ease both;
    animation: fadeOut .3s ease both;
}

.event {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: .5px;
    padding: 2px 16px;
    vertical-align: top;
}

.event.empty {
    color: #eee;
}

.event-category {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin: 6px 0 0;
    vertical-align: top;
}

.event span {
    display: inline-block;
    padding: 0 0 0 7px;
}

.legend {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: rgba(60, 60, 60, 1);
    line-height: 30px;

}

.entry {
    position: relative;
    padding: 0 0 0 25px;
    font-size: 13px;
    display: inline-block;
    line-height: 30px;
    background: transparent;
}

.entry:after {
    position: absolute;
    content: '';
    height: 5px;
    width: 5px;
    top: 12px;
    left: 14px;
}

.entry.blue:after { background: rgba(156, 202, 235, 1); }
.entry.orange:after { background: rgba(247, 167, 0, 1); }
.entry.green:after { background: rgba(153, 198, 109, 1); }
.entry.yellow:after { background: rgba(249, 233, 0, 1); }
.entry.red:after { background: rgb(181, 45, 30); }
.entry.aqua:after { background: rgb(0, 255, 255); }

/* Animations are cool!  */
@-webkit-keyframes moveFromTopFade {
    from { opacity: .3; height:0px; margin-top:0px; -webkit-transform: translateY(-100%); }
}
@-moz-keyframes moveFromTopFade {
    from { height:0px; margin-top:0px; -moz-transform: translateY(-100%); }
}
@keyframes moveFromTopFade {
    from { height:0px; margin-top:0px; transform: translateY(-100%); }
}

@-webkit-keyframes moveToTopFade {
    to { opacity: .3; height:0px; margin-top:0px; opacity: 0.3; -webkit-transform: translateY(-100%); }
}
@-moz-keyframes moveToTopFade {
    to { height:0px; -moz-transform: translateY(-100%); }
}
@keyframes moveToTopFade {
    to { height:0px; transform: translateY(-100%); }
}

@-webkit-keyframes moveToTopFadeMonth {
    to { opacity: 0; -webkit-transform: translateY(-30%) scale(.95); }
}
@-moz-keyframes moveToTopFadeMonth {
    to { opacity: 0; -moz-transform: translateY(-30%); }
}
@keyframes moveToTopFadeMonth {
    to { opacity: 0; -moz-transform: translateY(-30%); }
}

@-webkit-keyframes moveFromTopFadeMonth {
    from { opacity: 0; -webkit-transform: translateY(30%) scale(.95); }
}
@-moz-keyframes moveFromTopFadeMonth {
    from { opacity: 0; -moz-transform: translateY(30%); }
}
@keyframes moveFromTopFadeMonth {
    from { opacity: 0; -moz-transform: translateY(30%); }
}

@-webkit-keyframes moveToBottomFadeMonth {
    to { opacity: 0; -webkit-transform: translateY(30%) scale(.95); }
}
@-moz-keyframes moveToBottomFadeMonth {
    to { opacity: 0; -webkit-transform: translateY(30%); }
}
@keyframes moveToBottomFadeMonth {
    to { opacity: 0; -webkit-transform: translateY(30%); }
}
    
@-webkit-keyframes moveFromBottomFadeMonth {
    from { opacity: 0; -webkit-transform: translateY(-30%) scale(.95); }
}
@-moz-keyframes moveFromBottomFadeMonth {
    from { opacity: 0; -webkit-transform: translateY(-30%); }
}
@keyframes moveFromBottomFadeMonth {
    from { opacity: 0; -webkit-transform: translateY(-30%); }
}

@-webkit-keyframes fadeIn  {
    from { opacity: 0; }
}
@-moz-keyframes fadeIn  {
    from { opacity: 0; }
}
@keyframes fadeIn  {
    from { opacity: 0; }
}

@-webkit-keyframes fadeOut  {
    to { opacity: 0; }
}
@-moz-keyframes fadeOut  {
    to { opacity: 0; }
}
@keyframes fadeOut  {
    to { opacity: 0; }
}

@-webkit-keyframes fadeOutShink  {
    to { opacity: 0; padding: 0px; height: 0px; }
}
@-moz-keyframes fadeOutShink  {
    to { opacity: 0; padding: 0px; height: 0px; }
}
@keyframes fadeOutShink  {
    to { opacity: 0; padding: 0px; height: 0px; }
}

@media screen and (max-width: 420px) {
    #calendar {
        width: 350px;
        /* margin: auto auto; */
        height: 600px;
        align-self: center;
        justify-self: center;
        justify-content: center;
        /* margin-right: 5%; */
    }

    .header {
        height: 50px;
        width: 350px;
    }

    .day {
        width: 50px;
        padding: 10px;
    }

    .day-name {
        font-size: 9px;
        margin-bottom: 5px;
        letter-spacing: .7px;
    }

    .day-number {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .day .day-events {
        margin-top: 3px;
        height: 12px;
        line-height: 6px;
    }

    .day .day-events span {
        vertical-align: top;
        display: inline-block;
        padding: 0;
        margin: 0;
        width: 5px;
        height: 5px;
        line-height: 5px;
        margin: 0 1px;
    }
    
    .details {
        width: 350px;
        height: 75px;
        margin-top: 5px;
        border-radius: 4px;
    }
    
    .arrow {
        top: -5px;
        left: 50%;
        margin-left: -2px;
        border-width: 0 5px 5px 5px;
    }
    
    .events {
        height: 75px;
        padding: 7px 0;
    }

    .event {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: .5px;
        padding: 2px 16px;
    }
    
    .event-category {
        height: 10px;
        width: 10px;
        margin: 6px 0 0;
    }
    
    .event span {
        padding: 0 0 0 7px;
    }
    
    .entry {
        padding: 0 0 0 25px;
        font-size: 13px;
        line-height: 30px;
    }
    
    .entry:after {
        height: 5px;
        width: 5px;
        top: 12px;
        left: 14px;
    }

    #date_flyer_1_link {
        justify-self: center;
        justify-content: center;
        align-self: center;
        grid-column-start: 1;
        grid-row-start: 5;
        margin-top: 20px;
    }
    
    #date_flyer {
        max-width: 100%;
    }
    
    #date_flyer_2_link {
        grid-column-start: 1;
        grid-row-start: 6;
        justify-self: center;
        margin-top: 20px;
    }
    
    #date_flyer_3_link {
        grid-column-start: 1;
        grid-row-start: 7;
        justify-self: center;
        margin-top: 20px;
    }

    #date_flyer_4_link {
        grid-column-start: 1;
        grid-row-start: 8;
        justify-self: center;
        margin-top: 20px;
    }
}