#booking-section {
    padding: 0 5vw;
}

#booking-section > div:first-child {
    font-family: AktivGrotesk-Bold;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: #0A4769;
    padding: 2rem;
}

.book-now-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 6px solid #0A4769;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    margin-bottom: 5rem;
    z-index: 2; /* bg: z-index: 0 */
}

.same-height {
    display: flex;
    flex-direction: column;
}

.same-height > * {
    flex: 1;
}

.column-one {
    position: relative;
}

.column-one,
.column-two {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 0 0 27.5%;
    max-width: 27.5%;
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0px 15px 30px 0px rgba(239, 239, 239, 0.5);
    border-radius: 6px;
    height: max-content;
}

.column-one > p > span,
.column-two > p > span {
    font-family: HelveticaNeueBold;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 27.36px;
    color: #0A4769;
}

.column-one > p,
.column-two > p {
    font-family: HelveticaNeueLight;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 27.36px;
    color: #0A4769;
}

.column-one span,
.column-two span {
    font-family: HelveticaNeueLight;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 24.12px;
    color: #1D1D1D;
}

.column-one > *,
.column-two > * {
    flex: 1;
}

.column-third {
    padding: 2.125rem 1.5rem;
    background: #FFF;
    box-shadow: 0 0 0.6rem rgba(187,187,187,0.25);
    border-radius: 8px;
}

.start-journey {
    font-family: AktivGrotesk-Bold;
    font-size: 2.67rem;
    font-weight: 400;
    line-height: 31.2px;
    color: #1D1D1D;
  /*  padding: 0 2rem;*/
    text-align: center;
}

#starter-trial-bottom2 {
/*    padding: 0 1.25rem;*/
    padding: 1.25rem;
/*    margin: -1.25rem; /* same as upper padding value */
    margin: 0 -1.25rem -1.25rem;
    background: #ED1A78;
    /*cursor: pointer;*/
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    user-select: none;
    -webkit-user-drag: none;
}

#starter-trial-bottom2 span {
    color: #fff;
}

#starter-trial-bottom2 i:before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/images/bottom-landing/addon-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

#starter-trial-bottom2.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

#starter-trial-bottom2.active i:before {
    transform: rotate(180deg);
}

#starter-trial-bottom2-hide-detail {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    width: 100%;
    background: #ED1A78;
    border: 1px solid #ED1A78;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

#starter-trial-bottom2-hide-detail li {
    font-family: HelveticaNeueLight;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 18.72px;
    color: #fff;
    padding-right: 1.5rem;
}

.starter-trial-hide-detail2 li {
    font-size: 16px;
    line-height: 18.6px;
}

.booking-form input,
.booking-form textarea {
    padding: 0.425rem;
    border: 1px solid #1D1D1D;
    color: #1D1D1D;
    border-radius: 6px;
    font-family: HelveticaNeueLight;
    line-height: 28.8px;
    font-weight: 400;
    font-size: 1.125rem;
    width: 100%;
}

.booking-form textarea {
    min-height: 15vh;
}

input::placeholder {
    color: #1D1D1D;
    opacity: 1;
}

