/*==========================
    Component
===========================*/
.btn-download {
    background: #32373c !important;
    border-radius: 2em !important;
    border-color: #32373c !important;
    color: #fff !important;
    font-size: 12px !important;
    padding: .15em 1em !important;
    white-space: pre-wrap !important;
}
.btn-download:hover{
    opacity: .85;
}
/*==========================
    Venue
===========================*/
.venue-title{
    font-size: 36px;
    font-weight: 700;
    color: #3b1d82;
    position: relative;
    margin-bottom: 35px;
    line-height: 42px;
    text-align: left;
}
.venue-title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}
.venue-subtitle{
    font-size: 18px;
    font-weight: 800;
    color: #e7015e;
    margin-bottom: 1rem;
}
.venue-infobox p{
    margin-bottom: 5px;
    color: #555;
}
.venue-infobox p strong{
    color: #333;
    display: inline-block;
    width: 60px;
}
.sponsor-logo {
    margin-bottom: 55px;
}

/*==========================
    Important Dates
===========================*/
.schedule-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.schedule-listing .schedule-slot-time {
    background: #d20055;
    color: #fff;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 500;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}
.schedule-listing:nth-of-type(2n) .schedule-slot-time {
    background: #e7015e;
}
.schedule-listing .schedule-slot-info {
    position: relative;
    padding: 1rem 1rem 1rem 2rem;
    border: 1px dashed #cacaca;
    border-left: none;
    width: 100%;
}
.schedule-listing .schedule-slot-info p{
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .schedule-listing {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .schedule-listing .schedule-slot-time {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 35px;
    }
    .schedule-listing .schedule-slot-info {
        padding: 35px 40px 35px 35px;
        border-left: 1px dashed #e5e5e5;
    }
}