body {
    overflow-x: hidden;
}

section#demo-flow {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

#slides-holder {
    display: flex;
    width: 100%;
    min-height: 550px;
    transition: all 0.75s cubic-bezier(0.68, -0.35, 0.27, 1.25);
    position:relative;
    padding-top: 8%;
}
.no-transition {
    transition: none !important;
}
.slide {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    transition: all 0.6s;
    /* transform: translateX(100%); */
    opacity: 0;

}


.slide.active {
    /* transform: translateX(0); */
    opacity: 1;
}

.slide.out {
    /* transform: translateX(-100%); */
    opacity: 0;
}

.step-pre-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #755BE2;
    display: block;
    min-height: 1em;
}
.step-pre-title:not(:empty) {
    margin-bottom: 20px;
}
.step-pre-title.black {
    color: #1A1B20;
}
.step-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 53px;
    color: #1A1B20;
    margin-bottom: 60px;
    text-align: center;
    max-width: 980px;
}
.step-title.short-margin {
    margin-bottom: 43px;
}
.step-content {
    display: flex;
    flex-direction: column;
}
.step-content button {
    background-color: var(--medium-purple-755-be-2, #755BE2);
}

.next-step {
    display: flex;
    height: 54px;
    padding: 12px 60px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--medium-purple-755-be-2, #755BE2);
    color: white;
}
.next-step:hover,
.next-step:active{
    background-color: var(--medium-purple-755-be-2, #755BE2);
}

.next-step:disabled,
.next-step.disabled
{
    background: var(--silver-9-c-9-c-9-c, #9C9C9C) !important;
    cursor: pointer;
}

.step-buttons {
    margin-top: 32px;
}
.not-valid {
    border: 1px solid #FF1612 !important;
    color: #FF1612 !important;
}

.not-valid ~ .floating-label {
    color: #FF1612 !important;
    opacity: 1;
}
#step-back {
    position: absolute;
    top: 23%;
    left: 0;
    z-index: 100000;
    width: 24px;
    height: 47px;
    background: url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/step-back.svg') center center no-repeat;
}



.step-content input[type="text"],
.step-content input[type="email"],
.step-content input[type="number"]
{
    border-radius: 8px;
    border: 1px solid var(--silver-9-c-9-c-9-c, #9C9C9C);
    background: var(--ghost-white-fafbfc, #FAFBFC);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 20px;
    font-size: 20px;
    padding: 19px 14px 7px;
    width: 460px;
}

/* Target the input element when autofilled */
.step-content input:-webkit-autofill,
.step-content input:-webkit-autofill:hover,
.step-content input:-webkit-autofill:focus,
.step-content input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}



.floating-label-group {
    position: relative;
}
.floating-label {
    position: absolute;
    pointer-events: none;
    left: 1rem;
    top: 50%;
    transition: 0.2s ease all;
    opacity: 0.5;
    transform: translateY(-50%);
}

.floating-label.minimized {
    font-size: 12px;
    top: 7px;
    transform: translateY(0);
}

#phoneInputHolder .floating-label.minimized {
    top: 14px;
}


.floating-input {
    border: 1px solid #ced4da;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.floating-input:focus,
.floating-input:not(:placeholder-shown) {
    padding-top: 1.5rem;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.75rem;
    opacity: 1;
}
#accommodation-type-wrap {
    display: flex;
    gap: 61px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 32px;
}
#accommodation-type-wrap > div {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 220px;
    height: 280px;
    border-radius: 4px;
    border: 1px solid var(--light-silver-d-9-d-9-d-9, #D9D9D9);
    background: var(--white-ffffff, #FFF);
    box-shadow: 0px 8px 24px -4px rgba(84, 84, 84, 0.12);
    cursor: pointer;
    padding-top: 30px;
}
#accommodation-type-wrap > div.active {
    border: 1px solid var(--medium-purple-755-be-2, #755BE2);
}
.accommodation-type-img {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 11px;
    filter: grayscale(100%) contrast(120%) brightness(90%);
}
#accommodation-type-wrap > div.active .accommodation-type-img {
    filter:none;
}
.accommodation-type-title {
    text-align: center;
    color: var(--shark-1-a-1-b-20, #1A1B20);
    font-family: 'Poppins', 'sans-serif';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.accommodation-type-checkbox {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 4px;
    border: 1px solid #755BE2;
    background: #FFF;

}

#email-disclaimer-holder {
    cursor: pointer;
    position: relative;
    padding-left: 26px;
    color: var(--dark-silver-545454, #545454);
    font-family: 'Poppins', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 22.1px */
    margin-top: 21px;
    margin-bottom: 31px;
}
#email-disclaimer-holder #email-disclaimer-checkbox {
        width: 16px;
        height: 16px;
        display: flex;
        border-radius: 4px;
        border: 1px solid #755BE2;
        background: #FFF;
    position: absolute;
    top: 4px;
    left: 0;
}

#email-disclaimer-holder.active #email-disclaimer-checkbox{
    background: #755BE2 url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/checkbox-check.svg') no-repeat center center;
    background-size: 10px;
}

#accommodation-type-wrap > div.active .accommodation-type-checkbox {
    border-radius: 4px;
    border: 1px solid #755BE2;
    background: #755BE2 url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/checkbox-check.svg') no-repeat center center;
}

#submit-disclaimer {
    cursor: pointer;
    position: relative;
    color: var(--dark-silver-545454, #545454);
    font-family: 'Poppins', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 22.1px */
    margin-top: 21px;
    margin-bottom: 31px;
}

#submit-disclaimer a,
#submit-disclaimer a:hover,
#submit-disclaimer a:active
{
    color: #755BE2;
    text-decoration: none;
}
#submit-disclaimer a:hover {
    text-decoration: underline;
}