input::-ms-input-placeholder {
    color: #1D1D1D;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* root (booking-form) input color */
:root {
    --input-border: #1D1D1D;
    --input-focus-h: 329;
    --input-focus-s: 85%;
    --input-focus-l: 52%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input::placeholder {
    color: #1D1D1D;
}

.booking-form *::before,
.booking-form *::after {
    box-sizing: border-box;
}

.booking-form .dropdown {
    width: 100%;
    position: relative;
}

.booking-form input,
.booking-form select,
.booking-form .dropdown button {
    -webkit-appearance: none;
    appearance: none;
    font-family: HelveticaNeueLight;
    font-size: 1rem;
    color: #1D1D1D;
    padding: 0.625rem;
    background-color: #fff;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    transition: 180ms box-shadow ease-in-out;
    line-height: 1.2;
    width: 100%;
    height: 100%;
    min-height: 3rem;
    white-space: normal;
    text-overflow: ellipsis;
    cursor: pointer;
    text-align: left;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form .dropdown button:focus {
    border-color: hsl(
        var(--input-focus-h),
        var(--input-focus-s),
        var(--input-focus-l));
    box-shadow: 0 0 0 3px hsla(
                var(--input-focus-h),
                var(--input-focus-s),
                calc(var(--input-focus-l) + 40%),
                0.8);
    outline: 3px solid transparent;
}

.booking-form .dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid #1D1D1D;
}

.booking-form .dropdown .dropdown-menu .dropdown-item {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
    
    padding-left: 0.625rem;
    padding-right: 0.625rem;

    white-space: normal;
}

.booking-form .dropdown .dropdown-menu .dropdown-item:hover{
    background: #1967d2;
    color: #fff;
}

.booking-form .select {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.booking-form select,
.booking-form .dropdown button {
    padding-right: 30px;
}

.booking-form i {
    position: absolute;
    right: 10px;
    pointer-events: none;
    transform: translate(0, -50%);
    top: 50%;
}

.booking-form i::after {
    display: inline-block;
    content: "";
    width: 20px;
    height: 15px;
    background: url(/images/bottom-landing/booking-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.invalid-feedback {
    margin-top: 0.1rem !important;
    font-size: 12px !important;
}

#booking-section .book-now-container .tnc-text {
    font-family: HelveticaNeueLight;
    font-size: .9rem;
    color: #1D1D1D;
    line-height: 21px;
}

#booking-section .book-now-container .tnc-text a {
    text-decoration: underline;
    color: #ED1A78;
}

#booking-section .book-now-container .tnc-text a:hover {
    color: #1d68a7;
}

#booking-section .book-now-container .promotion-valid-text {
    font-family: HelveticaNeueLight;
    font-size: .9rem;
    color: #ED1A78;
    padding-right: 1rem;
}

.book-btn {
    border-radius: 8px;
    border: none !important;
    outline: 0 !important;
    font-family: HelveticaNeueBold;
    font-size: 1rem;
    color: #fff;
    background: #ED1A78;
    padding: 1rem 1.5rem;
    text-wrap: nowrap;
    white-space: nowrap;
    cursor: pointer;
}

.book-btn:hover, .book-btn:focus,
.booking-section > .chiropractor-appt > .appt-bg-cover > a:hover {
    color: #ED1A78;
    background: #ffc2dd;
}

.booking-section {
    display: flex;
    background: #f2f2f2;
}

@media(max-width: 1600px) {
    #booking-section .book-now-container .promotion-valid-text {
        line-height: 12px;
    }
}

@media(max-width: 1579px) {
    .column-one span, .column-two span,
    #starter-trial-bottom2-hide-detail li {
        font-size: 1rem;
    }
}

@media(max-width: 1540px) {
    #booking-section .book-now-container .promotion-valid-text {
        font-size: .9rem !important;
    }
}

@media(max-width: 1024px) {
    .column-one span, .column-two span {
        line-height: 15.12px;
    }
}

@media (max-width: 850px) {
     #booking-section {
        background: #0a4769;
    }

    #booking-section .book-now-container > div:not(:last-child),
    #booking-section > div:first-child {
        display: none;
    }

    #booking-section .book-now-container > .column-third {
        box-shadow: unset;
        background: transparent;
        padding: 2rem 0;
    }

    #booking-section .book-now-container > .column-third > div:first-child {
        padding: 1rem 0.5rem 0;
    }

    #booking-section .book-now-container > .column-third > div:first-child > .start-journey {
        font-size: 2rem;
        line-height: 2.3rem;
        color: #ffffff;
    }

    .booking-form input, .booking-form select, .booking-form .dropdown button {
        min-height: 5vh;
        padding: 0 1rem;
        font-size: 1rem;
    }

    .booking-form .dropdown .dropdown-menu .dropdown-item {
        font-size: 1rem;
    }

    .booking-form i {
        right: 16px;
    }

    .booking-form i::after {
        width: 12px;
        height: 14px;
    }

    #booking-section .book-now-container .tnc-text {
        color: #ffffff;
        line-height: 1.3125rem;
        padding: 0 0.5rem;
    }

    #booking-section .book-now-container .tnc-text > .tnc-click-text {
        color: #ff87bc;
    }

    #booking-section .book-now-container .booknow-btn {
        width: 100%;
        padding: 0.5rem;
    }

    #booking-section .book-now-container .promotion-valid-text {
        font-size: 0.75rem !important;
        color: #ffffff;
        padding: 0.5rem;
    }

    .booking-section {
        flex-direction: column;
    }
}

@media (max-width: 767.9px) {
    .book-now-container {
        border-radius: 0;
        border-top: 0;
        margin: 0 !important;
        padding: 0;
    }

    .same-height {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .booking-form input, .booking-form select, .booking-form .dropdown button, .booking-form .dropdown .dropdown-menu .dropdown-item {
        font-size: .75rem;
    }

    .booking-form .dropdown .dropdown-menu .dropdown-item {
        padding-top: 0.825rem;
        padding-bottom: 0.825rem;
    }

    #booking-section .book-now-container .booknow-btn > .book-btn {
        font-size: 1.125rem;
        height: 13vw;
    }
}