.event-registration {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.event-registration h1,
.event-registration h2,
.event-registration h3,
.event-registration h4,
.event-registration h5,
ul.registration-list {
    margin: 0;
    padding: 0;
    font-style: normal;
}
.event-registration h2,
.event-registration h3,
.event-registration h4,
.event-registration h5 {
    line-height: 1.2;
}
.event-registration table h5 {
    font-size: var(--font-size__base);
    line-height: 1;
    margin: 0;
}
ul.registration-list {
    list-style: none;
    gap: 2rem;
}
ul.registration-list,
.registration__left,
.registration__right,
.registration__cta,
.registration__fees {
    display: flex;
    flex-direction: column;
}
ul.registration-list li {
    margin: 0;
    border-radius: 12px;
    background: #F5F5F5;
    padding: 2rem 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
ul.registration-list li:before,
ul.registration-list li:after {
    content: '';
    position: absolute;
    left: 0;
    background-color: var(--tab-color);
    width: 100%;
    height: 0.5rem;
}
ul.registration-list li:before {
    top: 0;
}
ul.registration-list li:after {
    bottom: 0;
}
.registration--information {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}
.registration__left,
.registration__right,
.registration__cta,
.registration__fees {
    gap: 1.5rem;
}
.registration__description *,
.registration__includes {
    font-size: 16px;
}
.registration__cta--helper * {
    font-size: 14px;
}
.registration__description p:last-of-type,
.registration__cta--helper p:last-of-type {
    margin: 0;
}
.registration__includes {
    font-weight: 600;
}
.registration__cta {
    flex: 1 0 auto;
}
.registration__fees table {
    display: none;
    border-spacing: 0px;
}
.registration__fees td {
    font-size: 16px;
}
.registration__fees td,
.registration__fees  thead th {
    text-align: center;
}
.registration__fees td,
.registration__fees th {
    line-height: 1;
    padding: 1rem 0;
}
.registration__fees tbody th,
.registration__fees thead th[scope="row"] {
    max-width: 100%;
    width: 150px;
}
.mobile-fees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.mobile-fees__item {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-fees__item.mobile-fees__titles {
    flex-direction: row;
}
.mobile-fees__prices {
    display: flex;
    gap: 0.5rem;
    text-align: center;
    font-size: calc(14px + (22 - 14) * (100vw - 380px) / (1100 - 380));
}
.mobile-fees__price {
    border-right: 1px solid var(--header-blue, #032B68);
}
.mobile-fees__price:last-of-type {
    border-right-color: transparent;
}
.mobile-fees__item.mobile-fees__titles h5 {
    font-size: calc(15px + (22 - 15) * (100vw - 380px) / (1100 - 380));
    text-align: center;
}
.mobile-fees__item h6 {
    font-size: calc(14px + (22 - 14) * (100vw - 380px) / (1100 - 380));
}
.mobile-fees__item.mobile-fees__titles h5,
.mobile-fees__price {
    flex: 0 0 calc(33.333% - 0.335rem);
}
.registration__cta--button a.button.button__primary {
    background-color: var(--tab-color);
}
@media screen and (max-width: 700px) {
    .mobile-fees {
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
    }
    .mobile-fees__item {
        width: 100%;
    }
    .registration__cta--button a.button.button__primary {
        padding: 0.5rem 0.75rem;
        font-size: 15px;
        letter-spacing: 0;
    }
}
@media screen and (min-width: 1100px) {
    .registration--information {
        flex-direction: row;
    }
    .registration__cta {
        margin: 0 auto;
    }
    .registration__left {
        flex: 0 0 calc(40% - 0.5rem);
        border-right: 1px solid var(--header-blue, #032B68);
        padding-right: 1rem;
    }
    .registration__fees {
        align-items: center;
    }
    .registration__fees td {
        border-right: 1px solid var(--header-blue, #032B68);
    }
    .registration__fees tbody tr td:last-of-type {
        border-color: transparent;
    }
    .registration__right {
        flex: 0 0 calc(60% - 0.5rem);
    }
    .registration__cta {
        max-width: 500px;
        width: 100%;
    }
    .registration__fees table {
        display: table;
    }
    .mobile-fees {
        display: none;
    }
    ul.registration-list li {
        padding: 3rem 1.5rem;
    }
}