/* SLIDER */

/* Timeline structure */
.scpo_event_slider_container {
    overflow: hidden;
    margin-left: 60px;
}

.scpo_event_slider {
    display:flex;
    flex-direction:row;
    align-items:center;
    padding-bottom:20px;
    width:100%;
    flex-wrap: nowrap;
    align-items: flex-start;
    transition: 0.5s;
}

.scpo_event_slider > .scpo_event_item { 
    flex: 1 0 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scpo_event_timeline {
    margin-top: 10px;
}

.scpo_event_timeline > img {
    max-width: 15px;
}

.scpo_event_item:after {
    content: "";
    position: absolute;
    top: 92px;
    left: 0px;
    right: 0px;
    height: 1px;
    background: #004A65;
    z-index: 1;
    transform: translateY(-50%);
}

.scpo_event_slider .scpo_event_item {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    cursor: default;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all .6s ease-in-out;
}

/* Arrows */
.scpo_event_slider_arrow_prev, .scpo_event_slider_arrow_next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: calc(-30px / 2);
    font-size: 30px;
    color: var(--e-global-color-primary);
    background: #02010100;
    align-self: center;
    cursor: pointer;
}

.scpo_event_slider_arrow_prev svg, .scpo_event_slider_arrow_next svg {
    width: auto;
    height: 30px;
}

.scpo_event_slider_arrow_prev {
    right: auto;
    left: 30px;
}

.scpo_event_slider_arrow_next {
    right: -30px;
    left: auto;
    transform: scaleX(-1);
}

/* Date */
.scpo_event_date {
    border-radius: 50%;
    border: 1px solid #004A65;
    color: #009EE3;
    width: 75px;
    padding-top: 16px;
    padding-bottom: 12px;
    text-align: center;
}

.scpo_event_date > .scpo_event_day {
    font-size: 24px;
    font-weight: 700;
    line-height: 0px;
}

.scpo_event_date > .scpo_event_month {
    font-size: 12px;
    text-transform: uppercase;
}

/* Category */
.scpo_event_category {
    margin-top: 20px;
    padding: 8px 10px 8px 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16);
    max-width: 167px;
    text-align: center;
}

.scpo_event_category > span {
    color:#009EE3;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
}

/* Title */
.scpo_event_title {
    margin-left: 30px;
    margin-top: 10px;
    margin-right: 30px;
    color: #004A65 !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 25.5px;
    text-align: center;
}

.scpo_event_guest {
    margin-left: 30px;
    margin-top: 10px;
    margin-right: 30px;
    color: #004A65 !important;
    font-size: 15px;
    font-weight: 300;
    line-height: 22.5px;
    text-align: center;
}


@media (max-width: 992px) {
    .scpo_event_slider > .scpo_event_item { 
        flex: 1 0 33.3%;
    }

    .scpo_event_slider_arrow_prev {
        left: 30px;
        z-index: 10;
    }

    .scpo_event_slider_arrow_next {
        right: -10px;
        z-index: 10;
    }
}

@media (max-width: 576px) {
    .scpo_event_slider > .scpo_event_item { 
        flex: 1 0 100%;
    }

    .scpo_event_slider_container {
        margin-left: 0px;
    }

    .scpo_event_slider_arrow_prev {
        left: 0px;
    }

    .scpo_event_slider_arrow_next {
        right: 0px;
    }
}