/* 
    Table of content
    0. GENERAL
    1. FAQ
        1.1 Sidebar wrapper
        1.2 FAQ wrapper
    2. RESULTS
        2.1 Content wrapper
        2.2 Sidebar wrapper
    3. ARTICLES
    4. PERSONS
    5. COURSE (SINGLE)
        5.1 General
            5.1.1 Content wrapper
            5.1.2 Sidebar wrapper
            5.1.3 Sticky
        5.2 Nav
        5.3 Course items
            5.3.1 Accreditation
            5.3.2 Start date
            5.3.3 Team
            5.3.4 Advice
            5.3.5 FAQ
            5.3.6 User input
    6. COURSES
        6.1 Sidebar wrapper
        6.2 Courses wrapper
    7. COACHVIEW
    RESIZE
    PRINT
*/

/* 0. GENERAL */
.pagination {
    margin-top: 5rem;
}

.pagination .page-numbers {
    padding-left: .5rem;
    color: #777;
    text-decoration: none;
}

.pagination .current {
    color: var(--color-black);
    text-decoration: underline;
}

/* 1. FAQ */
.faq-section {
    background-color: var(--color-lightgrey);
}

.faq-section.mobile {
    display: none;
}

.faq-section .container {
    display: flex;
    gap: 7rem;
}

/* 1.1 Sidebar wrapper */
.faq-section .sidebar-wrapper {
    flex: 0 0 35rem;
    align-self: flex-start; /* Sticky fix for flexbox */
    position: sticky;
    top: 15.2rem;    
}

.faq-section .sidebar-wrapper .item {
    display: block;
    padding: 3rem;
    border-radius: 1rem;
    text-decoration: none;
}

.faq-section .sidebar-wrapper .item:not(:first-child) {
    margin-top: 2rem;
}

.faq-section .sidebar-wrapper .item[href]:hover .link-wrapper .arrow {
    background-color: var(--color-darkyellow);
}

.faq-section .sidebar-wrapper h3 {
    margin-bottom: 1rem;
}

.faq-section .sidebar-wrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}

.faq-section .sidebar-wrapper li a {
    text-decoration: none;
}

.faq-section .sidebar-wrapper li a:hover {
    text-decoration: underline;
}

/* 1.2 FAQ wrapper */
.faq-section .faq-wrapper {
    flex: 1 1 auto;
}

.faq-section .subject-wrapper:not(:first-child) {
    padding-top: 6rem;
}

