html {
    --LVB-body-font-size: 14px;
    --LVB-body-font-line-height: 22px;
}

.wos-modal-overlay {
    background-color: rgba(0, 0, 0, 0);
    z-index: 999999999999999998;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: background-color 0.4s ease-out;
    -moz-transition: background-color 0.4s ease-out;
    -o-transition: background-color 0.4s ease-out;
    transition: background-color 0.4s ease-out;
}

.wos-modal-open .wos-modal-overlay {
    background-color: rgba(0, 0, 0, .4);
}

.wos-modal-closed {
    visibility: hidden;
}

.wos-modal-wrapper {
    background-color: white;
    z-index: 999999999999999999;
    position: fixed;
    max-width: 600px;
    width: 100%;
    height: 100%;
    left: auto;
    transform: none;
    bottom: 0;
}

.wos-modal-header .close-modal,
button.back-button {
    background: none;
    border: 0;
    padding: 0;
    width: 56px;
    height: 56px;
    cursor: pointer;
}

.wos-modal-header .close-modal {
    display: flex;
    align-items: center;
    place-content: center;
}

.close-modal object.svg.xmark {
    padding: 0;
    height: 22px;
    pointer-events: none;
}

.wos-modal-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    height: 56px;
}

#wos-modal .subscribe-lightbox-panel-content-left {
    width: 100% !important;
}

.modal2 {
    height: 100vh;
}

.modal3 {
    height: 100vh;
}

.subscribe-lightbox-panel-content-left {
    height: 100vh;
}

button.back-button {
    background-image: url(https://content.thewosgroup.com/icons/svgs/arrow-left.svg);
    background-repeat: no-repeat;
    background-size: 17.8px;
    align-self: center;
    background-position: center;
    position: relative;
}

@media (min-width: 768px) {
    .wos-modal-wrapper {
        right: -100%;
        transition: right ease 500ms 100ms;
        -webkit-transition: right ease 500ms 100ms;
    }

    .wos-modal-open .wos-modal-wrapper {
        right: 0;
    }

    .wos-modal-content-wrapper {
        overflow: auto;
    }

    .wos-modal-closed .wos-modal-wrapper {
        animation: modalDesktopSlideRight ease 500ms 100ms;
    }
}

@media (max-width: 762px) {
    .wos-modal-open .wos-modal-wrapper {
        animation: modalMobileSlideUp cubic-bezier(0, 0, 0.1, 1) 500ms;
        max-height: calc(100% - 56px);
        max-width: 100%;
    }

    .wos-modal-wrapper {
        animation: modalMobileSlideDown cubic-bezier(0, 0, 0.1, 1) 500ms;
    }

    .wos-modal-closed .wos-modal-wrapper {
        transform: translateY(100%);
    }

    .wos-modal-wrapper {
        transition: height 0.3s ease;
    }

    .modal2 {
        height: 400px;
    }

    .modal3 {
        height: 800px;
    }
}

@keyframes modalMobileSlideUp {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes modalMobileSlideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%)
    }
}

@keyframes modalDesktopSlideRight {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}

