@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=fallback');
@font-face {
    font-family: 'Eurostile Black';
    src: url('fonts/EurostileExt-Bla.otf') format('opentype');
}

@font-face {
    font-family: 'Avenir Black';
    src: url('fonts/Avenir\ Black.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Avenir Light';
    src: url('fonts/Avenir\ Light.ttf');
    font-weight: normal;
}


body {
    /* background-color: white !important; */
    background-color: white !important;
}

.ifhc-header {
    width: 100%;
    height: 128px;
    padding: 16px;
    background-color: rgb(17 24 39);
    display: flex;
}

.ifhc-header .img-container img {
    height: 100%;
}

.ifhc-header .step-container {
    display: flex;
    color: white;
    width: 100%;
    /* position: relative;  */
}

.ifhc-header .step-container .step-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    position: relative; 
}

.ifhc-header .step-container .step-box .step-circle {
    border: 2px solid rgba(208, 0, 123, 1);
    background-color: rgb(17 24 39);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2; /* Ensure the circle is above the line */
    position: relative;
    font-weight: bold;
}

.ifhc-header .step-container .step-box.current .step-circle,
.ifhc-header .step-container .step-box.done .step-circle {
    background-color: rgba(208, 0, 123, 1);
}

.ifhc-header .step-container .step-box::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% + 16px); 
    transform: translateX(0);
    z-index: 1; /* Ensure the line is below the circle */
}

.ifhc-header .step-container .step-box.current::after,
.ifhc-header .step-container .step-box.done::after {
    background-color: rgba(208, 0, 123, 1);
}

.ifhc-header .step-container .step-box:last-child::after {
    content: none; /* Remove the line for the last step */
}

#signupForm {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 0 30px;
}

.step {
    width: 100%;
}

.cart {
    border: 2px solid gray;
    margin-top: 50px;
}

.cart .divider {
    width: 100%;
    height: 2px;
    background-color: gray;
    position: relative;
}

.cart .divider.thin{
    height: 1px;
}

.cart .divider.hidden {
    display: block;
}

.cart .divider.thin{
    display: block;
}

.cart .divider:first-of-type:before {
    /* content: ""; */
    display: block;
    width: 60px;
    height: 60px;
    background-image: url('../img/ifhc-logo.png');
    background-size: 60px 60px;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 900;
}

.cart .membership-summary-title {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-size: 25px;
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: 0;
}

.cart .club-title {
    /* border-bottom: 2px solid gray; */
    font-family: "Avenir Black";
    font-weight: 600;
    font-size: 20px;
    color: rgba(208, 0, 123, 1);
    text-transform: uppercase;
}

.cart .cart-content {
    padding: 15px 10px;
    width: 100%;
}

.cart .cart-content h3.membership-title {
    font-family: "Avenir Black";
    font-weight: 600;
    font-size: 20px;
    color:rgba(208, 0, 123, 1);
    text-transform: uppercase;
}

.cart .cart-content h2.membership-name-and-price,
.cart .cart-content h2.signup-costs {
    font-family: "Avenir Light";
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.cart .cart-content #actionDescription {
    font-family: "Avenir Light";
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.cart .cart-content h2.payment-duration,
.cart .cart-content h2.total-first-costs {
    font-family: "Avenir Black";
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color:rgba(208, 0, 123, 1);
}

.cart .cart-content h2.total-first-costs #totalFirstCosts {
    font-size: 16px;
    color: black;
}

.cart .cart-content h2.total-first-costs {
    display: flex;
    justify-content: space-between;
}