.faq-section .subject-wrapper > .title {
    padding: 1.7rem 3rem;
    border-radius: 1rem;
    background-color: var(--color-blue);
    font-family: 'Sarabun', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-section .subject-wrapper .item {
    padding: 1.8rem 2.8rem;
    border: .1rem solid white;
    border-radius: 1rem;
    background-color: white;
    background-image: url(../images/icon-plus2-black.svg);
    background-size: 4rem;
    background-position: calc(100% - 3rem) 1.2rem;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: .3s;
}

.faq-section .subject-wrapper .item:not(:first-child) {
    margin-top: 1rem;
}

.faq-section .subject-wrapper .item:hover {
    border-color: var(--color-yellow);
}

.faq-section .subject-wrapper .item.active {
    border-color: var(--color-yellow);
    background-image: url(../images/icon-minus2-black.svg);
}

.faq-section .subject-wrapper .item .title {
    width: calc(100% - 7rem);
    font-family: 'Sarabun', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-section .subject-wrapper .item .text {
    width: calc(100% - 7rem);
    margin-top: 1rem;
    cursor: default;
    display: none;
}

/* 2. RESULTS */
.results-section .container {
    display: flex;
    gap: 2rem;
}

/* 2.1 Content wrapper */
.results-section .content-wrapper {
    flex: 1 1 auto;
}

.results-section .list {
    margin-top: 3rem;
}

.results-section .content-wrapper .item {
    display: block;
    padding-bottom: 2rem;
    border-bottom: .1rem solid #ddd;
    text-decoration: none;
}

.results-section .content-wrapper .item:not(:first-child) {
    margin-top: 2rem;
}

.results-section .post-title {
    font-family: 'Sarabun', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.results-section .content-wrapper .item:hover .post-title {
    text-decoration: underline;
}

.results-section .cpt {
    text-transform: capitalize;
    color: #777;
}

/* 2.2 Sidebar wrapper */
.results-section .sidebar-wrapper {
    flex: 0 0 40rem;
}

.results-section .sidebar-wrapper .item {
    display: block;
    padding: 3rem;
    border-radius: 1rem;
    text-decoration: none;
}

.results-section .sidebar-wrapper .item:hover .link-wrapper .title {
    text-decoration: underline;
}

.results-section .sidebar-wrapper .item:hover .link-wrapper .arrow {
    background-color: var(--color-darkyellow);
}

/* 3. ARTICLES */
.articles-section .articles-wrapper {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    grid-gap: 2rem;
}

/* 4. PERSONS */
.lecturer-section .lecturer-wrapper {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax( 26rem, 1fr ) );
    grid-gap: 2rem;
}

/* 5. COURSE (SINGLE) */
.course .btn.disabled {
    background-color: var(--color-lightyellow);
    pointer-events: none;
}

/* 5.1 General */
.course.general {
    padding-bottom: 3rem;
    background-color: var(--color-lightgrey);
}

.course.general .container {
    position: relative;
    z-index: 1;
    margin-top: -21rem;
    display: flex;
    gap: 2rem;
}

/* 5.1.1 Content wrapper */
.course.general .content-wrapper {
    flex: 1 1 auto;
    padding: 4rem;
    border-radius: 1rem;
    background-color: white;
}

.course.general h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.2;
}

.course.general .text-wrapper {
    margin-top: 2rem;
}

.course.general ul.checklist li:not(:last-child) {
    margin-bottom: .5rem;
}

/* 5.1.2 Sidebar wrapper */
.course.general .sidebar-wrapper {
    flex: 0 0 35rem;
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--color-blue);
    font-size: 1.7rem;
}

.course.general .sidebar-wrapper .price {
    font-weight: 700;
}

.course.general .sidebar-wrapper .startdate-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 2rem;
}

.course.general .sidebar-wrapper .btn {
    position: relative;
    display: block;
    margin-top: 1.5rem;
}

.course.general .sidebar-wrapper .links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course.general .sidebar-wrapper .links a {
    min-height: 4.2rem;
    padding: .9rem 3rem;
    border-radius: 5rem;
    border: .1rem solid rgba(0,0,0,.125);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.3;
    text-decoration: none;
}

.course.general .sidebar-wrapper .links a:hover {
    border-color: var(--color-black);
}

.course.general .sidebar-wrapper .links .icon {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
}

.course.general .sidebar-wrapper .links .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 5.1.3 Sticky */
.course.general-sticky {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    min-height: 9.6rem;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}

.course.general-sticky.scrolled {
    visibility: visible;
    opacity: 1;
}

.course.general-sticky .container {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4fr 1fr;
    align-items: center;
}

.course.general-sticky h2 {
    margin-bottom: .5rem;
    font-size: 2.6rem;
    line-height: 1.3;
}

.course.general-sticky .btn-wrapper {
    justify-self: flex-end;
}

/* 5.2 Nav */
.course.nav {
    position: sticky;
    z-index: 10;
    background-color: var(--color-lightgrey);
    transition: background-color .3s;
}

.course.nav.scrolled {
    background-color: var(--color-blue);
}

.course.nav .container {
    padding: 1.05rem 0;
}

.course.nav .header { /* Only mobile */
    position: relative;
    height: 5rem;
    background-color: white;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 5rem;
    text-align: center;
    cursor: pointer;
}

.course.nav .header::before, /* Only mobile */
.course.nav .header::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.course.nav .header::before { /* Only mobile */
    top: 1.3rem;
    left: 2rem;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url(../images/icon-notice-black.svg);    
}

.course.nav .header::after { /* Only mobile */
    top: 2.475rem;
    right: 2rem;
    width: 1rem;
    height: .5rem;
    background-image: url(../images/icon-angle-down-black.svg);
}

.course.nav .header.active::after {
    transform: rotate(180deg);
}

.course.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 2rem;
}