#selectContainer {
    position: relative;
}
#selectContainer span.select2 {
    width: 100%;
    padding: 6px 2px;
}
#selectContainer > p {
    display: none;
    position: absolute;
    top: 34px;

}
.select2-selection {
    width: 380px;
}

#countryHolder {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#phoneHolder {
    height: 50px;
    background-color: var(--light-purple);
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--silver-9-c-9-c-9-c, #9C9C9C);
    background: var(--ghost-white-fafbfc, #FAFBFC);
    margin-bottom: 32px;
    max-width: 458px;
}

#slide8 .step-content {
    width: 458px;
    max-width: 100%;
}

#slide8 .select-selected{
    width: 100%;
    max-width: 458px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--medium-purple-755-be-2, #755BE2);
    background: var(--ghost-white-fafbfc, #FAFBFC);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

body .custom-select select {
    color: gray; /* Default color */
}

body .custom-select select.selected {
    color: black; /* Color after selection */
}

#flagHolder {
    width: 25px;
    height: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 5px;
    background-position: center center;

}

#countryHolder > p {
    display: flex;
    width: auto;
    border-right: 1px solid #9C9C9C;
}
.selection {
    display: none;
}


body .select2-dropdown.phonePrefixResults {
    width: 458px !important;
}

body .select2-container .phonePrefixResults{
    transform: translateX(-20px);
    border-radius: 8px;
    border: 1px solid var(--medium-purple-755-be-2, #755BE2);
    background: var(--white-ffffff, #FFF);

}

body .select2-container .phonePrefixResults .select2-search{
    padding-top: 20px;
    padding-right: 19px;
    padding-left: 19px;
}

body .select2-container .phonePrefixResults .select2-search__field {
    width: calc(100% - 19px);
    line-height: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--light-silver-d-9-d-9-d-9, #D9D9D9);
}
body .select2-container .phonePrefixResults .select2-results__option {
    color: var(--shark-1-a-1-b-20, #1A1B20);
    font-family: 'Poppins', 'sans-serif';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    padding-left: 20px !important;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background: var(--soft-purple-f-8-f-4-ff, #F8F4FF);
    color: var(--shark-1-a-1-b-20, #1A1B20);
}


.previous-btn button {
    width: 100% !important;
}
@media (max-width: 991px) {
    .banner-inner {
        padding-top: 50px !important;
    }
}

#phonenumber {
    border-radius: 0;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 2em;
    background-color: transparent;
}
#selectedPrefix {
    width: fit-content;
    white-space: nowrap;
}
.arrow {
    padding: 0 14px;
    display: inline-block;
    width: 46px;
    background: url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/down-arrow.svg') center center no-repeat;

}

#companySizeError {
    display: none;
    color: #FF1612;
    font-family: 'Poppins', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 22.1px */
    width: 420px;
    max-width: 100%;
    margin-top: 10px;
}

#not-enough-rooms-message,
#switch-pms{
    max-width: 800px;
    font-size: 36px;
}

#not-supported-pms {
    max-width: 767px;
    font-size: 36px;
}