.cart .cart-content h3.first-costs-title {
    font-family: "Avenir Black";
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.cart .cart-content .addonList,
.cart .cart-content .addonListNormalPrices {
    padding: 0;
}

.cart .cart-content .addonList li,
.cart .cart-content .addonListNormalPrices li {
    display: flex;
    justify-content: space-between;
    font-family: "Avenir Light";
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

h2.step-title {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 50px;
}

h2.step-title.smaller-margin {
    margin: 20px 0;
}

h2.step-title-small-pink {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 500;
    font-size: 20px;
    color:rgba(208, 0 , 123, 1)
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.locations-container .location-box {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.locations-container .location-box .img-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    position: absolute;
    bottom: 100px;
    width: 100%;
}

.locations-container .location-box .img-container img {
    /* width: 40px; */
    height: 40px;
}

.locations-container .location-box .location-name {
    text-transform: uppercase;
    font-family: 'Avenir Light';
    font-weight: 400;
    font-size: 20px;
    color: white;
    padding: 20px;
    text-align: center;
}

.locations-container .location-box .location-info {
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    min-height: 78px;
}

.locations-container .location-box .location-select {
    display: none;
}

.locations-container .location-box .location-info  p {
    margin-bottom: 0;
}

.locations-container .location-box:hover {
    transform: scale(1.07);
}

.locations-container .location-box.checked {
    transform: scale(1.07);
}

.locations-container .location-box .location-img {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.locations-container .location-box input[type="radio"] {
    display: none;
}

/* .locations-container .location-box.premium .location-info {
    background-color: rgba(250, 204, 21, 0.6);
} */

.locations-container .location-box.location-box.maastricht-ceramique .location-info {
    background-color: rgba(250, 204, 21, 0.6);
}

.locations-container .location-box .location-info {
    background-color: rgba(208, 0, 123, 0.6);
}

.locations-container .location-box.herten .location-info {
    background-color: rgba(0, 157, 211, 0.6);
}


.locations-container .location-box.maastricht-ceramique {
    background-image: url('../img/ceramique.jpg');
}

.locations-container .location-box.maastricht-mariaberg{
    background-image: url('../img/mariaberg.jpg');
}

.locations-container .location-box.herten{
    background-image: url('../img/herten.jpg');
}

.locations-container .location-box.roermond{
    background-image: url('../img/roermond.jpg');
}

.locations-container .location-box.weert{
    background-image: url('../img/weert.jpg');
}

.locations-container .location-box.panningen{
    background-image: url('../img/panningen.jpg');
}

.hidden {
    display: none !important;
}

.swiper-container {
    width: 100%;
    padding-top: 60px;
    height: 510px;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    /* overflow: hidden; */
}

.swiper-button-prev, .swiper-button-next {
    color: rgba(208, 0 , 123, 1) !important;
}

.swiper-slide {
    /* display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; */
    box-sizing: border-box;
    /* width: 100%; */
    width: calc(33% - 10px) !important;
}

@media (min-width: 768px) {
    .swiper-slide {
        width: 50%; /* Two slides per view for larger screens */
    }

    .cart .divider.hidden {
        display: none;
    }
    
    .cart .divider.thin{
        display: none;
    }

    .pro-rata-popup-inner {
        width: 80%;
    }
}


.swiper-pagination {
    width: 100%;
}

.memberships-container .membership-tile {
    position: relative;
    border: 3px solid rgba(208, 0, 123, 1);
    display: flex;
    justify-content: center;
    z-index: 1;
    background-color: #f8f8f8;
    padding: 15px;
    min-height: 450px;
}

.memberships-container .membership-tile.premium::after {
    content: "Meest gekozen";
    display: block;
    background-color: rgba(208, 0, 123, 1);
    height: 40px;
    width: 100%;
    /* width: 250px; */
    text-align: center;
    line-height: 35px;
    color: white;
    font-family: 'Avenir Black';
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: -55px;
    /* right: -2px; */
    padding: 0 7px;
    text-transform: uppercase;
}

.memberships-container .membership-tile .membership-card {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
}

.memberships-container .membership-tile.premium-fit-fital {
    border: 3px solid rgba(194,98,39, 1);
}

.memberships-container .membership-tile .membership-title-container {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
} 

.memberships-container .membership-tile .membership-title {
    color: rgba(208, 0 , 123, 1);
    text-shadow: 1px 1px 2px rgba(0,0,0, 0.25);
    font-family: 'Avenir Black';
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    /* position: absolute; */
    /* top: -15px; */
    display: block;
    /* background-color: white; */
    /* background: rgb(255,255,255); */
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(248,248,248,1) 100%);
}

.memberships-container .membership-tile.premium-fit-fital .membership-title {
    color: rgba(194,98,39, 1);
}

.memberships-container .membership-tile .price {
    font-size: 22px;
    font-family: 'Avenir Black';
    font-weight: 600;
}

.memberships-container .membership-tile .payment-description {
    margin-left: 5px;
    font-size: 18px;
    font-family: 'Avenir Black';
    font-weight: 600;
}

.memberships-container .membership-tile .usp-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.memberships-container .membership-tile .usp-list li {
    font-size: 14px;
    font-family: 'Avenir Black';
    font-weight: 500;
}

.memberships-container .membership-tile .usp-list li:before { 
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    font-weight: 700;
    color:rgba(208, 0 , 123, 1);
    margin-right: 5px;
}

.memberships-container .membership-tile.premium-fit-fital .usp-list li:before {
    color: rgba(194,98,39, 1);
}

.memberships-container .membership-tile .btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.memberships-container .membership-tile .more-info {
    font-family: 'Avenir Black';
    font-weight: 400;
    color:rgba(208, 0 , 123, 1);
    text-decoration: underline;
    font-size: 18px;
}

.memberships-container .membership-tile.premium-fit-fital .more-info {
    color: rgba(194,98,39, 1);
}

.memberships-container .membership-tile .fake-btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    font-size: 16px;
    background-color: rgba(208, 0, 123, 1);
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-family: "Avenir Light";
    box-sizing: border-box;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.memberships-container .membership-tile .fake-btn:hover {
    background: none;
    border: 3px solid rgba(208, 0, 123, 1);
    color: rgba(208, 0, 123, 1);
    font-weight: 600;
    cursor: pointer;
}

.memberships-container .membership-tile .fake-btn.selected {
    background: none;
    border: 3px solid rgba(208, 0, 123, 1);
    color: rgba(208, 0, 123, 1);
    font-weight: 600;
    cursor: pointer;
}

.memberships-container .membership-tile.premium-fit-fital .fake-btn.selected,
.memberships-container .membership-tile.premium-fit-fital .fake-btn:hover  {
    background: none;
    border: 3px solid rgba(194,98,39, 1);
    color: rgba(194,98,39, 1);
    font-weight: 600;
    cursor: pointer;
}

.memberships-container .membership-tile.premium-fit-fital .fake-btn {
    background-color: rgba(194,98,39, 1);
}

.memberships-container .membership-tile input[type="radio"] {
    display: none;
}

.memberships-container .membership-tile .membership-signup-costs {
    text-align: center;
    font-size: 14px;
    font-family: 'Avenir Black';
    font-weight: 500;
}

.durations-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 2px; */
}

.durations-container .duration-box {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.durations-container .duration-box:nth-of-type(2){
    border-top: none;
}

.durations-container .duration-box input[type="radio"] {
    display: none;
}

.durations-container .duration-box h2 {
    color: black;
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    margin-bottom: 0;
    font-size: 18px;

}

.durations-container .duration-box .duration-box-grid {
    display: flex;
    padding: 20px 25px 0px 25px;
}

.durations-container .duration-box .duration-box-grid .first-box .duration-radio {
    display: block;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid black;
    box-sizing: border-box;
    margin-right: 10px;
    position: relative;
}

.durations-container .duration-box .duration-box-grid .first-box .duration-radio .duration-radio-inner {
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.durations-container .duration-box.checked .duration-box-grid .first-box .duration-radio .duration-radio-inner {
    background-color: rgba(208, 0, 123, 1);
}

.durations-container .duration-box .duration-box-grid .second-box .price-box {
    display: flex;
    align-items: flex-end;
}

.durations-container .duration-box .duration-box-grid .second-box .price-box h2 {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 20px;
    margin-right: 5px;
    display: block;
    color: rgba(208, 0, 123, 1);
}

.durations-container .duration-box .duration-box-grid .second-box .price-box {
    font-family: 'Avenir light';
    font-weight: 400;
    font-size: 12px;
}

.durations-container .duration-box .duration-box-grid .third-box .info-circle {
    width: 10px;
    height: 10px;
    font-size: 8px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    cursor: pointer;
} 

.durations-container .duration-box .duration-box-grid .fourth-box.hidden {
    display: none;
}

.durations-container .duration-box .signup-costs {
    display: flex;
    justify-content: space-between;
    background-color: rgba(208, 0, 123, 1);
    width: 100%;
    margin-top: 15px;
    padding: 5px 25px;
    color: white;
    text-align: center;
    min-height: 34px;
}

.durations-container .duration-box .extra-info {
    font-family: "Avenir Light";
    font-weight: 600;
    font-size: 15px;
    margin-left: 10px;
}

label.form-label {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 12px;
    color:rgba(208, 0, 123, 1);
}

.custom-input.form-control {
    padding: .75em;
    box-sizing: border-box;
    border: 1px solid #69727d;
    border-radius: 2px;
}

.custom-input.form-control.invalid,
#signaturePad.invalid {
    border: 1px solid red;
}

select.custom-input.form-control {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 12px;
    color: #666;
    padding: .75em;
    height: 50px;
    box-sizing: border-box;
    line-height: 30px;
    width: 100%;
}

select.custom-input.form-control.invalid {
    border: 1px solid red;
}

.custom-input::placeholder {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 12px;
    color: #666;
}

.custom-input.form-control option {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 12px;
    color: #666;
}

.next-btn, .prev-btn {
    height: 50px;
    /* padding: 0.5rem 6rem; */
    width: 200px;
    font-size: 16px;
    background-color: rgba(208, 0, 123, 1);
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-family: "Avenir Light";
    box-sizing: border-box;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.payment-terms-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.payment-terms-container .payment-term-box {
    background-color: white;
    color: black; 
    border: 1px solid black;
    min-height: 70px;
}

.payment-terms-container .payment-term-box:nth-of-type(2) {
    border-top: none;
}

.payment-terms-container .payment-term-box input[type="radio"] {
    display: none;
}

.payment-terms-container .payment-term-box h2 {
    color: black;
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    margin-bottom: 0;
    font-size: 18px;

}

.payment-terms-container .payment-term-box .term-box-grid {
    display: flex;
    padding: 15px 25px 15px 25px;
}

.payment-terms-container .payment-term-box .term-box-grid .first-box .term-radio {
    display: block;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid black;
    box-sizing: border-box;
    margin-right: 10px;
    position: relative;
}

.payment-terms-container .payment-term-box .term-box-grid .first-box .term-radio .term-radio-inner {
    display: block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-terms-container .payment-term-box.checked .term-box-grid .first-box .term-radio .term-radio-inner {
    background-color: rgba(208, 0, 123, 1);
}

.payment-terms-container .payment-term-box .term-box-grid .second-box .price-box {
    display: flex;
    align-items: flex-end;
}

.payment-terms-container .payment-term-box .term-box-grid .second-box .price-box h2 {
    text-transform: uppercase;
    font-family: 'Avenir Black';
    font-weight: 400;
    font-size: 20px;
    margin-right: 5px;
    display: block;
    color: rgba(208, 0, 123, 1);
}

.payment-terms-container .payment-term-box .term-box-grid .second-box .price-box {
    font-family: 'Avenir light';
    font-weight: 400;
    font-size: 12px;
}

.payment-terms-container .payment-term-box .term-box-grid .second-box .payment-term-description {
    display: flex;
}

.payment-terms-container .payment-term-box .term-box-grid .second-box .payment-term-description .pro-rata-info {
    margin-left: 15px;
    min-width: 20px;
    height: 20px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-terms-container .payment-term-box .signup-costs {
    display: block;
    background-color: rgba(208, 0, 123, 1);
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px 25px;
    /* display: flex; */
}

.step.hidden {
    display: none;
}

.addons-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.addons-container .addon-box {
    background-color: white;
    color: black;
    border: 3px solid black;
    padding: 15px;
    position: relative;
}

.addons-container .addon-box .addon-title {
    color: black;
    font-family: 'Avenir Black';
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    background-color: white;
    position: absolute;
    top: -15px;
    display: block;
    background-color: white;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
}

.addons-container .addon-box .first-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.addons-container .addon-box img {
    margin-top: 17px;
    width: 50%;
    height: 250px;
    object-fit: cover;
    border: 1px solid black;
    border-radius: 9px;
}

.addons-container .addon-box .addon-price {
    color: rgba(208, 0, 123, 1);
    font-family: 'Avenir Black';
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}

.addons-container .addon-box .addon-price span {
    font-size: 17px;
    color: black;
    font-family: 'Avenir Light';
    font-weight: 600;
    text-transform: lowercase;
}

.addons-container .addon-box .select-box {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 10px;
    font-family: 'Avenir Black';
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.addons-container .addon-box .select-box .fake-addon-checkbox {
    width: 25px;
    height: 25px;
    background-color: white;
    margin-left: 10px;
    border: 1px solid black;
}

/* .addons-container .addon-box.checked .select-box .fake-addon-checkbox {
    background-color: rgba(208, 0, 123, 1);
} */

.addons-container .addon-box.checked .select-box .fake-addon-checkbox::before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    color: black;
    font-weight: 700;
}

.addons-container .addon-box input[type="checkbox"] {
    display: none;
}

.signature-pad-container {
    width: 300px;
}

canvas {
    border: 1px solid gray;
    border-radius: 2px;
}

canvas.saved {
    background-color: #90ee90;
}

#signaturePadBtns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

button#save, button#remove {
    height: 25px;
    padding: 0.5rem 0;
    line-height: 25px;
    font-size: 12px;
    background-color: rgba(208, 0, 123, 1);
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-family: "Avenir Light";
    box-sizing: content-box;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.custom-checkbox {
    display: none;
}

.custom-label {
    display: flex;
}

.custom-checkbox:checked + .custom-label::before {
    background-color: rgba(208, 0 , 123, 1);
    content: "\f00c";
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(208, 0 , 123, 1);
}

.custom-label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "";
    display: block;
    min-width: 24px;
    height: 24px;
    border: 1px solid rgb(209 213 219 / 1);
    margin-right: 10px;
}

.custom-label.invalid::before {
    border: 1px solid red;
}

.prev-next-nav {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: max-content max-content;
    justify-content: space-between;
}

/* .prev-btn {
    grid-column: 1 / 1;
}

.next-btn {
    grid-column:  3 / 3;
} */
 #toggleCartPhone {
    display: none;
 }

@media (max-width: 768px) { 
    .durations-container .duration-box .signup-costs {
        flex-direction: column;
    }
    
    .swiper-wrapper {
        gap: 0px;
    }
    
    .swiper-slide {
        width: 100% !important;
    }

    .ifhc-header .step-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    #signupForm {
        grid-template-columns: repeat(1, 1fr);
    }

    .locations-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .locations-container .location-box {
        border: 3px solid black;
        flex-direction: row;
        background-image: none;
        background-size: 50% 100%;
        background-repeat: no-repeat;
        height: 200px;
    }

    .locations-container .location-box.maastricht-ceramique,
    .locations-container .location-box.maastricht-mariaberg,
    .locations-container .location-box.herten,
    .locations-container .location-box.roermond,
    .locations-container .location-box.weert,
    .locations-container .location-box.panningen {
        background-image: none;
    }

    .locations-container .location-box .location-img {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        z-index: 2;
    }

    .locations-container .location-box .location-info {
        height: 50px;
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /* .locations-container .location-box.premium .location-info {
        background-color: rgba(250, 204, 21, 1);
    }
     */
    .locations-container .location-box.location-box.maastricht-ceramique .location-info {
        background-color: rgba(250, 204, 21, 1);
    }

    .locations-container .location-box .location-info {
        background-color: rgba(208, 0, 123, 1);
    }

    .locations-container .location-box.herten .location-info {
        background-color: rgba(0, 157, 211, 1);
    }

    .locations-container .location-box .location-select {
        display: block;
        position: absolute;
        top: calc(50% + 50px);
        right: 20px;
        background-color: black;
        color: white;
        font-family: "Avenir Light";
        font-weight: 600;
        font-size: 15px;
        padding: 5px;
        text-transform: uppercase;
        box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.3);
    }

    .memberships-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .memberships-container .membership-tile .btn-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .memberships-container .membership-tile .fake-btn {
        background: none;
        border: 3px solid rgba(208, 0 , 123, 1);
        color: rgba(208, 0 , 123, 1);
        font-weight: 600;
    }

    .memberships-container .membership-tile .fake-btn.selected {
        background: none;
        border: 3px solid rgba(208, 0, 123, 1);
        color: rgba(208, 0, 123, 1);
        font-weight: 600;
        cursor: pointer;
    }

    .memberships-container .membership-tile.premium-fit-fital .fake-btn {
        background: none;
        border: 3px solid rgba(194,98,39, 1);
        color: rgba(194,98,39, 1);
    }

    .memberships-container .membership-tile.premium-fit-fital .fake-btn.selected {
        background: none;
        border: 3px solid rgba(194,98,39, 1);
        color: rgba(194,98,39, 1);
        font-weight: 600;
        cursor: pointer;
    }

    .addons-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .prev-next-nav {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .next-btn, .prev-btn {
        width: 100%;
    }

    .ifhc-header .step-container {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .ifhc-header .step-container .step-box .step-name {
        display: none;
    }

    .ifhc-header .step-container .step-box::after {
        top: 42px;
    }

    #toggleCartPhone {
        display: block;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        font-size: 16px;
        background-color: black;
        color: white;
        text-decoration: none;
        font-weight: 400;
        font-family: "Avenir Light";
        box-sizing: border-box;
        border: 2px solid transparent;
        text-transform: uppercase;
    }


    .cart-header {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #signupForm {
        display: block;
    } 

    .nav-menu ul {
        gap: 10px;
        flex-direction: column;
        justify-content: space-between;
    }

    .thanks-quote {
        font-size: 20px !important;
        line-height: 20px !important;
        margin-bottom: 40px;
    }

    .pro-rata-popup-inner {
        width: 80%;
    }
}

.steps-summary .step-summary {
    margin-top: 10px;
    border: 3px solid black;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Avenir Light";
    font-weight: 600;
    font-size: 15px;
}

.steps-summary .step-summary .block-one {
    flex-basis: 10%;
}

.steps-summary .step-summary .block-one .step-circle {
    border: 2px solid rgba(208, 0, 123, 1);
    background-color: rgba(208, 0 , 123, 1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 2;
    color: white;
    position: relative;
    font-weight: bold;
    margin-right: 15px;
}

.steps-summary .step-summary .block-two {
    flex-basis: 70%;
}

.steps-summary .step-summary .block-three {
    flex-basis: 20%;
}

.steps-summary .step-summary .block-three span a {
    /* text-decoration: none; */
    color: rgba(208, 0 , 123, 1);
}

.chosen-option.personal-data {
    word-spacing: 10px;
}

.thanks-nav {
    padding: 15px 30px 15px 30px !important;
    background-color: #00000001;
    height: 66px;
    position: fixed;
    z-index: 9999;
    /* box-sizing: content-box; */
    display: flex;
    justify-content: space-between;
}

.logo-box, .nav-menu {
    flex-grow: 1;
}

.logo-box {
    justify-content: flex-start;
}

.logo-box img {
    height: 66px;
    width: 66px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    list-style-type: none;
    display: flex;
    flex-grow: 1;
    margin: 0;
    justify-content: space-between;
}

.nav-menu ul li {
    margin: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-menu ul li a.link-btn {
    border-radius: 500px;
    background-color: #FF008C;
    padding: 12px 25px 10px 25px;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.pink-back-btn {
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #FF008C;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FFFFFF;
    border-radius: 500px 500px 500px 500px;
    padding: 14px 30px 13px 30px;
    text-decoration: none;
}

.pink-back-btn:hover {
    color: white;
    transform: rotate(90deg);
}

.thanks-bg {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/discussing-their-next-class-ZDSZMSL.jpg');
}

.thanks-text {
    color: #009DD3;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.thanks-quote {
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    line-height: 61px;
}

.pro-rata-popup.hidden {
    display: none;
}

.pro-rata-popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.pro-rata-popup-inner {
    width: 50%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(17 24 39);
    color: white;
    font-family: "Inter";
    padding: 15px;
}

.pro-rata-popup-close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}