.course.nav a {
    font-family: 'Sarabun', sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.course.nav a:not(.btn):hover {
    text-decoration: underline;
}

.course.nav .mobile {
    display: none;
}

.course.nav .glsr[data-shortcode="site_reviews_summary"] {
    display: inline-flex;
}

.course.nav .glsr-summary .glsr-star {
    position: relative;
    top: .2rem;
    background-size: 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
}

/* 5.3 Course items */
.course.items {
    padding-top: 3rem;
    background-color: var(--color-lightgrey);
}

.course.items .item:not(:nth-child(-n+2)) {
    margin-top: 8rem;
}

.course.items .item:not(.start-date):not(.team) {
    padding: 6rem;
    border-radius: 1rem;    
}

.course.items .item:not(.result):not(.start-date):not(.team) {
    background-color: white;
}

.course.items .item.result {
    background-color: var(--color-blue);
}

.course.items .hidden { 
    display: none;
}

.course.items h3 {
    margin-bottom: 1rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: 700;
}

.course.items .read-link {
    display: block;
    margin-top: 3rem;
    cursor: pointer;
}

/* 5.3.1 Accreditation */
.course.items .accreditation table {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
    border: 0;
    border-spacing: 0;
    font-size: 1.5rem;
}

.course.items .accreditation th,
.course.items .accreditation td {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.course.items .accreditation tr:nth-child(odd) td {
    background-color: #f7f7f7;
}

.course.items .accreditation th:first-child,
.course.items .accreditation td:first-child {
    padding-left: 3rem;
    border-radius: .8rem 0 0 .8rem;
}

.course.items .accreditation th:nth-child(2),
.course.items .accreditation td:nth-child(2) {
    padding-left: 3rem;
    padding-right: 3rem;
}

.course.items .accreditation th:last-child,
.course.items .accreditation td:last-child {
    padding-right: 3rem;
    border-radius: 0 .8rem .8rem 0;
}

/* 5.3.2 Start date */
.course.items .start-date .title-wrapper {
    margin-bottom: 3rem;
    padding: 0 6rem;
}

.course.items .start-date-item {
    padding: 3rem 6rem;
    border-radius: 1rem;
    background-color: white;  
    cursor: pointer;  
}

.course.items .start-date-item:not(:first-child) {
    margin-top: 1rem;
}

.course.items .start-date-item .info-wrapper {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 3fr;
    align-items: center;
}

.course.items .start-date-item .info-wrapper .date-label {
    font-size: 1.6rem;
}

.course.items .start-date-item .info-wrapper .text {
    font-family: 'Sarabun', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.course.items .start-date-item .info-wrapper > div:last-child {
    display: flex;    
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.course.items .start-date-item .info-wrapper .show-more {
    width: 4rem;
    height: 4rem;
    background-image: url(../images/icon-plus2-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.course.items .start-date-item.active .info-wrapper .show-more {
    background-image: url(../images/icon-minus2-black.svg);
}

.course.items .start-date-item .course-dates-wrapper {
    width: calc(100% + 6rem);
    margin: 2rem -3rem 0;
    font-size: 1.6rem;
    display: none;
}

.course.items .start-date-item .course-date-text {
    margin-top: 2rem;
    font-size: 1.5rem;
    display: none;
}

.course.items .start-date-item table {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
    border: 0;
    border-spacing: 0;
}

.course.items .start-date-item td {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.course.items .start-date-item tr:nth-child(odd) td {
    background-color: #f7f7f7;
}

.course.items .start-date-item td:first-child {
    padding-left: 3rem;
    border-radius: .8rem 0 0 .8rem;
}

.course.items .start-date-item td:last-child {
    padding-right: 3rem;
    border-radius: 0 .8rem .8rem 0;
}

/* 5.3.3 Team */
.course.items .team .title-wrapper {
    margin-bottom: 3rem;
    padding: 0 6rem;
}

.course.items .team .lecturer-wrapper {
    display: grid;    
    grid-template-columns: repeat( auto-fit, minmax( 26rem, 1fr ) );
    grid-gap: 2rem;
}

/* 5.3.3 Reviews */
.course.items .reviews .header {
    margin-bottom: 3rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 4.2rem;    
    font-weight: 700;
    line-height: 1.1;
}

.course.items .glsr-reviews {
    gap: 3rem !important;
}

.course.items .glsr-reviews > p {
    font-size: 1.7rem !important;
}

.course.items .glsr-minimal .glsr-review {
    gap: .75rem 0 !important;
}

.course.items .glsr-minimal .glsr-review-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.course.items .glsr-minimal .glsr-review-author,
.course.items .glsr-minimal .glsr-review-date {
    position: relative;
    gap: 0 !important;
    font-size: 1.6rem;
    font-style: normal !important;
    line-height: 1.4;
    color: #aaa;
}

.course.items .glsr-minimal .glsr-review-author::after {
    content: '|';
    padding: 0 1rem;
}

.course.items .glsr[data-shortcode="site_reviews_form"] {
    margin-top: 4rem;
}

/* 5.3.4 Advice */
.course.items .advice .header {
    margin-bottom: 3rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 4.2rem;    
    font-weight: 700;
    line-height: 1.1;
}

.course.items .advice {
    background-color: var(--color-blue) !important;
}

.course.items .advice .content-wrapper {
    display: flex;
    gap: 5rem;
}

.course.items .advice .text {
    flex: 1 1 auto;
}

.course.items .advice .sidebar-text {
    flex: 0 0 35rem;
}

/* 5.3.5 FAQ */
.course.items .faq-wrapper {
    margin-top: 3rem;
}

.course.items .faq {
    background-image: url(../images/icon-plus2-black.svg);    
    background-size: 4rem;
    background-position: right 0;
    background-repeat: no-repeat;
    transition: .3s;
    cursor: pointer;
}

.course.items .faq:not(:first-child) {
    margin-top: 1rem;
}

.course.items .faq.active {
    background-image: url(../images/icon-minus2-black.svg);
}

.course.items .faq .title {
    width: calc(100% - 7rem);
    min-height: 4rem;
    display: flex;
    align-items: center;
    font-family: 'Sarabun', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;    
}

.course.items .faq .text {
    width: calc(100% - 7rem);
    margin-top: 1rem;
    padding-bottom: 2rem;
    cursor: default;
    display: none;
}

/* 5.3.6 User input */
.course.items #user-input {
    border: .1rem solid var(--color-lightgrey);
    display: none;
}

.course.items .user-input-wrapper > div {
    display: flex;
    gap: 3rem;
}

.course.items .user-input-wrapper > div:not(:first-child) {
    margin-top: 2rem;
}

.course.items .user-input-wrapper .title {
    flex: 0 0 18rem;
}

.course.items .user-input-wrapper .input {
    flex: 1 1 auto;
    border-bottom: .1rem dotted var(--color-black);
}

/* 6. COURSES */
.courses-section {
    background-color: var(--color-lightgrey);
}

.courses-section.mobile {
    display: none;
}

.courses-section .container {
    display: flex;
    gap: 7rem;
}

/* 6.1 Sidebar wrapper */
.courses-section .sidebar-wrapper {
    flex: 0 0 35rem;
    align-self: flex-start; /* Sticky fix for flexbox */    
    position: sticky;
    top: 9.2rem;
}

.courses-section .container > .sidebar-wrapper {
    padding-top: 6rem;
}

.courses-section .sidebar-wrapper .item {
    display: block;
    padding: 2.5rem 3rem 3rem;
    border-radius: 1rem;
    text-decoration: none;
}

.courses-section .sidebar-wrapper .item:not(:first-child) {
    margin-top: 2rem;
}

.courses-section .sidebar-wrapper .item[href]:hover .link-wrapper .arrow {
    background-color: var(--color-darkyellow);
}

.courses-section .sidebar-wrapper h3 {
    margin-bottom: 1rem;
}

/* 6.2 Courses wrapper */
.courses-section .courses-wrapper {
    flex: 1 1 auto;
}

.courses-section .course-theme-parent.faq:not(:first-child),
.courses-section .course-theme {
    padding-top: 6rem;
}

.courses-section .course-theme h2 {
    margin: 0;
    padding: 1.7rem 3rem;
    border-radius: 1rem;
    background-color: var(--color-blue);
    font-size: 2rem;
    line-height: 1.3;
}

/* 7. COACHVIEW */
/* 7.1 Go back */
.coachview-registration-form__return-link {
    position: relative;
    height: 3.4rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    border: .1rem solid var(--color-black);
    border-radius: 5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--color-black);
    text-decoration: none;
    text-align: center;
}

.coachview-registration-form__return-link::before {
    content: '\f177';
    margin-right: .5rem;
    font-family: "Font Awesome 6 Pro";
}

.coachview-registration-form__return-link:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}
/* End */

.registration-course .container {
    margin-top: 1.5rem;
    padding-bottom: 5rem;
    display: flex;
    gap: 2rem;
}

/* 7.2 Content */
.registration-course .content-wrapper {
    flex: 1 1 auto;
    width: 100%;
    padding: 4rem;
    border-radius: 1rem;
    background-color: var(--color-blue);
}

.registration-course .coachview-form-header__title,
.registration-course .coachview-form-header__title-label,
.registration-course .coachview-registration-form__section-heading {
    font-family: 'Sarabun', sans-serif;
    font-weight: 700;
}

.registration-course .coachview-form-header__title {    
    font-size: 3.6rem;    
    line-height: 1.1;
}

.registration-course .coachview-form-header__title-label,
.registration-course .coachview-registration-form__section-heading {
    margin-top: .5rem;
    font-size: 2rem;
    line-height: 1.3;
}

.registration-course .coachview-registration-form__section-heading {
    margin: 0 0 1rem;
}

.registration-course form {
    margin-top: 2rem;
}

.registration-course .coachview-registration-form__section {
    padding: 3rem 0;
    border-top: .1rem solid white;
}

.registration-course .coachview-registration-form__section--consent {
    padding: 0;
}

.registration-course .coachview-registration-form__section--participant,
.registration-course .coachview-registration-form__section--consent,
.registration-course .coachview-registration-form__section--submit {
    border: 0;
}

.registration-course .coachview-registration-form__section-field--radio > .coachview-form-label {
    font-family: 'Sarabun', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* 7.3 Sidebar */
.registration-course .sidebar-wrapper {
    flex: 0 0 40rem;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
}

.registration-course .form-side {
    position: sticky;
    top: 3rem;
    align-self: flex-start; /* Sticky hack */
    padding: 3rem;
    border: .1rem solid var(--color-yellow);
    border-radius: 1rem;    
}

.registration-course .coachview-form-side__title,
.registration-course .coachview-form-side__title-label {
    font-weight: 700;
}

.registration-course .coachview-form-side__title {
    font-family: 'Sarabun', sans-serif;
    font-size: 2.6rem;
    line-height: 1.3;    
}

.registration-course .coachview-form-side__title-label {    
    margin: 1rem 0 0 0;
    line-height: 1.6;
}

.registration-course .coachview-form-side__content-section,
.registration-course .coachview-form-side__price-section {
    margin-top: 1.5rem;
    padding-top: .5rem;
    border-top: .1rem solid #ddd;
}

.registration-course .coachview-form-side__content-item,
.registration-course .coachview-form-side__price-item {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 2rem;
}

.registration-course .coachview-form-side__content-item:not(:nth-child(2)) .coachview-form-side__content-item-value,
.registration-course .coachview-form-side__price-item-value {
    font-weight: 700;
}

.registration-course .coachview-form-side__content-item:nth-child(2) {
    opacity: .4;
}

/* RESIZE */
@media (max-height: 1000px) {
    /* 6. COURSES */
    /* 6.1 Sidebar wrapper */
    .courses-section .sidebar-wrapper {
        align-self: inherit;
        position: relative;
        top: inherit;
    }
}

@media (max-width: 1280px) {
    /* 1. FAQ */
    /* 1.1 Sidebar wrapper */
    .faq-section .sidebar-wrapper {
        top: 6rem;
    }

    /* 6. COURSES */
    /* 6.1 Sidebar wrapper */
    .courses-section .sidebar-wrapper {
        top: 0;    
    }
}

@media (max-width: 1024px) {
    /* 1. FAQ */
    .faq-section .container {
        gap: 2rem;
    }

    /* 1.1 Sidebar wrapper */
    .faq-section .sidebar-wrapper {
        flex: 0 0 30rem;
    }

    /* 1.2 FAQ wrapper */
    .faq-section .subject-wrapper:not(:first-child) {
        margin-top: 3rem;
    }

    /* 2. RESULTS */
    /* 2.2 Sidebar wrapper */
    .results-section .sidebar-wrapper {
        flex: 0 0 30rem;
    }

    /* 3. ARTICLES */
    .articles-section .articles-wrapper {
        grid-template-columns: repeat( 2, 1fr );
    }

    /* 5. COURSE (SINGLE) */
    /* 5.1 General */
    /* 5.1.2 Sidebar wrapper */
    .course.general .sidebar-wrapper {
        flex: 0 0 30rem;
    }

    /* 5.2 Nav */
    .course.nav {
        border-bottom: .1rem solid #ddd;
        background-color: white;
    }

    .course.nav .container {
        padding: 0;
    }

    .course.nav ul {
        padding-bottom: 2rem;
        text-align: center;
        display: none;
    }

    .course.nav li {
        margin-bottom: 1rem;
    }

    .course.nav .mobile {
        display: block;
    }

    /* 5.3 Course items */
    /* 5.3.2 Start date */
    .course.items .start-date-item .info-wrapper > div:last-child {
        justify-content: flex-start;
    }

    .course.items .start-date-item .info-wrapper {
        grid-template-columns: repeat( 2, 1fr );
        grid-row-gap: 2rem;
    }

    /* 5.3.4 Advice */
    .course.items .advice .sidebar-text {
        flex: 0 0 30rem;
    }

    /* 6. COURSES */
    .courses-section .container {
        gap: 2rem;
    }

    /* 6.1 Sidebar wrapper */
    .courses-section .sidebar-wrapper {
        flex: 0 0 30rem; 
    }

    /* 7. COACHVIEW */
    /* 7.3 Sidebar */
    .registration-course .sidebar-wrapper {
        flex: 0 0 30rem;
    }
}

@media (max-width: 767px) {   
    /* 0. GENERAL */
    .pagination {
        margin-top: 3rem;
    }

    /* 1. FAQ */
    .faq-section:not(.mobile).pb-lg {
        padding-bottom: 0;
    }
    
    .faq-section.mobile {
        display: block;
    }

    .faq-section .container {
        flex-direction: column;
        gap: 1rem;
    }

    /* 1.1 Sidebar wrapper */
    .faq-section .sidebar-wrapper {
        flex: inherit;
        align-self: inherit;
        position: relative;
        top: inherit;
    }

    .faq-section .sidebar-wrapper .item {
        padding: 3rem 2rem;
    }

    .faq-section .sidebar-wrapper .item:not(:first-child) {
        margin-top: 1rem;
    }

    .faq-section:not(.mobile) .sidebar-wrapper .item:last-child {
        display: none;
    }

    /* 1.2 FAQ wrapper */
    .faq-section .faq-wrapper {
        flex: inherit;
    }

    .faq-section .subject-wrapper > .title {
        padding: 1.7rem 2rem;
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .faq-section .subject-wrapper .item {
        padding: 1.8rem 1.8rem;
        background-position: calc(100% - 2rem) 1.6rem;
        background-image: url(../images/icon-plus2-small-black.svg);
        background-size: 3rem;
    }

    .faq-section .subject-wrapper .item.active {
        background-image: url(../images/icon-minus2-small-black.svg);
    }

    .faq-section .subject-wrapper .item .title {
        width: calc(100% - 6rem);
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .faq-section .subject-wrapper .item .text {
        width: calc(100% - 6rem);
        font-size: 1.5rem;
        line-height: 1.5;
    }

    /* 2. RESULTS */
    .results-section .container {
        flex-direction: column;
        gap: 3rem;
    }

    /* 2.1 Content wrapper */
    .results-section .content-wrapper {
        flex: inherit;
    }

    .results-section .list {
        margin-top: 2rem;
    }

    .results-section .content-wrapper .item {
        padding-bottom: 1rem;
    }
    
    .results-section .content-wrapper .item:not(:first-child) {
        margin-top: 1rem;
    }

    .results-section .post-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .results-section .cpt {
        font-size: 1.6rem;
    }

    /* 2.2 Sidebar wrapper */
    .results-section .sidebar-wrapper {
        flex: inherit;
    }

    .results-section .sidebar-wrapper .item {
        padding: 3rem 2rem;
    }

    /* 3. ARTICLES */
    .articles-section .articles-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }

    /* 4. PERSONS */
    .lecturer-section .lecturer-wrapper {
        grid-template-columns: repeat( 2, 1fr );
        grid-gap: 1rem;
    }

    /* 5. COURSE (SINGLE) */
    body.single-cursus {
        font-size: 1.6rem;
    }

    .course .btn {
        font-size: 1.6rem;
    }

    /* 5.1 General */
    .course.general .container {
        margin-top: -15.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    /* 5.1.1 Content wrapper */
    .course.general .content-wrapper {
        padding: 2.8rem 1.8rem;
        border: .1rem solid var(--color-yellow);
    }

    .course.general h1 {
        font-size: 2.6rem;
        line-height: 1.3;
    }

    /* 5.1.2 Sidebar wrapper */
    .course.general .sidebar-wrapper {
        flex: 0 0 inherit;
        padding: 3rem 2rem;
    }

    .course.general .sidebar-wrapper .links a {
        position: relative;
        display: block;
        text-align: center;
    }
    
    .course.general .sidebar-wrapper .links .icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    /* 5.1.3 Sticky */
    .course.general-sticky h2 {
        font-size: 2.2rem;
    }

    /* 5.3 Course items */
    .course.items .item:not(:nth-child(-n+2)) {
        margin-top: 5rem;
    }

    .course.items .item:not(.start-date):not(.team) {
        padding: 3rem 2rem;
    }

    /* 5.3.1 Accreditation */    
    .course.items .accreditation th:first-child,
    .course.items .accreditation td:first-child {
        padding-left: 0;
        border-radius: 0;
    }

    .course.items .accreditation th:nth-child(2),
    .course.items .accreditation td:nth-child(2) {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .course.items .accreditation th:last-child,
    .course.items .accreditation td:last-child {
        padding-right: 0;
        border-radius: 0;
    }

    /* 5.3.2 Start date */
    .course.items .start-date .title-wrapper {
        margin-bottom: 2rem;
        padding: 0 2rem;
    }

    .course.items .start-date-item {
        padding: 3rem 2rem;
    }

    .course.items .start-date-item .info-wrapper .text {
        font-size: 1.8rem;
    }

    .course.items .start-date-item .info-wrapper > div:nth-child(n+3) {
        grid-column: span 2;
    }

    .course.items .start-date-item .info-wrapper .show-more {
        display: none;
    }

    .course.items .start-date-item td {
        display: inline-block;
        width: 50%;
    }

    .course.items .start-date-item td:first-child {
        padding-bottom: 0;
        padding-left: 2rem;
        border-radius: .8rem 0 0 0;
    }

    .course.items .start-date-item td:nth-child(2) {
        padding-right: 2rem;
        padding-bottom: 0;
        border-radius: 0 .8rem 0 0;
    }

    .course.items .start-date-item td:nth-child(3) {
        padding-top: 0;
        padding-left: 2rem;        
        border-radius: 0 0 0 .8rem;
    }

    .course.items .start-date-item td:last-child {
        padding-top: 0;
        padding-right: 2rem;
        border-radius: 0 0 .8rem 0;
    }

    /* 5.3.3 Team */
    .course.items .team .title-wrapper {
        margin-bottom: 2rem;
        padding: 0 2rem;
    }

    .course.items .team .lecturer-wrapper {
        grid-template-columns: repeat( 2, 1fr );
        grid-gap: 1rem;
    }

    /* 5.3.3 Reviews */
    .course.items .reviews .header {
        margin-bottom: 2rem;
        font-size: 3rem;
        line-height: 1.2;
    }

    .course.items .glsr-reviews {
        gap: 2rem !important;
    }

    .course.items .glsr-minimal .glsr-review-title {
        font-size: 1.7rem;
    }

    .course.items .glsr[data-shortcode="site_reviews_form"] {
        margin-top: 3rem;
    }

    /* 5.3.4 Advice */
    .course.items .advice .content-wrapper {
        display: block;
    }

    .course.items .advice .sidebar-text {
        margin-top: 3rem;
    }

    /* 5.3.5 FAQ */
    .course.items .faq-wrapper {
        margin-top: 2rem;
    }

    .course.items .faq:not(:first-child) {
        margin-top: 2rem;
    }

    .course.items .faq {
        background-image: url(../images/icon-plus2-small-black.svg);    
        background-size: 3rem;
    }

    .course.items .faq.active {
        background-image: url(../images/icon-minus2-small-black.svg);
    }

    .course.items .faq .title {
        width: calc(100% - 6rem);
        min-height: 3rem;
        font-size: 1.8rem;   
    }

    /* 6. COURSES */
    .courses-section:not(.mobile).pb-lg {
        padding-bottom: 0;
    }
    
    .courses-section.mobile {
        display: block;
    }

    .courses-section .container {
        flex-direction: column;
        gap: 1rem;
    }

    /* 6.1 Sidebar wrapper */
    .courses-section .sidebar-wrapper {
        flex: inherit;
        align-self: inherit;
        position: relative;
        top: inherit;
    }

    .courses-section .sidebar-wrapper .item {
        padding: 2.5rem 2rem 3rem;
    }

    .courses-section .sidebar-wrapper .sf {
        padding: 2.5rem 0 0 0;
    }

    .courses-section .sidebar-wrapper .sf h3 {
        margin-bottom: 0;
        padding: 1.7rem 2rem;
        background-image: url( ../images/icon-filter-black.svg );
        background-repeat: no-repeat;
        background-position: calc(100% - 2rem) center;
        cursor: pointer;
    }

    .courses-section .sidebar-wrapper .sf .searchandfilter {
        padding: 0 2rem 3rem;
        /* display: none; */
    }

    .courses-section .sidebar-wrapper .item:not(:first-child) {
        margin-top: 1rem;
    }

    .courses-section:not(.mobile) .sidebar-wrapper .item:last-child {
        display: none;
    }

    /* 6.2 Courses wrapper */
    .courses-section .courses-wrapper {
        flex: inherit;
    }

    .courses-section .course-theme:first-child {
        padding-top: 0;
    }

    .courses-section .course-theme h2 {
        padding: 1.7rem 2rem;
        font-size: 1.8rem;
        line-height: 1.4;
    }

    /* 7. COACHVIEW */
    .registration-course .container {
        padding-bottom: 10rem;
        flex-direction: column-reverse;
    }

    /* 7.2 Content */
    .registration-course .content-wrapper {
        flex: inherit;
        padding: 3rem 2rem;
    }

    .registration-course .coachview-registration-form__section {
        padding: 2rem 0;
    }

    /* 7.3 Sidebar */
    .registration-course .sidebar-wrapper {
        flex: inherit;
    }

    .registration-course .form-side {
        position: relative;
        top: inherit;
        padding: 2rem;
    }

    .registration-course .coachview-form-side__content-item,
    .registration-course .coachview-form-side__price-item {
        margin-top: .5rem;
    }
}

@media (max-width: 499px) {
    /* 5. COURSE (SINGLE) */
    /* 5.3 Course items */
    /* 5.3.2 Start date */
    .course.items .start-date-item .info-wrapper > div:last-child {
        flex-direction: column-reverse;
    }
}

@media print {
    /* 5. COURSE (SINGLE) */
    p + ul {
        margin-top: -30px;
    }

    ul.checklist {
        list-style-type: disc;
        margin: 0;
        padding: 0 0 0 20px;
    }

    ul.checklist li {
        padding-left: 0;
    }
    
    .label {
        padding: 0;
    }

    .course.general {
        margin-top: 30px;
    }

    .course.general .container {
        margin-top: 0;
    }

    .course.items .item {
        margin: 0;
        padding: 0;        
    }

    .course.items .item:not(#user-input) {
        break-before: page;
        page-break-before: always;
        -webkit-region-break-inside: avoid;
    }

    .course.items .start-date-item .info-wrapper {
        display: flex;
        gap: 30px;
    }

    ul.checklist li::before,
    header .hamburger,
    header .bottom,
    .hero.hero_34,
    .course.nav,
    .course.general-sticky,
    .course.general .sidebar-wrapper,    
    .course.items .read-link,
    .course.items .start-date-item .info-wrapper > div:last-child,
    .course.items #reviews,
    .course.items #veelgestelde-vragen,
    .slider-courses,
    .slider-articles,
    .slider-reviews,
    footer {
        display: none;
    }

    .course.general .content-wrapper .price,
    .course.items #user-input {
        display: block;
    }
}