#switch-radio-holder {
    display: flex;
    width: 353px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.switch-radio {
    max-width: 164px;
    width: 100%;
    padding-top: 12px;
    padding-left: 14px;
    padding-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    background: #EBEBEB;
    align-items: center;
    color: var(--shark-1-a-1-b-20, #1A1B20);
    font-family: 'Poppins', 'sans-serif';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 10px;
    cursor: pointer;
}

.switch-radio.active {
    background: var(--lavender-efe-3-ff, #EFE3FF);
}

.radio-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #755BE2;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-radio.active .radio-check {
    background: url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/radio-fill.svg') no-repeat center center;
}

body .ui-widget.ui-widget-content {
    border-radius: 8px;
    border: 1px solid var(--medium-purple-755-be-2, #755BE2);
    background: var(--white-ffffff, #FFF);
}
body .ui-menu .ui-menu-item-wrapper {
    color: var(--shark-1-a-1-b-20, #1A1B20);
    font-family: 'Poppins', 'sans-serif';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
}

body .ui-menu .ui-menu-item-wrapper:hover,
body .ui-menu .ui-menu-item-wrapper:active,
body .ui-menu .ui-menu-item-wrapper:focus {
    background: var(--soft-purple-f-8-f-4-ff, #F8F4FF);;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

body .ui-menu .ui-menu-item:first-child .ui-menu-item-wrapper:hover,
body .ui-menu .ui-menu-item:first-child .ui-menu-item-wrapper:active,
body .ui-menu .ui-menu-item:first-child .ui-menu-item-wrapper:focus {
    border-top: 1px solid  var(--medium-purple-755-be-2, #755BE2);
    border-bottom: 1px solid transparent;
    border-radius: 8px 8px 0 0;
}


body .ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper:hover,
body .ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper:active,
body .ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper:focus{
    border-bottom: 1px solid  var(--medium-purple-755-be-2, #755BE2);
    border-top: 1px solid transparent;
    border-radius: 0 0 8px 8px;
}

body .ui-menu .ui-menu-item-wrapper.ui-state-active {
    background: var(--soft-purple-f-8-f-4-ff, #F8F4FF);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

body .ui-menu .ui-menu-item:first-child .ui-menu-item-wrapper.ui-state-active {
    border-top: 1px solid var(--medium-purple-755-be-2, #755BE2);
    border-bottom: 1px solid transparent;
    border-radius: 8px 8px 0 0;
}

body .ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper.ui-state-active {
    border-bottom: 1px solid var(--medium-purple-755-be-2, #755BE2);
    border-top: 1px solid transparent;
    border-radius: 0 0 8px 8px;
}

.close-flow {
    width: 40px;
    height: 40px;
    background: transparent url('/wp-content/themes/hello-theme-child-master/templates/assets/img/book/icon-cancel.svg') center center no-repeat;
    cursor: pointer;
    margin-bottom: 43px;
}
body .select-items {
    max-height: 500px;
    position: absolute;
    background-color: #ffffff;
    top: 100%;
    margin-top: 5px;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: none;
    border: 1px solid #755BE2;
    border-radius: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    overflow-y: hidden;
}
body .select-items div:nth-child(odd) {
    background-color: #ffffff;
}

body .select-items div:hover {
    background: var(--soft-purple-f-8-f-4-ff, #F8F4FF);
    color: var(--shark-1-a-1-b-20, #1A1B20);
}
@media (min-width: 751px) and (max-width: 1199px) {
    #demo-flow > .container > .row {
        overflow-x: hidden;
    }
    .step-pre-title {
        font-size: 20px;
        line-height: 134%;
    }
    .step-title {
        font-size: 24px;
        margin-bottom: 32px;
        line-height: 134%;
    }
    .step-buttons {
        margin-bottom: 34px;
    }
    #accommodation-type-wrap {
        gap: 22px;
    }
    #accommodation-type-wrap > div {
        width: 120px;
        height: auto;
        padding-top: 13px;
        padding-bottom: 22px;
        gap: 14px;

    }
    .accommodation-type-img {
        height: 65px;
        width: 65px;
        margin-bottom: 0;
    }

    .accommodation-type-title {
        font-size: 11px;
    }
    .accommodation-type-checkbox {
        width: 16px;
        height: 16px;
    }

    #accommodation-type-wrap > div.active .accommodation-type-checkbox {
        background-size: 10px;
    }
    #step-back.next-step {
        top: 75px;
        width: 30px;
        padding: 0;
        left: 10px;
    }

}
@media (max-width: 750px) {

    #demo-flow > .container > .row {
        overflow-x: hidden;
    }
    #slides-holder {
        padding-top: 50px;
        min-height: 80vh;
    }
    .step-pre-title {
        font-size: 20px;
        line-height: 1em;
        min-height: 0;
    }


    .step-title {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 134%;
        margin-bottom: 48px;
    }
    .step-pre-title:not(:empty) {
        margin-bottom: 10px;
    }
    br.hide-mobile {
        display: none;
    }

    #slide8 .select-selected {
        border: 1px solid var(--silver-9-c-9-c-9-c, #9C9C9C);
    }
    .step-content input[type="text"], .step-content input[type="email"], .step-content input[type="number"] {
        max-width: 100%;
        width: 100%;
    }
    .floating-label-group {
        width: 100%;
    }

    .slide {
        min-height: 0;
    }
    #step-back {
        top: 10px;
        left: 0;
        padding: 0px;
        width: 20px;
        background-size: contain;
    }
    #accommodation-type-wrap {
        gap: 22px;
        margin-top: 0;
        margin-bottom: 0;
    }
    #accommodation-type-wrap > div {
        width: 120px;
        height: auto;
        padding-top: 13px;
        padding-bottom: 22px;
        gap: 14px;

    }
    .accommodation-type-img {
        height: 65px;
        width: 65px;
        margin-bottom: 0;
    }

    .accommodation-type-title {
        font-size: 11px;
    }
    .accommodation-type-checkbox {
        width: 16px;
        height: 16px;
    }
    .step-buttons {
        width: 100%;
    }
    .next-step {
        width: 100%;
    }
    #submit-disclaimer {
        color: #000;
        margin-top: 13px;
        margin-bottom: 6px;
    }
    #email-disclaimer-holder br {
        display: none;
    }

    #slide8 h4 { order: 1; }
    #slide8 h2 { order: 2; }
    #slide8 .step-content { order: 3; }
    #slide8 #submit-disclaimer { order: 4; }
    #slide8 .step-buttons { order: 5; }


    #accommodation-type-wrap > div.active .accommodation-type-checkbox {
        background-size: 10px;
    }

    #not-enough-rooms-message, #switch-pms, #not-supported-pms {
        font-size: 24px;
    }
    .step-pre-title {
        text-align: center;
    }

}

@media (max-width: 375px) {

    body .select2-container .phonePrefixResults {
        transform: translateX(-22px);
        width: 328px !important;
    }
}

.sticky-mobile-button.show {
    display: none !important;
}