.agenda-box {
    background-color: #fff;
    background-color: var(--white-color);
    box-shadow: 0 5px 100px 0 rgba(0, 0, 0, 0.2);
}

.agenda-box .agenda-box__header {
    height: 96px;
    color: #fff;
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    background-color: #152841;
    background-color: var(--third-event-color);
    border-bottom: 4px solid #e7205f;
    border-bottom-color: var(--secondary-event-color);
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.agenda-box .agenda-box__content {
    padding: 22px 30px 88px;
}

.agenda-box .agenda-box__content .agenda-box__day-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
}

.agenda-box .agenda-box__content .agenda-box__day-item:last-of-type {
    border-bottom: none;
}

.agenda-box .agenda-box__content .agenda-box__day-date {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
}

.agenda-box .agenda-box__content .agenda-box__day-date__day {
    font-size: 36px;
    line-height: 42px;
    font-weight: bold;
}

.agenda-box .agenda-box__content .agenda-box__day-date__month {
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
    text-transform: uppercase;
}

.agenda-box .agenda-box__content .agenda-box__day-events {
    width: 100%;
}

.agenda-box .agenda-box__content .agenda-box__event-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #dadada;
}

.agenda-box .agenda-box__content .agenda-box__event-item:last-child {
    border-bottom: none;
}

.agenda-box .agenda-box__content .agenda-box__event-hours {
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    min-width: 135px;
    margin-right: 25px;
}

.agenda-box .agenda-box__content .agenda-box__event-text {
    font-size: 16px;
    line-height: 28px;
}

.agenda-box .agenda-box__btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 13px;
}

.agenda-box .agenda-box__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 180px;
    height: 40px;
    background-color: #e7205f;
    border: 1px solid #e7205f;
    background-color: var(--secondary-event-color);
    border-color: var(--secondary-event-color);
    color: #fff !important;
    font-size: 16px;
    text-transform: uppercase;
    font-family: Roboto,sans-serif;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.agenda-box .agenda-box__btn:hover {
    color: #fff !important;
    background-color: #5fc4e1;
    border: 1px solid #5fc4e1;
    background-color: var(--main-event-color);
    border-color: var(--main-event-color);
}

@media only screen and (max-width: 768px) {
    .agenda-box .agenda-box__header {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 24px;
        padding-top: 18px;
        padding-bottom: 18px;
        height: 64px;
    }

    .agenda-box .agenda-box__header img{
        display: none;
    }

    .agenda-box .agenda-box__content {
        padding: 4px 16px 32px;
    }
    
    .agenda-box .agenda-box__content .agenda-box__day-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 20px 0;
    }

    .agenda-box .agenda-box__content .agenda-box__day-date {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .agenda-box .agenda-box__content .agenda-box__day-date__day {
        font-size: 18px;
        line-height: 20px;
        margin-right: 5px;
    }
    
    .agenda-box .agenda-box__content .agenda-box__day-date__month {
        font-weight: 700;
    }

    .agenda-box .agenda-box__content .agenda-box__event-item {
        border-bottom: none;
    }
    
    .agenda-box .agenda-box__content .agenda-box__event-hours {
        font-size: 12px;
        margin-right: 0;
    }
    
    .agenda-box .agenda-box__content .agenda-box__event-text {
        font-size: 12px;
        line-height: 14px;
    }
    
    .agenda-box .agenda-box__btn-container {
        margin-top: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .agenda-box .agenda-box__content .agenda-box__event-item {
        margin-bottom: 5px;
    }
    .agenda-box .agenda-box__content .agenda-box__event-hours {
        min-width: 100px;
    }
}