#kinross-event-calendar{
    color: #FFF;
}
.event-year>h2 {
    font-size: 34px;
    font-weight: bold;
}
.event-month>h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    padding-top: 10px;
    border-top: 2px solid #e7e7e7;
}

.event-month {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 10px;
    width: calc(33.32% - 30px);
    max-width: 100%;
}

.event-months-container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.event-month-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.event-card {
    display: flex;
    gap: 10px;
    justify-items: center;
    align-items: center;
    transition: transform 0.3s ease;
    min-width: 120px;
    border-radius: 13px;
    background: rgb(255 255 255 / 10%);
}

.event-date {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    width: 20%;
    line-height: 15px;
    color: #FFF;
}

.event-date .month,
.event-date .date-range {
    font-size: 14px;
    text-transform: uppercase;
}

.event-time {
    font-weight: bold;
    font-size: 13px;
}

.event-info {
    padding: 15px 0px 15px 0px;
    text-align: left;
    max-width: 340px;
    width: 80%;
}

.event-info .event-title {
    font-size: 22px;
    font-weight: lighter;
    text-transform: uppercase;
    margin-bottom: 0;
}

.event-info .event-metadata{
    font-size: 15px;
    color: #e7e7e7;
    font-weight: 400;
    line-height: 1.3rem;
    max-height: 110px;
    overflow-y: auto;
}
#event-calendar-filter{
    text-align: right;
    padding-top: 20px;
    margin-bottom: -42px;
    color: #FFF;
}
#event-calendar-filter.upcoming > button[data-filter="upcoming"]{
    display: none;
}
#event-calendar-filter.past > button[data-filter="past"]{
    display: none;
}

#event-calendar-filter button{
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 4px 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
#event-calendar-filter button:hover{
    background: rgba(255,255,255,0.3);
    color: #FFF;
}
.loading-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.loading-animation:before {
    content: "";
    width: 50px;
    height: 50px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Chrome, Edge and Safari */
#kinross-event-calendar *::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

#kinross-event-calendar *::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #DFE9EB;
}

#kinross-event-calendar *::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
}

#kinross-event-calendar *::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
}

#kinross-event-calendar *::-webkit-scrollbar-thumb {
    border-radius: 9px;
    background-color: #000C75;
}

#kinross-event-calendar *::-webkit-scrollbar-thumb:hover {
    background-color: #1B00A3;
}

#kinross-event-calendar *::-webkit-scrollbar-thumb:active {
    background-color: #0041A3;
}

@supports not selector(::-webkit-scrollbar) {
    .scrollbar {
        scrollbar-width: thin;
        scrollbar-color: #000C75 #DFE9EB;
    }

    .scrollbar:hover {
        scrollbar-color: #1B00A3 #B8C0C2;
    }
}

@media (max-width: 768px) {
    .event-month {
        width: calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .event-month {
        width: calc(100%);
    }
    .event-year {
        margin: 10px 0 30px 0;
    }
    .event-date{
        width: 25%;
    }
    .event-date,
    .event-date .day,
    .event-date .month{
        font-size: 13px;
    }
    .event-time{
        font-size: 12px;
    }
    #event-calendar-filter{
        margin-bottom: -51px;
    }
}

