/*!
 * Evo Calendar - Simple and Modern-looking Event Calendar Plugin
 *
 * Licensed under the MIT License
 * 
 * Version: 1.1.2
 * Author: Edlyn Villegas
 * Docs: https://edlynvillegas.github.com/evo-calendar
 * Repo: https://github.com/edlynvillegas/evo-calendar
 * Issues: https://github.com/edlynvillegas/evo-calendar/issues
 * 
*/

/* Evo Calendar - Theme: Orange Coral */
.shift {
    border: none;
    box-shadow: none;
    height: 100%;
}
.shift .calendar-sidebar {
    background: var(--thirdColor);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.shift.sidebar-hide .calendar-sidebar {
    -webkit-box-shadow: none;
            box-shadow: none;
}
.shift .calendar-sidebar > .month-list::-webkit-scrollbar-thumb:hover {
    background:var(--thirdColor);
}
.shift .calendar-sidebar > .month-list > .calendar-months > li:hover {
    background-color: rgba(255, 255, 255, 0.20);
}
.shift .calendar-sidebar > .month-list > .calendar-months > li.active-month {
    background-color: rgba(255, 255, 255, 0.40);
}
.shift .calendar-sidebar > span#sidebarToggler,
.shift #eventListToggler {
    padding: 11px 11px;
    background-color: var(--thirdColor);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shift button.icon-button > span.bars {
    height: 3px;
}
.shift button.icon-button > span.bars::before, 
.shift button.icon-button > span.bars::after {
    height: 3px;
}
.shift button.icon-button > span.bars::after {
    bottom: -7px;
}
.shift button.icon-button > span.bars::before {
    top: -7px;
}
.shift .calendar-sidebar > .calendar-year {
    display: flex;
    padding: 15px 35px;
    align-items: center;
}
.shift .calendar-sidebar > .calendar-year > button.icon-button {
    display: inline-block;
    width: 17px;
    height: 17px;
}
.shift .calendar-sidebar > .calendar-year > button.icon-button > span {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.shift button.icon-button > span.chevron-arrow-right {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    width: 17px;
    height: 17px;
}



.shift th[colspan="7"], .shift .calendar-events > .event-header > p  {
    position: relative;
    font-size: var(--h2TextSize);
    color: var(--primaryColor);
    text-transform: none;
    font-weight: 400;
}
.shift th[colspan="7"]::after {
    content: '';
    display: block;
    width: 92%;
    height: 1px;
    margin: 0 auto;
    background: var(--thirdColor);
}
.shift tr.calendar-body .calendar-day .day:hover {
    background-color: rgba(0, 102, 128, 0.32);
    color: var(--textOnPrimaryColor);
}
.shift tr.calendar-body .calendar-day .day.calendar-today {
    background: var(--thirdColor);
}
.shift tr.calendar-body .calendar-day .day.calendar-active,
.shift tr.calendar-body .calendar-day .day.calendar-active:hover {
    border-color: var(--primaryColor);
}
.shift tr.calendar-body .calendar-day .day.calendar-today:hover {
    color: #fff;
}
.shift .calendar-inner {
    box-shadow: none;
    height: 100%;
}
.shift .calendar-events {
    background-color: #F9F9F9;
}
.shift .calendar-events::-webkit-scrollbar-thumb {
    background: var(--thirdColor);
    border-radius: 5px;
}
.shift .calendar-events::-webkit-scrollbar-thumb:hover {
    background: var(--thirdColor);
}
.shift .event-container > .event-icon > div.event-bullet-event,
.shift .event-indicator > .type-bullet > div.type-event {
    background-color: var(--thirdColor);
}
.shift .event-list > .event-empty {
    background-color: rgba(255, 150, 101, 0.15);
    border: none;
}
.shift .event-list > .event-empty > p {
    color:var(--thirdColor);
}
.shift .event-container > .event-info > p.event-title {
    font-size: var(--bodyTextBigSize);
    font-weight: 400;
}
.shift .event-container > .event-info > p.event-desc {
    font-size: var(--bodyTextSize);
}

.shift .event-container > .event-info > p.event-title > span {
    color: var(--thirdColor);
    background-color: rgba(255, 150, 101, 0.15);
    border: 1px solid var(--thirdColor);
}
@media only screen and (max-width: 768px) {
    .shift .calendar-inner::after {
        background-color: rgba(160, 131, 119, 0.5);
    }
    .shift .calendar-events {
        -webkit-box-shadow: none;
                box-shadow: none;
    }
    .shift.event-hide .calendar-events {
        -webkit-box-shadow: none;
                box-shadow: none;
    }
}
@media screen and (max-width: 425px) {
    .shift .calendar-sidebar > .calendar-year {
        background: var(--thirdColor);
    }
    .shift .calendar-sidebar > .month-list {
        background: var(--thirdColor);
    }
}