<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.therapist-book-online {
    position: relative;
}

.therapist-book-online-background-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.therapist-book-online.active .therapist-book-online-background-overlay {
    display: block;
}

.therapist-book-online-dialog {
    border: 1px black solid;
    background-color: white;
    z-index: 999;
    padding: 40px 20px 180px;
    bottom: 0;
}

@media (max-width: 750px) {
    .therapist-book-online-dialog {
        max-width: 350px;
        bottom: 0;
    }
}


.therapist-book-online-dialog .dialog-container {
    display: flex;
    flex-wrap: nowrap !important;
    column-gap: 1rem;
    margin: 0 !important;
    position: relative;
}

.dialog-container .current-select {
    position: relative;
    cursor: pointer;
    background-color: white;
    flex-grow: 1;
    padding: 6px 12px;
    white-space: nowrap;
}

@media (max-width: 450px) {
    .dialog-container .current-select {
        white-space: wrap;
    }
}

.dialog-container .current-select .fa.fa-chevron-down {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.therapist-book-online-dialog .dropdown-section ul {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    max-height: 104px;
    padding: 5px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    background: #fff;
    overflow: auto;
    z-index: 50;
}

.therapist-book-online-dialog .dropdown-section ul li {
    width: 100%;
    white-space: nowrap;
    padding: 5px;
    cursor: pointer;
}

@media (max-width: 450px) {
    .therapist-book-online-dialog .dropdown-section ul li {
        white-space: wrap;
    }
}


.therapist-book-online-dialog .dropdown-section ul li:hover, .therapist-book-online-dialog .dropdown-section ul li.selected {
    background: #ee1d23;
    color: #fff;
}

.therapist-book-online-dialog .dropdown-section .search-container {
    width: 100%;
    margin: 0;
    white-space: nowrap;
    padding-right: 7px;
    padding-left: 5px;
}

.dropdown-section .search-container input {
    width: 100%;
    padding: 10px 10px 7px;
    border: 1px solid #f7f7f7;
}

.dropdown-section .search-container input:hover {
    box-shadow: 0 0 5px #0FA5FA66;
    border: 1px solid #0FA5FA4D;
}

.therapist-book-online-dialog .dropdown-section {
    top: 34.85px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    padding: 1rem;
    padding-left: 0;
    left: 0;
    display: none;
}

.therapist-book-online-dialog.active .dropdown-section {
    display: block;
}

.therapist-book-online .close-dialog {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    font-size: 0;
    cursor: pointer;
}

.therapist-book-online .close-dialog:before,
.therapist-book-online .close-dialog:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: black;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
    content: '';
}

.therapist-book-online .close-dialog:after {
    transform: rotate(-45deg) translate(-50%, -50%);
}

.services-filter {
    padding: 20px 0;
    display: flex;
    justify-content: flex-end;
}

.services-filter .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 16px;
    max-width: 100%;
    width: 100%;
}

.services-filter select{
    visibility: hidden;
}

.services-filter .filter-button {
    width: 90px;
}

.services-filter .filter-button::before {
    font-family: fontawesome;
    content: "\f1de";
    font-weight: 900;
    color: #424a52;
    position: relative;
    left: -5px;
    padding: 5px;
}

.filters {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.form-control.hidden-desktop {
    padding: 0;
    display: flex;
    width: 100%;
}

.form-control.hidden-desktop select {
    max-width: 100%;
    border-radius: 0;
    border: none;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    min-width: 0;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control.hidden-desktop select:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.form-control.hidden-desktop button {
    margin: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 767px) {
    .hidden-desktop {
        display: none !important;
    }
}</pre></body></html>