/*THIS IS NON CALENDAR VIEW  --------------------------------------------------------------------    */
#event-calendar-rest {
    margin-top: 40px;
    margin-bottom: 40px;
}


#event-calendar-rest #previous-events-wrap {
    display: flex;
    justify-content: right;
    margin-bottom: 24px;
}

#event-calendar-rest #more-events-wrap {
    display: flex;
    justify-content: center;
}


#event-calendar-rest .events-show-more-btn-permalink,
#event-calendar-rest #more-events-wrap {
    margin-top: 24px;
}


#event-calendar-rest .events-show-more-btn-permalink,
#event-calendar-rest .events-show-more-btn,
#event-calendar-rest .btn-previous-event {
    display: inline-flex;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #003cff;
    background-color: #f6f7f7;
    border: 2px solid #003cff;
    padding: 10px 16px;
    border-radius: 34px;
    transition: .2s all;
    box-shadow: none;
}

#event-calendar-rest .events-show-more-btn:hover,
#event-calendar-rest .btn-previous-event:hover {
    border-color: #0000F0;
}

#event-calendar-rest .events-show-more-btn-permalink {
    background-color: white !important;
    padding-right: 30px;
}
#event-calendar-rest .events-show-more-btn-permalink::after {
    right: 7px!important;
    top:55%!important;
} 

/* FILTERS */
#filter-events-wrap {
    margin-bottom: 32px;
}

#event-calendar-rest ul.cp-event-category {
    padding-left: 0px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: left;
    list-style: none;
}

#event-calendar-rest ul.cp-event-category li {
    margin-right: 6px;
}

#event-calendar-rest ul.cp-event-category li:after {
    display: none;
}

#event-calendar-rest ul .cp-event-category-item .c-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
    background: #f6f7f7;
    border: 1px solid #003cff;
    transition: .2s all;
    font-weight: 400;
    color: #0000f0;
}



#event-calendar-rest ul .cp-event-category-item .c-button:hover {
    background: #0000f0;
    color: #f6f7f7;
    font-weight: 400;
    text-decoration: none;
}

#event-calendar-rest ul .cp-event-category-item .c-button.is-active {
    color: #fff;
    background: #003cff;
}



/* OTHER */
.capitalize-first-letter::first-letter {
    text-transform: uppercase;
}

#event-calendar-rest h3 {
    margin-bottom: 24px;
    margin-top: 24px;
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0px;
}




/*SPINNER*/
#event-calendar-rest .plugin-l-circle-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -75px;
}

#event-calendar-rest .plugin-l-circle {
    position: absolute;
    border: 3px solid transparent;
    border-top-color: #0000f0;
    border-radius: 50%;
    animation: plugin-rotate linear infinite;
}

#event-calendar-rest .plugin-l-circle.one {
    height: 50px;
    width: 50px;
    left: 50px;
    top: 50px;
    animation-duration: 0.85s;
}

#event-calendar-rest .lplugin--circle.two {
    height: 75px;
    width: 75px;
    top: 38px;
    left: 38px;
    animation-duration: 0.95s;
}

#event-calendar-rest .plugin-l-circle.three {
    height: 100px;
    width: 100px;
    top: 25px;
    left: 25px;
    animation-duration: 1.05s;
}

@keyframes plugin-rotate {
    from {
        transform: rotateZ(360deg);
    }

    to {
        transform: rotateZ(0deg);
    }
}

#event-calendar-rest .plugin-page-loader {
    top: 0;
    position: relative;
    height: 400px;
    width: 100%;
    background-color: transparent;
    /*E6E6FE */
}




/*ACCORDIONS AND STUFF  */
.TEMPORARY_BORDER,
#event-calendar-rest .vc-container.vc-is-expanded {
    border: 1px solid transparent;
    border-radius: 16px;
}

/*#f0f1f2*/


#event-calendar-rest #cp-cal-view {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media screen and (min-width: 1024px) {
    #event-calendar-rest #cp-cal-view {
        flex-direction: row;
    } 
}

#cp-cal-view .cp-left-col {
    width: 33.3%;
}

#cp-cal-view .cp-right-col {
    width: 66.6%;
}

#event-calendar-rest .cp-no-posts-message {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    color: #323334;
}

@media screen and (max-width: 1000px) {
    #cplugin-cal-view {
        flex-direction: column;
    }

    #cp-cal-view .cp-left-col,
    #cp-cal-view .cp-right-col {
        width: 100%;
    }
}

.cp-article {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: relative;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
}

.cp-article-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cp-article-inner-header-data .cp-event-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px !important;
}

@media (min-width: 1000px) {
    .cp-article-inner-header-data .cp-event-title {
        font-size: 24px;
        line-height: 32px;
    }
}


.cp-article-inner-header-dates {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 72px;
    min-width: 72px;

    height: 112px;
    min-height: 112px;

    font-size: 16px;
    text-align: center;
    line-height: 15px;
    background: #f0f1f2;
    border-radius: 2px;
    transition: .2s all;
}

.cp-article-inner-header-dates>div:nth-child(1) {
    font-size: 16px;
}

@media (min-width: 1000px) {
    .cp-article-inner-header-dates {
        height: 72px;
        min-height: 72px;
    }
}

.cp-text-date {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #323334;
    padding-left: 4px;
    padding-right: 4px;
}

.cp-article-inner-header-data {
    min-height: 72px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 8px;
    padding-right: 8px;
}

.cp-event-icons-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.cp-event-icons-row>div {
    display: flex;
    flex-direction: row;
}

.cp-event-icons-row svg {
    max-height: 25px;
}

.cp-article-inner-header-arrow button {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .4s transform;
}

.cp-article.is-opened .cp-article-inner-header-arrow button {
    transform: rotate(180deg);
}



.cp-event-content {
    padding: 30px 0 40px;
}


@media (min-width: 1000px) {
    .cp-event-content {
        padding: 34px 16px 40px;
    }
}

.cp-event-content-description {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1000px) {
    .cp-event-content-description {
        font-size: 18px;
        line-height: 28px;
    }
}





#cp-cal-view .c-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #003cff;
    font-family: "Aino Web", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 11px 24px 9px;
    background: #f0f1f2;
    border: 2px solid #f0f1f2;
    border-radius: 999px;
    cursor: pointer;
}


@media (min-width: 1000px) {
    #cp-cal-view .c-button {
        font-size: 16px;
        padding: 12px 24px 11px;
    }
}

/* #cp-cal-view prefix */
#cp-cal-view .c-button.m-primary {
    color: #ffffff;
    background: #003cff;
    border-color: #003cff;
}

#cp-cal-view .c-button.m-primary:hover {
    background: #0000f0;
    border-color: #0000f0;
}