/*= CORE CSS */
.hidden {
    display: none;
}

.eventCalendar-wrap {
    position: relative;
    overflow: hidden;
}

.eventCalendar-wrap .arrow {
    position: absolute;
    z-index: 5;
    top: 3px;
}

.eventCalendar-wrap .prev {
    left: 3px;
}

.eventCalendar-wrap .next {
    right: 3px;
}

.eventsCalendar-currentTitle .monthTitle {
    display: block;
    text-align: center;
}

.eventsCalendar-monthWrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.eventsCalendar-monthWrap.currentMonth {
    z-index: 1;
}

.eventsCalendar-monthWrap.currentMonth .monthTitle {
    cursor: default;
    pointer-events: none;
}

.eventsCalendar-daysList {
    display: table;
    width: 100%;
}

.eventsCalendar-daysList {
    display: table;
    width: 100%;
}

.eventsCalendar-daysList.showAsWeek {
    display: block;
}

.eventsCalendar-daysList li {
    display: table-cell;
}

.eventsCalendar-daysList.showAsWeek li {
    display: block;
    float: left;
    width: 14.28%;
    height: 20px;
}

.eventsCalendar-daysList li.empty a {
    cursor: default;
    pointer-events: none;
}

.eventsCalendar-loading {
    display: block;
    min-width: 100px;
    height: 40px;
    line-height: 40px;
}

.eventsCalendar-list {
    position: relative;
    z-index: 1;
}

.eventsCalendar-list.oldEventList {
    z-index: 2;
}

.eventsCalendar-day a:hover {
    background-color: #E4E4E4;
}

.eventsCalendar-subtitle {
    font-weight: bold;
    font-size: 120%;
}

.eventsCalendar-list li .eventTitle {
    font-size: 14px;
}

.eventsCalendar-list li .eventTitle.active {
    background-color: #87BF2B;
}

.eventsCalendar-day {
    text-align: center;
}

.eventsCalendar-day a {
    display: inline-block;
    border-radius: 50%;
    color: black;
    background: transparent;
    border: 1px solid #eee;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.eventsCalendar-day a:before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*
79BDCC  bleu
87BF2B  vert
*/
.eventsCalendar-day.dayWithEvents a {
    background: #79BDCC;
    color: white;
    border-color: #79BDCC;
    text-decoration: none;
}

.eventsCalendar-day.dayWithEvents a.active {
    background: #87BF2B;
}

.eventsCalendar-day.dayWithEvents.current a {
    background: #d2d2d2;
    color: white;
    border-color: #d2d2d2;
}

.eventsCalendar-day.dayWithEvents a.active::before {
    content: '';
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    animation: pulse 1s ease infinite;
    border-radius: 50%;
    border: 5px double #87BF2B;
}

.eventsCalendar-day.dayWithEvents.current a.active::before {
    border-color: #87BF2B;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(1.3);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }

}

/* calendar */

/*li.eventsCalendar-day a.active {
    background-color: #87BF2B;
    border-radius: 50%;
    color: #fff;
    position: relative;
}

li.eventsCalendar-day a.active::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-animation: pulse 1s ease infinite;
    animation: pulse 1s ease infinite;
    border-radius: 50%;
    border: 5px double #87BF2B;
}
 .eventsCalendar-daysList li.dayWithEvents a {
     background: #89B814;
     color: #fff;
     border-radius: 100%;
     width: 30px;
     margin: auto;
 }

 li.eventsCalendar-day.dayWithEvents a:hover {
     background-color: #C2D374;
     color: #fff;
 }
 .eventsCalendar-day a {
     text-decoration: none;
     font-size: 10px;
     color: #424242;
 }
 .eventsCalendar-day a {
     border-width: 0 1px 1px 0;
 }
 .eventsCalendar-day {
     border-left: solid 1px #BCBCBC;
 }
 .showAsWeek .eventsCalendar-day {
     border-left-width: 0;
 }

 .showAsWeek .eventsCalendar-day a {
     border : 1px solid #eee;
     line-height: 27px;
     font-size: 11px;
     border-radius: 100%;
     width: 30px;
     margin: auto;
 }
 li.eventsCalendar-day.current a:hover {
     background-color: #79BDCC;
 }
.eventsCalendar-daysList li a {
    padding: 0;
    display: block;
    text-align: center;
    min-width: 7px;
}
 .eventsCalendar-daysList li.current a {
     color: #fff;
     background: #449FB2;
 }
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    60% {
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }

}
*/