@media (max-width: 762px) {
    .modal-fade {
        transition: bottom 0.3s ease-in-out;
    }

    .modal-fade::after {
        background: linear-gradient(0deg, #FFF 22.40%, rgba(217, 217, 217, 0.00) 100%);
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 100%;
        height: 87px;
        transition: height 0.3s ease-in-out;
    }
}

/* CSS for Live help   */
.lvb-button object.svg.chevronRight,
.cs-button object.svg.chevronRight {
    height: 22px;
    width: 10%;
    float: right;
}

/* Live help pill */
.wos-live-help-pill {
    visibility: hidden;
    display: none;
}

button.wos-live-help-mobile-button {
    border: 0;
    border-radius: 50%;
    padding: 8px;
    bottom: calc(2.7vh);
    position: fixed;
    z-index: 9;
    right: 27px;
    width: 56px;
    height: 56px;
    box-shadow: var(--v24-tab-shadow, 4.6px 9.1px 9.1px rgba(0, 0, 0, .169));
    background-color: var(--primary-text-color);
    line-height: 14px;
}

.wos-live-help-mobile-button svg {
    position: relative;
    top: 3px;
}

button.wos-live-help-desktop-button {
    font-family: inherit;
    border: 0;
    border-radius: 30px;
    padding: 10px 20px;
    bottom: calc(2.7vh);
    position: fixed;
    z-index: 9;
    right: 24px;
    width: 147px;
    height: 44px;
    box-shadow: var(--v24-tab-shadow, 4.6px 9.1px 9.1px rgba(0, 0, 0, .169));
    background-color: var(--primary-text-color);
    color: white;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.wos-live-help-desktop-button-text {
    line-height: 24px !important;
    margin-top: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 8px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
}

.wos-live-help-pill button>* {
    pointer-events: none;
}

@media (min-width: 992px) {
    .wos-live-help-mobile {
        display: none;
    }

    .wos-live-help-desktop {
        display: block;
    }
}

@media (max-width: 992px) {
    .wos-live-help-mobile {
        display: block;
    }

    .wos-live-help-desktop {
        display: none;
    }
}

.wos-modal-body {
    height: 100%;
}

.wos-modal-content {
    height: 100%;
}

/** CSS for screen-1 */
.live-help-screen1 .live-help-wrapper {
    display: flex;
    padding: 0px 24px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* font-family: DTLNobelT-Light, Arial, sans-serif;*/
    margin-bottom: 55px;
}

.live-help-screen1 .live-help-subheader,
.live-help-vb-wrapper .live-help-subheader,
.live-help-cs .live-help-subheader {
    color: var(--primary-text-color);
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    font-style: normal;
    line-height: var(--LVB-body-font-line-height);
    text-transform: uppercase;
    width: 100%;
    font-weight: var(--primary-font-normal-weight);
    letter-spacing: .15em;
}

.live-help-screen1 .live-help-header,
.live-help-vb-wrapper .live-help-header,
.live-help-cs .live-help-header {
    width: 300px;
    padding: 0px 24px;
    margin-bottom: 8px;
    color: var(--primary-text-color);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-help-screen1 .live-help-subheader-text {
    color: var(--primary-text-color);
    text-align: center;
    /*font-family: DTLNobelT-Light, Arial, sans-serif;*/
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: var(--LVB-body-font-line-height);
    width: 100%;
    margin-bottom: 14px;
}

.live-help-screen1 .lvb-button,
.live-help-screen1 .cs-button {
    border: 1px solid var(--dark-grey-1);
    display: flex;
    padding: 16px 0px 16px 16px;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin-bottom: 14px;
    cursor: pointer;
}

.cs-button.modal-trigger {
    margin-bottom: 0 !important;
}

.live-help-screen1 .button-content {
    width: 90%;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.live-help-screen1 .live-help-button-header {
    color: var(--primary-text-color);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-help-screen1 .live-help-button-subheader {
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: var(--LVB-body-font-line-height);
    color: var(--primary-text-color);
}

.live-help-screen1 .live-help-button-times {
    color: var(--dark-grey-2);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: 20px;
}

.live-help-closed-status {
    font-size: var(--LVB-body-font-size);
    text-align: center;
    font-weight: var(--primary-font-normal-weight);
    line-height: 38px;
    width: 100%;
    height: 38px;
    vertical-align: middle;
    margin-bottom: 16px;
}

.live-help-closed-status svg {
    margin-right: 8px;
}

.lvb-button>*,
.cs-button>* {
    pointer-events: none;
}

.wos-modal-container {
    overflow: auto;
    height: 100%;
}

.live-help-screen1-hero {
    display: none;
    margin-bottom: 24px;
}

.live-help-screen1-hero img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}

@media (max-width: 762px) {
    .wos-modal-content-wrapper {
        height: 100% !important;
    }
}

/** desktop styling */
@media (min-width: 762px) {
    .live-help-screen1-hero {
        display: block !important;
    }

    .live-help-screen1 .live-help-wrapper {
        padding: 0px 60px;
    }

    .live-help-screen1 .live-help-header {
        width: 100% !important;
    }

    .live-help-screen1 .live-help-button-header {
        font-size: var(--LVB-body-font-size);
    }

    .live-help-screen1 .live-help-button-times {
        font-size: 13px;
    }

    .live-help-screen1 .button-content {
        gap: 8px;
    }

    .live-help-screen1 .live-help-subheader-text {
        margin-bottom: 16px;
    }
}

.wos-modal-container {
    overflow: auto;
    height: 100%;
}

/** VB & CS modal */
.wos-modal-container {
    overflow: auto;
    height: 100%;
}

.live-help-vb-wrapper,
.live-help-cs .live-help-cs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /*font-family: DTLNobelT-Light, Arial, sans-serif;*/
    margin-bottom: 56px;
}

.live-help-vb-wrapper:not(:first-child) {
    padding: 0px 30px;
}

.live-help-vb-hero img,
.live-help-cs-hero img {
    width: 100%;
    height: auto;
    max-height: 114px;
    object-fit: cover;
}

.live-help-vb-hero,
.live-help-cs-hero {
    margin-bottom: 20px;
    width: 100%;
}


.live-help-vb-content,
.live-help-cs .live-help-cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 24px;
    width: 100%;
}

ul.vb-services,
.live-help-cs ul.cs-services {
    list-style-type: disc;
    width: 100%;
    margin-bottom: 24px;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: var(--LVB-body-font-line-height);
    padding-left: 18px;
}

.vb-findoutmore a {
    font-size: 15px;
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: 24px;
    text-decoration-line: underline;
    margin: 0 auto;
    color: var(--primary-text-color);
}

.vb-findoutmore {
    margin-bottom: 32px;
}

.vb-open-status svg {
    margin-right: 8px;
}

.vb-open-status,
.live-help-cs .cs-open-status {
    font-size: var(--LVB-body-font-size);
    text-align: center;
    font-weight: var(--primary-font-normal-weight);
    line-height: 38px;
    width: 100%;
    height: 38px;
    vertical-align: middle;
    margin-bottom: 12px;
}

.vb-startLive-button,
.cs-startLive-button,
button.scheduleAppt {
    width: 100%;
    height: 50px;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

.vb-startLive-button,
.cs-startLive-button {
    background: var(--primary-btn-bg-color);
    text-align: center;
    font-weight: var(--primary-font-bold-weight);
    line-height: 50px;
    color: var(--primary-btn-text-color);
    margin-bottom: 16px;
    border: 0;
}

button.scheduleAppt {
    border: 1px solid var(--dark-grey-2);
    background: white;
    font-weight: var(--primary-font-bold-weight);
    line-height: 24px;
    color: var(--primary-text-color);
}

.cs-startLive-button,
button.scheduleAppt {
    margin-bottom: 26px;
}

a.vb-startLive-button:hover,
a.cs-startLive-button:hover {
    text-decoration: none;
    color: var(--primary-btn-text-color);
}

.vb-agreement,
.cs-agreement {
    font-size: 11px;
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: 19px;
    color: var(--primary-text-color);
}

.vb-agreement a,
.cs-agreement a {
    text-decoration: underline;
}

.vb-about-header,
.cs-about-header {
    font-size: 16px;
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    line-height: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-top: 1px solid var(--dark-grey-1);
    width: 100%;
    text-align: center;
    padding-top: 24px;
}

.vb-about,
.cs-about {
    color: var(--primary-text-color);
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: var(--LVB-body-font-line-height);
    margin-bottom: 24px;
}

.vb-status-message {
    text-align: center;
    font-size: var(--LVB-body-font-size);
    line-height: var(--LVB-body-font-line-height);
    margin-bottom: 16px;
}

button.requestCallback {
    width: 100%;
    background: var(--secondary-bg-color);
    height: 50px;
    text-align: center;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-btn-text-color);
    margin-bottom: 16px;
    border: 0;
}

.vb-container.closed .vb-open-status {
    margin-bottom: 12px;
}

/** desktop styling */
@media (min-width: 762px) {

    .live-help-vb-hero img,
    .live-help-cs-hero img {
        height: auto;
        max-height: 150px !important;
    }

    .live-help-vb-hero,
    .live-help-cs-hero {
        margin-bottom: 16px;
    }

    .live-help-subheader {
        padding: 0px 60px;
    }

    .live-help-vb-wrapper .live-help-header,
    .live-help-cs .live-help-header {
        width: 100% !important;
    }

    .live-help-vb-content {
        padding: 0px 60px;
    }

    .vb-agreement,
    .cs-agreement {
        margin-bottom: 56px;
        font-size: 12px;
    }

    .vb-open-status,
    .live-help-cs .cs-open-status {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* CS Modal */
.live-help-cs .cs-opening-time {
    margin-bottom: 16px;
}

.live-help-cs .cs-status-message {
    color: var(--primary-text-color);
    text-align: center;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-normal-weight);
    line-height: var(--LVB-body-font-line-height);
    margin-bottom: 16px;
}

.cs-open-status svg {
    margin-right: 8px;
}

a.faqButton.close-modal:hover {
    text-decoration: none;
}

a.faqButton.close-modal {
    border: 1px solid var(--dark-grey-2);
    background: white;
    width: 100%;
    height: 50px;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    line-height: 50px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: var(--primary-text-color);
    text-align: center;
    text-decoration: none;
}

/** desktop styling */
@media (min-width: 762px) {


    .live-help-cs .live-help-cs-content {
        padding: 0px 60px !important;
    }

    .cs-open-status {
        margin-bottom: 14px;
    }

    .cs-startLive-button {
        margin-bottom: 24px;
    }
}

/** SVGS */
.open .cs-open-status svg,
.open .vb-open-status svg {
    fill: #4E8B43;
}

.closed .cs-open-status svg,
.closed .vb-open-status svg,
live-help-closed-status svg {
    fill: #d63137;
}

.engaged .cs-open-status svg,
.engaged .vb-open-status svg {
    fill: #FFB200;
}


div#whatsapp-link a {
    border: 1px solid var(--dark-grey-2);
    background: white;
    width: 100%;
    height: 50px;
    font-size: var(--LVB-body-font-size);
    font-style: normal;
    font-weight: var(--primary-font-bold-weight);
    line-height: 50px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--primary-text-color);
    text-align: center;
    text-decoration: none;
    display: block;
}

div#whatsapp-link p {
    text-align: center;
    font-size: 0.8em;
    margin-bottom: 12px;
}

.wos-modal-content button {
    font-family: inherit;
}