.event-head {
    display: flex;
    justify-content: space-between;
}

.event-head .event--name {
    font-size: 36px;
    margin-right: 2rem;
    width: 80%;
}

.event-head .breadcrumb{
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}
@media screen and (max-width: 500px) {
    .event-head .breadcrumb{
        display: none;
    }
    .event-head .event--name {
        font-size: 24px;
        width: 100%;
    }
}
.event-image-box {
    width: 100%;
}

.event-image-box img{
    width: 100%;
    object-fit: cover;
}

.event-detail {
    background: #F8F9FA;
}

.event-detail-box {
    flex-direction: row-reverse;
}

.event-detail-box--title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.event-detail-item {
    padding: 20px;
}

.event-detail-item > div {
    position: sticky;
    top: 20px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.event-detail-box--content {
    font-size: 16px;
    display: flex;
    column-gap: 12px;
}

.event-detail-box--content > i {
    min-width: 20px;
    text-align: center;
}

.event-footer {
    margin-top: 80px;
    background-color: #ffffff;
}

.event-footer-wrapper {
    padding: 24px 0;
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-footer--name > p {
    font-size: 16px;
    font-weight: 500;
}

.btn-remind {
    padding: 12px 24px;
    background-color: #1abc9c;
    color: #ffffff;
    border-radius: 8px;
}

.btn-remind:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn-unremind {
    padding: 12px 24px;
    background-color: #bc1a1a;
    color: #ffffff;
    border-radius: 8px;
}

.btn-unremind:hover {
    background-color: #000000;
    color: #ffffff;
}
