/* Event styles */

.main.event {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.event__wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 2em;
    /*width: 600px;*/
    width: 100%;
}
.event__left {
    width: 100%;
}
.event__right {
    width: 100%;
}
.event__right p {
    margin: 0;
    margin-bottom: 10px;
}

.btn.back {
    width: 200px;
    margin: auto;
    margin-top: 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.breadcrumb__item {
    color: #818181;
    font-size: .9rem;
    font-style: normal;
    text-decoration: none;
    
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    display: inline-block;
    padding: 0 .4rem;
}

.breadcrumb__item:last-child {
    color: #000;
}

.event__header {
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

.event-date {
    align-items: center;
    background: black;
    color: #fff;
    display: flex;
    flex-flow: column;
    flex-shrink: 0;
    font-style: normal;
    height: 100px;
    justify-content: center;
    margin: .5rem 1em 0 0;
    text-decoration: none;
    width: 100px;
}

.event-date__day {
    font-size: 2.6rem;
    line-height: 2.6rem;
}

.event-date__month {
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.event-header__title {
    margin: 1rem 0 0 0;
}

.event__img__content {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}
.event__img {
    width: 100%;
}
.event__img.logo {
    max-width: 200px;
    margin: auto;
}

.event__video {
    width: 100%;
    height: 300px;
}

.event__title {
    font-size: 1.2em;
    line-height: 1.4em;
    margin: 0 0 .2em 0;
    text-transform: none;
}

.event__category {
    background-image: url(../../img/icon-tag-orange.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    color: #f59600;
    display: inline-flex;
    font-size: 1em;
    padding-left: 2em;
}

.event__time {
    background-image: url(../../img/icon-clock.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    color: black;
    display: inline-flex;
    font-size: 1em;
    margin-right: 1em;
    padding-left: 2em;
}

.event__description {
    text-align: justify;
}

.event__subtitle {
    color: #f59600;
    font-size: 1.2em;
    margin-bottom: 1em;
    text-transform: uppercase;
}

.event__cta {
    margin:2em auto 0 auto;
    max-width: 248px;
}

.event__section {
    margin-top: 2em;
    max-width: 600px;
}

.event__multimedia {
    margin: 40px 0;
}

.media-carrousel {
    height: 240px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.media-carrousel__list {
    display: flex;
    flex-flow: row;
    height: 100%;
    transition: transform .5s ease;
}

.media-carrousel__item {
    background: white;
    border: 1px solid #efefef;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    
}

.media-carrousel__item__link {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.media-carrousel__item__thumbnail {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.media-carrousel-nav {
    display: none;
}

.media-carrousel-nav__next-btn,
.media-carrousel-nav__prev-btn {
    cursor: pointer;
}

.events__calendar__th_hour,
.events__calendar__td_hour {
    text-align: center;
}

@media screen and (min-width: 380px) {

    .media-carrousel {
        max-height: 292px;
        max-width: 317px;
    }

}

@media screen and (min-width: 680px) {

    .event__title {
        font-size: 1.5em;
        line-height: 1.5em;
    }

    .event__cta {
        margin: 2em 0 0 0;
    }

}

@media screen and (min-width: 780px) {

    .media-carrousel__list {
        transition-duration: .3s;
    }

    .media-carrousel__item {
        margin-right: 2%;
        min-width: 15%;
    }

    .media-carrousel {
        height: 114px;
        max-height: 100%;
        max-width: 100%;
    }

    .media-carrousel-nav {
        display: flex;
        justify-content: flex-start;
        margin-top: 1em;
    }

    .media-carrousel-nav__btn_disabled {
        cursor: not-allowed;
        opacity: .4;
    }

    .media-carrousel-nav__btn-icon {
        height: 25px;
        margin-right: 1em;
        transition: transform .3s ease;
        width: 25px;
    }

    .media-carrousel-nav__btn-icon:hover {
        transform: scale(1.09);
        transition: transform .3s ease;
    }

    .media-carrousel-nav__btn_disabled .media-carrousel-nav__btn-icon:hover {
        transform: none;
    }

}

@media screen and (min-width: 980px) {

    .main.event {
        max-width: 800px;
    }

    .event-date {
        height: 120px;
        width: 120px;
    }

    .event-date__day {
        font-size: 3.6rem;
        line-height: 3.6rem;
    }

    .event-date__month {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }

    .event__title {
        max-width: 600px;
    }

    .event__video {
        height: 460px;
    }

}