.c3-appointments .swiper .swiper-slide {
    height: auto;
}

.c3-appointments .swiper .swiper-button {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFF;
}

.c3-appointments .swiper .swiper-button:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.c3-appointments .swiper .swiper-button-prev {
    left: 0;
}

.c3-appointments .swiper .swiper-button-next {
    right: 0;
}

.c3-appointment {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: var(--e-global-typography-text-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-text-line-height);
}

.c3-appointment {
    border-radius: 4px;
    background-color: var(--e-global-color-97683da);
}

.c3-appointment__header,
.c3-appointment__entry {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 20px;
}

.c3-appointment__header {
    padding-top: 60px;
    border-bottom: 1px solid var(--e-global-color-e81e418);
}

.c3-appointment__date .c3-appointment__day {
    font-family: var(--e-global-typography-683e8e5-font-family), sans-serif;
    font-weight: var(--e-global-typography-683e8e5-font-weight);
    font-size: var(--e-global-typography-683e8e5-font-size);
    color: var(--e-global-color-primary);
    line-height: var(--e-global-typography-683e8e5-line-height);
}

.c3-appointment__entry {
    flex: 1;
}

.c3-appointment__title {
    margin-bottom: 20px;
}

.c3-appointment__term,
.c3-appointment__location {
    color: var(--e-global-color-secondary);
}

.c3-appointment__date .c3-appointment__month,
.c3-appointment__term,
.c3-appointment__title {
    font-weight: var(--e-global-typography-accent-font-weight);
}

.c3-appointment__datetime {
    margin-top: auto;
}