.dp__cell_highlight {
    --dp-highlight-color: transparent;
    color: #FF3B30;
}

.dp__menu {
    --dp-font-size: 18px;
    --dp-menu-min-width: 342px;
    --dp-cell-size: 48px;
    --dp-primary-color: #AC8B70;
    --dp-cell-border-radius: 100%;
    --dp-row-maring: 0;
    --dp-menu-padding: 0;
    border: none;
    outline: none;
}

.dp__menu:focus {
    border: none;
}

.dp__calendar_header {
    display: none;
}

.dp__month_year_row {
    padding-bottom: 6px;
}

.dp__calendar_header_separator {
    margin-bottom: 6px;
}

.dp__month_year_select {
    font-size: 20px;
    font-weight: 500;
}

.dp__menu_inner {
    padding-bottom: 22px;
    margin-bottom: 48px;
    border-bottom: 1px solid #ddd;
}

#app-event-calendar {
    width: 100%;
}

.event-calendar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.event-filter {
    width: 386px;
    background-color: #ffffff;
    padding: 22px;
    border-radius: 18px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0;
            flex: 0 0;
}

.event-filter__types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.event-filter__item {
    cursor: pointer;
    color: #8C8C8C;
    border: 1px solid #e3e3e3;
    border-radius: 110px;
    margin-right: 9px;
    margin-bottom: 13px;
    min-width: 102px;
    height: 40px;
    padding: 3px 30px;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/*.event-filter__item:hover,*/
.event-filter__item_active {
    background-color: #AC8B70;
    border-color: #AC8B70;
    color: #fff;
}

.event-items {
    width: 800px;
    background-color: #ffffff;
    padding: 66px 103px 66px 66px;
    border-radius: 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.event-items__title {
    text-transform: uppercase;
    text-align: center;
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 64px;
    line-height: 1;
}

.event-items__list {

}

.event-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 9px;
}

.event-item__left {
    width: 82px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.event-item__time {
    width: 100%;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
    color: #656565;
    text-align: center;
    background-color: #f6f6f6;
    border-radius: 6px;
    margin-bottom: 9px;
}

.event-item__timeline {
    width: 1px;
    height: 100%;
    background-color: #D9D9D9;
}

.event-item__right {
    margin-bottom: 50px;
}

.event-item__image {
    width: 100%;
    margin-bottom: 20px;
}

.event-item__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.event-item__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.event-item__type {
    font-size: 16px;
    color: #8C8C8C;
    margin-bottom: 10px;
}

.event-item__text {
    font-size: 18px;
    line-height: 1.63;
}

.event-item:last-of-type .event-item__timeline {
    display: none;
}

.event-item:last-of-type .event-item__right {
    margin-bottom: 0;
}

@media only screen and (max-width: 1240px) {
    .event-calendar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .event-filter {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 25px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .event-filter__calendar {
        margin-right: 40px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }

    .event-filter__types {
        width: 100%;
    }

    .dp__menu_inner {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .event-items {
        width: 100%;
        padding: 35px 75px 35px 35px;
    }
}

@media only screen and (max-width: 480px) {
    .dp__menu {
        --dp-font-size: 18px;
        --dp-menu-min-width: 100%;
    }

    .event-filter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 10px;
    }

    .dp__menu_inner {
        padding-bottom: 7px;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .event-filter__calendar {
        margin-right: 0;
        width: 100%;
    }

    .event-items {
        padding: 30px;
    }

    .event-items__title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .event-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .event-item__left {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .event-item__timeline {
        height: 1px;
        width: 100%;
    }

    .event-item:last-of-type .event-item__timeline {
        display: block;
    }

    .event-item__time {
        width: 82px;
        margin-bottom: 0;
        margin-right: 9px;
    }

    .event-item__image {
        margin-bottom: 15px;
    }
}