/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-size: 18px;
    font-family: "Open Sans";
    background: var(--sitly-white);
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0;
    overflow-y: auto;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    font-weight: normal;
    color: var(--sitly-maindarkblue);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type=submit],
input[type=button],
button,
select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

button:focus {
    outline: unset;
    box-shadow: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--sitly-maindarkblue);
}

a:hover {
    color: var(--sitly-maindarkblue);
}

.w-100 {
    width: 100%;
}

textarea {
    resize: none;
    width: 100% !important;
}

img {
    max-width: 100%;
}

.form-control:focus,
.form-select:focus {
    outline: 0;
    box-shadow: none;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.opacity-1 {
    opacity: 1;
}


.site-btn {
    font-size: 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-feature-settings: "calt" off;
    letter-spacing: 0;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
    padding: 12px 24px;
    background: var(--sitly-pink);
    font-weight: 600;
    border-radius: 16px;
    color: var(--sitly-white);
    min-width: 112px;
    text-decoration: none;
    line-height: 18px;
    width: fit-content;
}

.site-btn:hover {
    background: var(--sitly-darkraspberry);
    color: var(--sitly-white);
}

.site-btn img {
    margin-top: -1px;
}

.site-btn.left-icon img {
    margin-right: 8px;
}

.site-btn.right-icon img {
    margin-left: 8px;
}

.site-btn.transparent-purple {
    background: transparent;
    color: var(--sitly-pink);
    border: 2px solid var(--sitly-pink);
}

.site-btn.transparent-purple:hover {
    background: var(--sitly--lightpink);
}

.site-btn.transparent-purple .spinner-border {
    margin-top: 0;
}

.site-btn.transparent-black {
    background: transparent;
    color: var(--sitly-maindarkblue);
    border: 2px solid var(--sitly-maindarkblue);
}

.site-btn.transparent-black:hover {
    background: var(--sitly-brightgray);
}

.site-btn.transparent-black .spinner-border {
    margin-top: 0;
}

.site-btn.small-btn {
    font-size: 14px;
    height: 36px;
    padding: 8px 20px;
    min-width: 77px;
    border-radius: 12px;
}

.site-btn.large-btn {
    background: linear-gradient(133.91deg, var(--sitly-fandango) 21.97%, var(--sitly-byzantine) 74.53%);
    border-radius: 16px;
    padding: 16px 24px;
    height: 56px;
    min-width: 171px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}

.site-btn.large-btn-transparent {
    width: max-content;
    border-radius: 20px;
    padding: 16px 22px;
    height: 56px;
    min-width: 171px;
    color: var(--sitly-pink);
    background: transparent;
    border: 2px solid var(--sitly-pink);
    font-weight: 700;
    font-size: 16px;
}

.site-btn.large-btn-transparent-black {
    width: max-content;
    border-radius: 20px;
    padding: 12px 97px;
    height: 56px;
    min-width: 171px;
    color: var(--sitly-black);
    background: transparent;
    border: 2px solid var(--sitly-black);
    font-weight: 700;
    font-size: 16px;
}

.site-btn.right-icon img {
    width: 12px;
    height: 8px;
}

.site-btn .spinner-border {
    height: 20px;
    width: 20px;
    border-width: 2px;
    margin-top: 2px;
}

.toggle {
    align-items: center;
    border-radius: 100px;
    display: flex;
    font-weight: 700;
    margin-bottom: 16px;
}

.toggle:last-of-type {
    margin: 0;
}

.toggle__input {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.toggle__input:not([disabled]):active+.toggle-track,
.toggle__input:not([disabled]):focus+.toggle-track {
    border: 1px solid transparent;
    box-shadow: 0px 0px 0px 2px var(--sitly-maindarkblue);
}

.toggle__input:disabled+.toggle-track {
    cursor: not-allowed;
    opacity: 0.7;
}

.toggle-track {
    background: var(--sitly-white);
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    height: 30px;
    margin-right: 12px;
    position: relative;
    width: 60px;
}

.toggle-indicator {
    align-items: center;
    background: var(--sitly-maindarkblue);
    border-radius: 24px;
    bottom: 2px;
    display: flex;
    height: 24px;
    justify-content: center;
    left: 2px;
    outline: solid 2px transparent;
    position: absolute;
    transition: 0.2s;
    width: 24px;
}

.checkMark {
    fill: var(--sitly-white);
    height: 20px;
    width: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    position: relative;
    top: -4px;
    left: 4px;
}

.toggle__input:checked+.toggle-track {
    background: var(--sitly-maindarkblue);
}

.toggle__input:checked+.toggle-track .toggle-indicator {
    background: var(--sitly-white);
    transform: translateX(30px);
}

.toggle__input:checked+.toggle-track .toggle-indicator .checkMark {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    fill: var(--sitly-maindarkblue);
}

.form-group.input-material {
    position: relative;
    /* textarea label */
}

.form-group.input-material .action-img {
    position: absolute;
    top: 18px;
    right: 16px;
}

.form-group.input-material .action-img.cross {
    display: none;
}

.form-group.input-material .right-text {
    position: absolute;
    top: 15px;
    right: 16px;
    font-size: 12px;
    color: var(--sitly-lightblue);
    cursor: pointer;
}

.form-group.input-material label {
    color: var(--sitly-darkelectricblue);
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 16px;
    bottom: 12px;
    transition: 0.1s ease all;
    -moz-transition: 0.1s ease all;
    -webkit-transition: 0.1s ease all;
}

.form-group.input-material textarea.form-control~label {
    bottom: 90%;
    bottom: calc(100% - 38px);
}

.ginput_container input,
.ginput_container textarea {
    border: 2px solid var(--sitly-maindarkblue);
    border-radius: 16px;
    background-color: transparent;
    padding-left: 16px !important;
    box-shadow: none;
    min-height: 48px;
    /* active state */
}

.gform_wrapper.gravity-theme .gform_validation_errors {
    background: unset !important;
    border: none !important;
    box-shadow: unset !important;
    padding: 12px 0 !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    color: var(--sitly-darkpink) !important;
    font-size: 14px !important;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border: 2px solid var(--sitly-darkpink) !important;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
    background: unset !important;
    border: none !important;
    margin-top: 0px !important;
    padding: 0 0 0 16px !important;
    font-size: 12px !important;
    line-height: 18px !important;
    text-align: left;
    color: var(--sitly-darkpink) !important;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 12px !important;
}

.ginput_container input::placeholder,
.ginput_container textarea::placeholder {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--sitly-darkelectricblue);
}

.form-group.input-material .form-control,
.form-group.input-material .form-select {
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 16px;
    background-color: transparent;
    padding-left: 16px;
    box-shadow: none;
    min-height: 48px;
    margin-bottom: 12px;
    /* active state */
}

.form-group.input-material .form-control:focus,
.form-group.input-material .form-control[value]:not([value=""]),
.form-group.input-material .form-select:focus,
.form-group.input-material .form-select[value]:not([value=""]) {
    color: var(--sitly-maindarkblue);
    border-width: 1px;
    font-weight: 600;
}

.form-group.input-material .form-control:focus~label,
.form-group.input-material .form-control[value]:not([value=""])~label,
.form-group.input-material .form-select:focus~label,
.form-group.input-material .form-select[value]:not([value=""])~label,
.form-group.input-material .form-control.has__value~label {
    top: unset;
    bottom: 100%;
    bottom: calc(100% - 10px);
    font-size: 12px;
    color: var(--sitly-maindarkblue);
    font-weight: 400;
    background-color: white;
    padding: 0 3px;
}

.form-group.input-material .form-select {
    background-position: right 0 center;
    padding-left: 0;
}

.form-group.error-input-material {
    position: relative;
    /* textarea label */
}

.form-group.error-input-material .action-img {
    position: absolute;
    top: 18px;
    right: 16px;
}

.form-group.error-input-material .action-img.check {
    display: none;
}

.form-group.error-input-material .right-text {
    position: absolute;
    top: 15px;
    right: 16px;
    font-size: 12px;
    color: var(--sitly-lightblue);
    cursor: pointer;
}

.form-group.error-input-material label {
    color: var(--sitly-darkpink);
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 16px;
    bottom: 12px;
    transition: 0.1s ease all;
    -moz-transition: 0.1s ease all;
    -webkit-transition: 0.1s ease all;
}

.form-group.error-input-material textarea.form-control~label {
    bottom: 90%;
    bottom: calc(100% - 38px);
}

.form-group.error-input-material .form-control,
.form-group.error-input-material .form-select {
    border: 1px solid var(--sitly-darkpink);
    border-radius: 16px;
    background-color: transparent;
    padding-left: 16px;
    box-shadow: none;
    min-height: 48px;
    /* active state */
}

.form-group.error-input-material .form-control::placeholder,
.form-group.error-input-material .form-select::placeholder {
    color: var(--sitly-darkelectricblue);
}

.form-group.error-input-material .form-control:focus,
.form-group.error-input-material .form-control[value]:not([value=""]),
.form-group.error-input-material .form-select:focus,
.form-group.error-input-material .form-select[value]:not([value=""]) {
    color: var(--sitly-darkpink);
    border-width: 2px;
    font-weight: 600;
}

.form-group.error-input-material .form-control:focus~label,
.form-group.error-input-material .form-control[value]:not([value=""])~label,
.form-group.error-input-material .form-select:focus~label,
.form-group.error-input-material .form-select[value]:not([value=""])~label {
    top: unset;
    bottom: 100%;
    bottom: calc(100% - 10px);
    font-size: 12px;
    color: var(--sitly-darkpink);
    font-weight: 400;
    background-color: white;
    padding: 0 3px;
}

.form-group.error-input-material .form-select {
    background-position: right 0 center;
    padding-left: 0;
}

.error-message {
    font-size: 14px;
    color: var(--sitly-darkpink);
    text-align: left;
    padding-left: 16px;
    opacity: 0;
}

.fbWarning {
    border-radius: 12px;
    background: var(--neutral-neutral-100, #E8F1F9);
    padding: 12px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.fbWarnInfo {
    flex-direction: column;
    gap: 0px;
}

.fbWarnInfo strong>p {
    margin-bottom: 0;
}

.fbWarnInfo>a {
    text-decoration: underline;
}
a.needHelp {
    color:  #B9439B;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-top: 20px;
    display: block;
    text-align: center;
}
.modal {
    font-size: 16px;
}

.modal .modal-dialog {
    width: 634px;
    max-width: 100%;
}

.modal .modal-dialog .modal-content {
    background: var(--sitly-white);
    border-radius: 24px;
    border: unset;
}

.modal .modal-dialog .modal-content .modal-header {
    border: unset;
    padding: 0;
}

.modal .modal-dialog .modal-content .modal-header .btn-close {
    background: unset;
    opacity: 0.9;
    padding: 35px;
}

.modal .modal-dialog .modal-content .modal-header .btn-close:focus {
    box-shadow: unset;
}

.modal .modal-dialog .modal-content .modal-body {
    padding-top: 32px;
    padding-bottom: 60px;
    overflow: auto;
}

.modal .modal-dialog .modal-content .modal-header .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    text-align: center;
}

.modal .modal-dialog .modal-content .modal-body .sub-title {
    text-align: center;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper {
    width: 380px;
    max-width: 100%;
    margin: auto;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .error {
    color: #C70119;
    font-size: 14px;
    margin-top: -9px;
    margin-left: 16px;
    margin-bottom: 12px !important;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .error.social-error {
    margin-bottom: 40px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .success.social-success {
    margin-bottom: 40px;
    color: var(--sitly-eucalyptus);
    font-size: 14px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .button-row {
    gap: 8px;
    margin: 12px 0 20px;
    flex-direction: column;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .or-wrapper .or {
    gap: 12px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .or-wrapper .or img {
    margin-top: 4px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper {
    margin-top: 20px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .button-wrapper input[type=submit] {
    border-radius: 16px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .forgot-password {
    margin-top: 20px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .forgot-password a {
    color: var(--sitly-pink);
    font-size: 16px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .forgot-password .divider {
    height: 1px;
    background-color: var(--sitly-maindarkblue);
    width: 97px;
    max-width: 100%;
    margin: auto;
    margin-top: 26px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text {
    font-size: 16px;
    margin-top: 20px;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text a {
    color: var(--sitly-pink);
    font-size: 16px;
    font-weight: 600;
    margin-left: 2px;
    text-wrap: nowrap;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text .text {
    text-wrap: nowrap;
}

.modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text .divider {
    height: 1px;
    background-color: var(--sitly-maindarkblue);
    width: 97px;
    max-width: 100%;
    margin: auto;
    margin-top: 26px;
}

.field-wrapper {
    padding-left: 10px;
    padding-right: 10px;
}

.modal.signup-modal .modal-dialog .modal-content .modal-body .title,
.modal.login-modal .modal-dialog .modal-content .modal-body .title,
.modal.forgot-password-modal .modal-dialog .modal-content .modal-body .title {
    margin-bottom: 4px;
    text-align: center;
    font-family: 'Lilita One';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    text-transform: uppercase;
}

.modal.forgot-password-modal .modal-footer{
    border-top: none;
}

.modal.login-modal .modal-dialog .modal-content .modal-body .title {
    margin-bottom: 40px !important;
}

.login-modal .incorrect#emailLogin,
.login-modal .incorrect#passwordLogin,
.forgot-password-modal .incorrect#email,
.signup-modal .incorrect#last-name,
.signup-modal .incorrect#first-name,
.signup-modal .incorrect#emailSignup,
.signup-modal .incorrect#passwordSignup {
    border-color: #C70119;
    color: #C70119;
}

.login-modal label.incorrect,
.forgot-password-modal label.incorrect,
.signup-modal label.incorrect {
    color: #C70119 !important;
}

.login-modal img.error-cross,
.login-modal img.valid-check,
.forgot-password-modal img.error-cross,
.forgot-password-modal img.valid-check,
.signup-modal img.error-cross,
.signup-modal img.valid-check {
    position: absolute;
    top: 16px;
    right: 16px;
}

.modal.signup-modal .modal-dialog .modal-content .modal-body .sub-title {
    margin-bottom: 40px;
    font-size: 14px;
}

.modal.signup-modal .modal-dialog .modal-content .modal-body .last-text {
    margin-top: 20px;
    color: var(--sitly-pewterblue);
    font-size: 12px;
}

.modal.signup-modal .modal-dialog .modal-content .modal-body .last-text a {
    color: var(--sitly-pewterblue);
    text-decoration: underline;
}

.modal.signup-modal .modal-dialog .modal-content .modal-body .input-field-row {
    gap: 8px;
}

.modal.signup-modal .modal-dialog .modal-content .modal-footer {
    border: unset;
}

#sign-up .input-field-row>.input-field {
    width: 50%;
}

;

.modal.reviews-modal .modal-dialog .modal-content .modal-body {
    padding: 0 60px;
    max-height: 100%;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .title {
    margin-bottom: 24px;
    margin-top: 25px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .ratings .images {
    margin-bottom: 4px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .ratings .images span {
    font-size: 18px;
    font-weight: 700;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .ratings .reviews {
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 3px;
    cursor: pointer;
}

.banner-text-wrapper .btn__wrapper a {
    padding: 12px 112px;
    font-size: 16px;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card {
    background: var(--sitly-white);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 16px 17px 16px 20px;
    margin-bottom: 32px;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .title {
    font-weight: 600;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .sub-title {
    font-size: 16px;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .right {
    background-color: var(--sitly-yellow);
    min-height: 48px;
    width: 48px;
    border-radius: 50%;
}

.search-neigh-section {
    margin: 104px 0;
}

.search-neigh-section .neigh-card-row {
    margin: 40px auto !important;
    width: 1078px !important;
    max-width: 100% !important;
    display: flex;
    flex-wrap: wrap;
}

.neigh-card-wrapper {
    width: 33.33%;
    padding-right: calc(var(--bs-gutter-x)*0.5);
    padding-left: calc(var(--bs-gutter-x)*0.5);
}

.search-neigh-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    margin-bottom: 48px;
}

.search-neigh-section .bottom-button-text .text {
    font-weight: 700;
    margin-bottom: 16px;
}

.search-neigh-section .bottom-text {
    font-size: 18px;
    margin-top: 48px;
}

.search-neigh-section .bottom-text a {
    color: var(--sitly-maindarkblue);
    font-weight: 600;
    text-decoration: underline;
}

.banner-text-wrapper .btn__wrapper .first__btn {
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 16px 0px 0px 16px;
}

.banner-text-wrapper .btn__wrapper .second__btn {
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: var(--sitly-maindarkblue);
    border-radius: 0px 16px 16px 0px;
}

.banner-text-wrapper .btn__wrapper a.active {
    background: var(--sitly-maindarkblue);
    color: var(--sitly-white);
    font-weight: 600;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type {
    margin: 24px 0;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type .type {
    height: 48px;
    width: 197px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 0px 16px 16px 0px;
    cursor: pointer;
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: var(--sitly-maindarkblue);
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type .type:first-of-type {
    border-radius: 16px 0px 0px 16px;
    border-width: 1px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type .type.active {
    font-weight: 600;
    background-color: var(--sitly-maindarkblue);
    color: var(--sitly-white);
    border: none;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .rating-description-wrapper {
    padding: 24px 0;
    border-top: 1px solid var(--sitly-brightgray);
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .rating-description-wrapper .images {
    margin-bottom: 4px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .rating-description-wrapper .description p {
    margin-bottom: 4px;
    font-size: 16px;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .rating-description-wrapper .description p span {
    font-weight: 600;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-body .rating-description-wrapper .description p:not(:first-of-type) {
    margin-bottom: 0;
}

.modal.reviews-modal .modal-dialog .modal-content .modal-footer {
    border: unset;
}

.modal.filters-modal .modal-dialog {
    width: 698px;
    max-width: 100%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--sitly-wildblue);
}

.modal.filters-modal .modal-dialog .modal-content .modal-header .btn-close {
    padding: 0 15px 0 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-header .title {
    font-size: 24px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 26.4px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body {
    padding: 24px 32px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper {
    border-bottom: 1px solid var(--sitly-brightgray);
    padding: 32px 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.language-wrapper .wrapper {
    padding-bottom: 15px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper:first-of-type {
    padding-top: 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper:last-of-type {
    border-bottom: unset;
    padding-bottom: 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper {
    width: auto;
    margin: 24px 0 48px;
    flex-wrap: wrap;
    overflow-x: auto;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper {
    width: 100%;
    justify-content: space-between;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper::-webkit-scrollbar {
    display: none;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper .filter-days {
    padding: 8px 12px;
    border-radius: 16px;
    color: var(--sitly-maindarkblue);
    border: 1px solid var(--sitly-maindarkblue);
    cursor: pointer;
    font-size: 16px;
    margin-right: 6px;
    margin-bottom: 8px;
    white-space: nowrap;
    min-width: 88px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.day-filter .action-wrapper .filter-days {
    min-width: 82px !important;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper .filter-days:last-of-type {
    margin-right: 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper .filter-days.active {
    background-color: var(--sitly-maindarkblue);
    color: var(--sitly-white);
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .head {
    margin-bottom: 24px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .head .section-title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 4px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .head .section-sub-title {
    font-size: 14px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row:last-of-type {
    margin-bottom: 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row .wrapper {
    flex-basis: 50%;
    width: 100%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .more {
    margin-top: 24px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .more a {
    color: var(--sitly-maindarkblue);
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper .filter-days .btn-text {
    display: flex;
    justify-content: center;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    overflow-x: auto;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row::-webkit-scrollbar {
    display: none;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row .field-title {
    font-weight: 600;
    font-size: 16px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row .field {
    width: 132px;
    max-width: 100%;
    margin-left: 24px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row .field:first-of-type {
    margin-left: 0;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .selected-days .days-row .field:last-of-type {
    width: fit-content;
    cursor: pointer !important;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.age-group-wrapper .action-wrapper .filter-days {
    min-width: 96px;
    flex-basis: 16.66%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.age-group-wrapper {
    width: 100%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.age-group-wrapper .action-wrapper .filter-days {
    flex-basis: 20%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .section-title {
    margin-bottom: 24px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .wrapper-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .wrapper-row .left .toggle-title {
    font-weight: 600;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .wrapper-row .left .toggle-text {
    font-size: 14px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .action-wrapper .filter-days {
    flex-basis: 20%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row {
    gap: 16px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card {
    flex-basis: 33%;
    align-self: stretch;
    min-height: 130px;
    justify-content: center;
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card .child-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card .child-text {
    color: var(--sitly-darkelectricblue);
    font-size: 14px;
    text-align: left !important;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card .img {
    display: block;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card .active-img {
    display: none;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card.active {
    background-color: var(--sitly-maindarkblue);
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card.active .child-text,
.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card.active .child-card-title {
    color: var(--sitly-white);
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card.active .img {
    display: none;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card.active .active-img {
    display: block;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.children-wrapper .slider-action-wrapper .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: var(--sitly-brightgray);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.children-wrapper .slider-action-wrapper .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sitly-maindarkblue);
    cursor: pointer;
    border: 2px solid var(--sitly-brightgray);
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.children-wrapper .slider-action-wrapper .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sitly-maindarkblue);
    cursor: pointer;
    border: 2px solid var(--sitly-brightgray);
}

.modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.children-wrapper .slider-action-wrapper .slider-values {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.modal.filters-modal .modal-dialog .modal-content .modal-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--sitly-wildblue);
    justify-content: space-between;
}

.modal.filters-modal .modal-dialog .modal-content .modal-footer .clear {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--sitly-maindarkblue);
}

.modal.filters-modal .modal-dialog .modal-content .modal-footer .clear .clear-filter {
    cursor: pointer;
}

.modal.filters-modal .modal-dialog .modal-content .modal-footer .site-btn {
    font-size: 16px;
}

#filtersModal #searchform .modal-body .day-filter-desktop {
    display: block !important;
}

#filtersModal #searchform .modal-body .day-filter-mobile {
    display: none !important;
}

#filtersModal #searchform .modal-body .day-filter-mobile .day-filter {
    flex-basis: 33%;
    align-self: stretch;
    justify-content: center;
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
}

#filtersModal #searchform .modal-body .day-filter-mobile .day-filter .the-day,
#filtersModal #searchform .modal-body .day-filter-mobile .day-filter .form-check {
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-left: 0;
}

#filtersModal #searchform .modal-body .day-filter-mobile .the-day.active {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#filtersModal #searchform .modal-body .day-filter-mobile .form-check-input:checked+.form-check-label {
    font-weight: 700;
}

#filtersModal #searchform .modal-body .day-filter-mobile .field {
    padding-bottom: 10px;
}

#filtersModal #searchform .modal-body .day-filter-mobile .filters {
    margin: 10px 0;
}

#filtersModal #searchform .modal-body .city-filter .results-list p {
    cursor: pointer;
}

#filtersModal #searchform .sitly-input-container {
    margin: 0px !important;
    width: 100%;
}

#filtersModal #searchform .sitly-input-container input{
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--neutral-neutral-900, #22313e);
    background: var(--shades-white, #fff);
}

.modal.login-modal .modal-dialog .modal-content .modal-footer {
    border: unset;
}

.form-check {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-check .form-check-input {
    height: 24px;
    width: 24px;
    margin-right: 12px;
    margin-top: 0;
}

.form-check .form-check-input:checked {
    background-color: var(--sitly-maindarkblue);
    border-color: var(--sitly-maindarkblue);
}

.form-check .form-check-input:focus {
    box-shadow: unset;
    border-color: var(--sitly-maindarkblue);
}

.modal-backdrop {
    background-color: rgba(206, 224, 238, 0.8980392157);
}

.navbar-expand-md .navbar-nav .dropdown-menu {
    top: 57px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: unset !important;
    padding: 0;
}

.dropdown-item {
    padding: 6px 24px;
    color: var(--sitly-maindarkblue);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--sitly-brightgray);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--sitly-maindarkblue);
    background: var(--sitly-brightgray);
}

.header-section {
    position: relative;
    background-color: var(--sitly-white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    padding: 12px 70px;
    width: 100%;
    z-index: 99;
    max-height: 80px;
}

.header-section .vector svg {
    max-width: 100%;
}

.header-section .navbar {
    padding: 0;
}

.header-section .navbar .header__mobile__menu.navbar-nav li.menu-item-has-children:last-child {
    border-bottom: none;
}

.mobile__header .wpml-ls-legacy-list-horizontal>ul>li:nth-child(3):before {
    display: none;
}

.header-section .navbar .mobile-toggle .mobile-dropdown-item {
    display: none;
}

.header-section .navbar .mobile-toggle .mobile-dropdown-item .dropdown-toggle::after {
    display: none;
}

.header-section .navbar .mobile-toggle .mobile-dropdown-item .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: unset;
}

.header-section .navbar .mobile-toggle .navbar-toggler {
    display: none;
    justify-content: center;
    align-items: center;
    height: 33px;
    width: 36px;
    padding: 0px;
    line-height: 26px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

.header-section .navbar .mobile-toggle .navbar-toggler img {
    height: auto;
}

.header-section .navbar .mobile-toggle .navbar-toggler:focus {
    outline: none !important;
    box-shadow: unset;
}

.header-section .navbar .dropdown-toggle {
    display: flex;
    align-items: center;
}

.header__menu>li.menu-item-has-children>a:after {
    border: none;
    background-image: url("/wp-content/themes/sitly__theme/assets/images/chevron-down-black.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    transition: 200ms;
}

.header__menu>li.menu-item-has-children>a.show::after {
    transform: rotate(180deg);
    transition: .2s;
}

.header-section .navbar .dropdown-toggle::after {
    border: none;
    background-image: url("/wp-content/themes/sitly__theme/assets/images/chevron-down-black.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    margin-left: 5px;
    transition: 200ms;
}

.header-section .navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
    transition: 200ms;
}

.header-section .navbar .back-btn-con .back-btn {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sitly-maindarkblue);
}

.header-section .navbar .navbar-brand img {
    height: auto;
    width: 75px;
}

.header-section .navbar .navbar-nav .nav-item {
    margin: 0 40px 0 0;
    display: flex;
    align-items: center;
}

.header-section .login__header {
    margin-right: 20px !important;
}

.header-section .navbar .navbar-nav .nav-item:last-of-type {
    margin-right: 0;
}

.header-section .navbar .navbar-nav .nav-item:nth-child(5) {
    border: none;
}

.header-section .navbar .navbar-nav .nav-item .nav-link {
    color: var(--sitly-maindarkblue);
    padding: 21px 0;
    font-size: 14px;
    font-family: "Open Sans";
    font-weight: 600;
}

.header-section .vector {
    position: absolute;
    bottom: -12px;
    width: 100%;
    left: -70px;
}

.header-section.job-city-header-section .navbar-nav .no-border,
.header-section.job-theme-header-section .navbar-nav .no-border {
    border: unset;
}


.footer-link-section {
    padding: 80px 0;
    border-width: 1px 0;
    border-color: var(--sitly-beaublue);
    border-style: solid;
}

.footer-link-section .footer-link-wrapper {
    width: 1078px;
    max-width: 100%;
    margin: auto;
}

.footer-link-section .footer-link-wrapper .social-link-wrapper .social-links {
    display: none;
}

.footer-link-section .footer-link-wrapper .social-link-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 8px;
}

.footer-link-section .footer-link-wrapper .social-link-wrapper ul li {
    margin-bottom: 8px;
}

.footer-link-section .footer-link-wrapper .social-link-wrapper ul li:last-of-type {
    margin-bottom: 0;
}

.footer-link-section .footer-link-wrapper .social-link-wrapper ul li a {
    font-size: 16px;
}

.bottom-footer-section {
    padding: 34px 0;
}

.bottom-footer-section .bottom-footer-wrapper {
    width: 1078px;
    max-width: 100%;
    margin: auto;
}

.bottom-footer-section .bottom-footer-wrapper .row {
    align-items: center;
}

.bottom-footer-section .bottom-footer-wrapper .left-footer ul li {
    position: relative;
}

.bottom-footer-section .bottom-footer-wrapper .left-footer ul li a {
    font-size: 16px;
}

.bottom-footer-section .bottom-footer-wrapper .left-footer div#nav_menu-4 ul li:nth-of-type(2) {
    margin: 0 26px;
}

.bottom-footer-section .bottom-footer-wrapper .left-footer div#nav_menu-4 ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    left: -13px;
    border-radius: 50%;
}

.bottom-footer-section .bottom-footer-wrapper .left-footer div#nav_menu-4 div#nav_menu-4ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    right: -13px;
    border-radius: 50%;
}

.bottom-footer-section .bottom-footer-wrapper .mid-footer .btn {
    display: flex;
    align-items: center;
}

.bottom-footer-section .bottom-footer-wrapper .mid-footer .btn:focus {
    box-shadow: unset;
}

.bottom-footer-section .bottom-footer-wrapper .mid-footer .btn::after {
    border: none;
    background-image: url("/wp-content/themes/sitly__theme/assets/images/chevron-down-black.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    margin-left: 5px;
}

.bottom-footer-section .bottom-footer-wrapper .mid-footer .text {
    font-weight: 600;
    font-size: 16px;
}

.bottom-footer-section .bottom-footer-wrapper .right-footer ul li {
    display: flex;
    gap: 24px;
}

.radius-vector-section .top-vector {
    position: absolute;
    top: -27px;
    left: 0;
    min-height: 30px;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.radius-vector-section .bottom-vector svg,
.radius-vector-section .top-vector img,
.bottom-vector img,
.radius-vector-section .top-vector svg {
    width: 100%;
}

.radius-vector-section .bottom-vector {
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 100%;
    z-index: 1;
    min-height: 30px;
    display: flex;
    align-items: flex-start;
}

.radius-vector-section:has(+ .radius-vector-section) {
    margin-bottom: -32px;
    z-index: 999;
}

.radius-vector-section:has(+ .radius-vector-section) .bottom-vector{
    z-index: 0 !important;
}

.baby-sitters-detail-section {
    margin: 70px 0 150px;
}

.baby-sitters-detail-section .section-heading .title,
.seo-section .seo-details-wrapper .details-wrapper .title,
.baby-sitters-detail-section .section-heading h3.title {
    font-size: 36px !important;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px !important;
    margin-bottom: 24px;
}

.baby-sitters-detail-section .section-heading .title {
    padding-right: calc(var(--bs-gutter-x)*0.5);
    padding-left: calc(var(--bs-gutter-x)*0.5);
}

.baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper {
    gap: 8px;
}

.baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters {
    min-width: 94px;
    height: 48px;
    padding: 8px 16px;
    border-radius: 16px;
    color: var(--sitly-maindarkblue);
    border: 1px solid var(--sitly-maindarkblue);
    cursor: pointer;
    background: unset;
}

.baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters.active {
    background-color: var(--sitly-maindarkblue);
    color: var(--sitly-white);
}

.baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters.with-img img {
    margin-left: 8px;
    margin-top: 1px;
}

.baby-sitters-detail-section .section-heading .filter-wrapper .results {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
}

.baby-sitters-detail-section .sitter-card-row {
    margin-top: 24px !important;
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.baby-sitters-detail-section .sitter-card-wrapper {
    width: 25%;
    padding-right: calc(var(--bs-gutter-x)*0.5);
    padding-left: calc(var(--bs-gutter-x)*0.5);
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card {
    background: var(--sitly-white);
    box-shadow: 0 0 16px rgba(14, 39, 63, 0.18);
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 32px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img {
    height: 260px;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images {
    height: 25px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images img,
.slider-section .sitter-card .rating-images img {
    height: 16px;
}

.day img {
    min-width: 13px;
    min-height: 13px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(355.82deg, rgba(0, 0, 0, 0.444) 12.6%, rgba(0, 0, 0, 0) 56.73%, rgba(0, 0, 0, 0.432) 91.78%);
    border-radius: 16px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .top-text {
    position: absolute;
    color: var(--sitly-white);
    top: 16px;
    left: 16px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .top-text .title {
    font-size: 18px;
    color: var(--sitly-white);
    font-weight: 700;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text {
    position: absolute;
    color: var(--sitly-white);
    bottom: 16px;
    left: 16px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text p {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text p {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text .online,
.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text .online,
.babysitter-profile-section .avatar .online {
    background: #219B80;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text .days__ago,
.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text .days__ago,
.babysitter-profile-section .avatar .days__ago {
    background: #F59E0B;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text .months__ago,
.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text .months__ago,
.babysitter-profile-section .avatar .months__ago {
    background: #BCD0E0;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img .bottom-text .circle {
    min-height: 14px;
    width: 14px;
    background-color: var(--sitly-eucalyptus);
    border-radius: 50%;
    margin-right: 4px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images span {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .details {
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: 12px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .details p {
    margin-bottom: 0;
}

.stand-section .stand-right p {
    margin-bottom: 0;
    text-transform: lowercase;
}

html[lang='de-DE'] .stand-section .stand-right p {
    text-transform: unset;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .details .price,
.slider-section .sitter-card .details .price {
    font-size: 16px;
    font-weight: 700;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .details p .circle {
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper::-webkit-scrollbar {
    display: none;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day {
    background: var(--sitly-maindarkblue);
    border-right: 2px solid var(--sitly-white);
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    padding: 2px 6px 6px 6px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day p {
    color: var(--sitly-white);
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day:first-of-type {
    border-radius: 12px 0 0 12px;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day:last-of-type {
    border-radius: 0 12px 12px 0;
    border-right: unset;
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day.not-active {
    background-color: var(--sitly-brightgray);
}

.baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day.not-active p {
    color: var(--sitly-wildblue);
    font-weight: 400;
}

.baby-sitters-detail-section .button-wrapper {
    margin-top: 15px;
}

.sitters-map-section {
    margin-bottom: 170px;
    margin-top: 20px;
}

.hear-parent-section .section-heading .title,
.sitters-map-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
}

.sitters-map-section .section-heading .sub-title {
    font-size: 18px;
}

.sitters-map-section .map-wrapper {
    margin: 40px 0;
}

.sitters-map-section .map-wrapper .map-container {
    overflow: hidden;
    position: relative;
    height: 440px;
}

.sitters-map-section .map-wrapper .map-container iframe {
    left: 0;
    top: 0;
    height: 440px;
    width: 100%;
    position: absolute;
    border-radius: 24px;
}

.sitters-map-section .bottom-text a {
    color: var(--sitly-maindarkblue);
    font-weight: 600;
    text-decoration: underline;
}

.time-work-section {
    background: var(--sitly-yellow);
    position: relative;
    padding: 127px 0 70px;
}

.time-work-section .top-vector {
    top: -21px;
}

.time-work-section .accordion-button span.ms-2 svg {
    transform: rotate(180deg);
    transition: 0.3s;
}

.time-work-section .accordion-button.collapsed span.ms-2 svg {
    transform: rotate(0deg);
    transition: 0.3s;
}

.time-work-section .img-wrapper {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.time-work-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    width: 438px;
    max-width: 100%;
    margin: auto;
}

.time-work-section .section-heading .title span {
    color: var(--sitly-pink);
}

.time-work-section .details-row {
    margin: 40px auto;
    width: 1078px;
    max-width: 100%;
}

.time-work-section .details-row .time-work-details {
    padding: 0;
    align-self: stretch;
}

.time-work-section .details-row .time-work-details .details {
    text-align: center;
}

.time-work-section .details-row .time-work-details .details h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 8px;
    min-height: 54px;
}

.time-work-section .details-row .time-work-details .details .img {
    margin-bottom: 12px;
}

.time-work-section .details-row .time-work-details .details .img img {
    max-height: 69px;
}

.time-work-section .details-row .time-work-details:nth-of-type(2) {
    padding: 0 50px;
}

.time-work-section .bottom-button-text .text {
    font-weight: 700;
    margin-bottom: 16px;
}

.time-work-section .mobile-read-more-btn {
    text-align: center;
    margin-top: 24px;
    display: none;
}

.time-work-section .mobile-read-more-btn a {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--sitly-pink);
}

.hear-parent-section {
    background-color: var(--sitly-paleblue);
    padding: 113px 0 80px;
    position: relative;
}

.hear-parent-section .section-heading {
    margin-bottom: 40px;
}

.hear-parent-section .hear-parent-wrapper .left-img .thumbnail-text,
.hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text {
    position: absolute;
}

.hear-parent-section .hear-parent-wrapper .left-img,
.hear-parent-section .hear-parent-wrapper .right-img .img-wrapper,
.qa-section,
.seo-section {
    position: relative;
}

.hear-parent-section .hear-parent-wrapper .left-img .thumbnail-text .text,
.hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text .text {
    font-size: 24px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 26.4px;
    color: var(--sitly-white);
}

.hear-parent-section .hear-parent-wrapper .left-img .thumbnail-text a,
.hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text a {
    color: var(--sitly-white);
    text-decoration: underline;
    font-weight: 600;
}

.hear-parent-section .hear-parent-wrapper .left-img .thumbnail-text {
    bottom: 37px;
    left: 50px;
    padding-right: 40px;
}

.hear-parent-section .hear-parent-wrapper .left-img .img-wrapper img {
    height: 550px;
}

.hear-parent-section .hear-parent-wrapper .right-img .img-wrapper:first-of-type {
    margin-bottom: 29px;
}

.hear-parent-section .hear-parent-wrapper .right-img .img-wrapper img {
    height: 264px;
}

.hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text {
    bottom: 25px;
    left: 29px;
}

.hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text.thumbnail-text-top .text {
    padding-right: 40px;
}

.qa-section {
    padding: 70px 0 80px;
    background: var(--sitly-waterblue);
}

.qa-section .qa-left .qa-details {
    width: 402px;
    max-width: 100%;
    margin: auto;
}

.qa-section .qa-left .qa-details .title {
    font-size: 42px !important;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 46.2px !important;
    margin-bottom: 40px;
}

.qa-section .qa-left .qa-details .img-wrapper img {
    height: 166px;
}

.qa-section .qa-right .qa-details .accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-top: 1px solid var(--sitly-pewterblue);
    border-radius: unset;
}

.qa-section .qa-right .qa-details .accordion .accordion-item:last-of-type {
    border-bottom: 1px solid var(--sitly-pewterblue);
}

.qa-section .qa-right .qa-details .accordion .accordion-item .accordion-header .accordion-button {
    background-color: transparent;
    font-weight: 700;
    padding: 40px 0;
}

.qa-section .qa-right .qa-details .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: unset;
}

.qa-section .qa-right .qa-details .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--sitly-maindarkblue);
    box-shadow: unset;
}

.qa-section .qa-right .qa-details .accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: url("/wp-content/themes/sitly__theme/assets/images/chevron-down-black.svg");
    transition: 0.2s;
    transform-origin: center center;
}

.qa-section .qa-right .qa-details .accordion .accordion-item .accordion-body {
    padding: 0 0 16px;
}

.qa-section .qa-right .qa-details .bottom-title {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 8px;
}

.qa-section .qa-right .qa-details p a {
    text-decoration: underline;
}

.seo-section {
    background: var(--sitly-paleblue);
    padding: 91px 0 60px;
}

.seo-section .seo-details-wrapper,
.stand-section .stand-details-wrapper {
    width: 1078px;
    max-width: 100%;
    margin: auto;
}

.seo-section .seo-details-wrapper .details-wrapper .sub-title {
    font-size: 24px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 26.4px;
    margin-bottom: 6px;
}

.seo-section .seo-details-wrapper .details-wrapper p {
    margin-bottom: 24px;
}

.seo-section .seo-details-wrapper .details-wrapper .moreless-button {
    font-weight: 600;
    border-bottom: 1px solid var(--sitly-maindarkblue);
}

.seo-section .moretext {
    display: none;
}

.stand-section {
    padding: 106px 0 80px;
}

.stand-section .stand-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.stand-section .stand-right .title {
    font-size: 28px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 30.8px;
    margin-bottom: 20px;
}

.banner-section-blue {
    background-image: url("../../assets/images/banner-bg.png");
    background-position: center;
    background-size: 100% 100%;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.banner-section-blue .detail-wrapper,
.banner-section-yellow .detail-wrapper {
    width: 103%;
}

.banner-section-blue .home-banner-left,
.banner-section-yellow .home-banner-left {
    display: flex;
    align-items: center;
    min-height: 492px;
}

.banner-section-blue .home-banner-right .img-wrapper,
.banner-section-yellow .home-banner-right .img-wrapper {
    position: relative;
    height: 100%;
}

.banner-section-blue .home-banner-left .detail-wrapper .title,
.banner-section-yellow .home-banner-left .detail-wrapper .title {
    width: calc(100% - 7px);
    font-size: 45px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 52.4px;
    line-height: 52px;
    position: relative;
    z-index: 1;
}

.banner-section-blue .home-banner-left .detail-wrapper .title span,
.banner-section-yellow .home-banner-left .detail-wrapper .title span,
.sub-banner-section .sub-banner-right .detail-wrapper .title span {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: max-content;
}

.banner-section-blue .home-banner-left .detail-wrapper .title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 7px;
    background: rgba(255, 229, 78, 0.6);
    height: 37px;
    width: 100%;
    z-index: -1;
}

.banner-section-blue .home-banner-left .detail-wrapper .title span::after,
.banner-section-yellow .home-banner-left .detail-wrapper .title span::after,
.sub-banner-section .sub-banner-right .detail-wrapper .title span::after {
    width: 13px;
    height: 40px;
    content: "";
    background-image: url(/wp-content/themes/sitly__theme/assets/images/yellow-bar.svg);
    background-size: 13px 40px;
    position: absolute;
    bottom: -3px;
}

.banner-section-yellow .home-banner-left .detail-wrapper .title span::after,
.sub-banner-section .sub-banner-right .detail-wrapper .title span::after {
    background-image: url(/wp-content/themes/sitly__theme/assets/images/blue-bar.svg);
}

.sub-banner-section .sub-banner-right .detail-wrapper .title span::after {
    bottom: 0;
    height: 26px;
    background-size: 13px 26px;
}

.banner-section .home-banner-left .detail-wrapper .title img,
.banner-section-blue .home-banner-left .detail-wrapper .title img {
    display: none;
    margin-left: -7px;
    margin-top: 7px;
}

.banner-section-blue .home-banner-left .detail-wrapper .list-wrapper,
.banner-section-yellow .home-banner-left .detail-wrapper .list-wrapper {
    margin: 20px 0 32px;
    list-style: disc;
    padding-left: 22px;
}

.banner-section-blue .home-banner-left .detail-wrapper .list-wrapper li,
.banner-section-yellow .home-banner-left .detail-wrapper .list-wrapper li {
    color: var(--sitly-darkgunmetal);
    line-height: 30px;
}


.banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .button,
.banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .button {
    margin-right: 16px;
}

.banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images,
.banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images {
    margin-bottom: 4px;
    height: 25px;
}

.banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span,
.banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
    font-size: 18px;
    font-weight: 700;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews,
.banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews {
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 3px;
    cursor: pointer;
    background: unset;
    border: none;
    padding-left: 0px;
    padding-right: 0px;
}

.banner-section-blue .home-banner-left .detail-wrapper .text-with-link,
.banner-section-yellow .home-banner-left .detail-wrapper .text-with-link {
    font-size: 13px;
    color: var(--sitly-darkgunmetal);
    line-height: 30px;
    font-weight: 500;
    margin-top: 10px;
    width: 100%;
}

.banner-section-blue .home-banner-left .detail-wrapper .text-with-link a,
.banner-section-yellow .home-banner-left .detail-wrapper .text-with-link a {
    text-decoration: underline;
}


.banner-section-blue .home-banner-right .img-wrapper img,
.banner-section-yellow .home-banner-right .img-wrapper img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -20px;
}

.sub-banner-section {
    margin-top: -34px;
    padding-top: 100px;
    background: var(--sitly-yellow);
    position: relative;
}

.sub-banner-section .bottom-vector {
    position: absolute;
    bottom: -25px;
    width: 100%;
    z-index: -1;
}

.sub-banner-section .sub-banner-left {
    margin-top: 15px;
    position: relative;
    min-height: 250px;
}

.sub-banner-section .sub-banner-left img {
    width: 90%;
    height: auto;
    position: absolute;
    bottom: -35px;
    left: 0;
}

.sub-banner-section .sub-banner-right {
    margin-top: 32px;
    padding-left: 23px;
}

.sub-banner-section .sub-banner-right .detail-wrapper .title {
    font-size: 28px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 30.8px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.sub-banner-section .sub-banner-right .detail-wrapper .title span::before {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 5px;
    left: 3px;
    background: rgba(165, 208, 243, 0.8);
    height: 23px;
    width: 100%;
    z-index: -1;
}

.sub-banner-section .sub-banner-right .detail-wrapper .title img {
    display: none;
    margin-left: -7px;
}

.sub-banner-section .sub-banner-right .detail-wrapper div {
    font-size: 18px;
    font-family: "Inter";
}

.sub-banner-section .sub-banner-right .detail-wrapper .site-btn {
    margin-bottom: 80px;
}

.banner-section-blue.reverse .title,
.banner-section-yellow.reverse .title {
    margin-bottom: 24px;
}

.banner-section {
    background-image: url("../../assets/images/yellow-contact-banner-bg.png");
    background-position: center;
    background-size: 100% 100%;
    margin-top: 80px;
    margin-bottom: 184px;
    position: relative;
    z-index: 1;
}

.banner-section .img-wrapper {
    position: absolute;
    top: 80px;
}

.banner-section .home-banner-left .detail-wrapper .title {
    font-size: 48px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 52px;
    margin-bottom: 14px;
}

.banner-section .home-banner-left .detail-wrapper .text {
    font-size: 20px;
    color: var(--sitly-maindarkblue);
}

.about-details-section {
    margin: 130px 110px;
}

.about-details-section .about-details-row {
    max-width: 863px;
    margin: auto;
}

.about-details-section .about-details-wrapper .about-details-row .about-details {
    color: var(--sitly-pink);
    text-align: center;
}

.about-details-section .about-details-wrapper .about-details-row .about-details .sm-title {
    font-size: 18px;
    font-weight: 700;
}

.about-details-section .about-details-wrapper .about-details-row .about-details .bg-title {
    font-family: "Lilita One";
    font-size: 100px;
    line-height: 100px;
    text-transform: uppercase;
    min-height: 114px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.about-details-section .about-details-wrapper .about-details-row .about-details .bg-title span {
    font-size: 60px;
    line-height: 100px;
    align-self: flex-end;
    margin-bottom: -5px;
}

.about-details-section .about-details-wrapper .about-details-row .about-details .text {
    font-size: 16px;
    color: var(--sitly-maindarkblue);
    text-align: center;
    max-width: 177px;
    font-style: italic;
    margin: auto;
}

.text-image-section .text-image-wrapper {
    margin: 70px auto;
    align-items: flex-start !important;
}

.text-image-section .text-image-wrapper .left {
    margin-right: -195px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.page-template-template__about .text-image-section .text-image-wrapper .left{
    max-width: 729px;
    aspect-ratio: 729 / 632;
    width: 60%;
    text-align: center;
}

.text-image-section .text-image-wrapper .right {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="512" preserveAspectRatio="none" viewBox="0 0 800 512" fill="none"><path d="M749.722 499.96C821.909 486.477 801.317 114.839 779.859 40.4643C728.198 -25.1497 49.1932 4.053 32.5808 24.2602C15.9684 44.4673 -31.5856 481.525 32.5808 499.96C96.7472 518.394 677.535 513.443 749.722 499.96Z" fill="%23B0D7F6"/></svg>');
    background-position: center;
    background-size: 100% 100%;
    width: 790px;
    max-width: 100%;
    padding: 84px 51px 71px 238px;
}

.text-image-section .text-image-wrapper .right .text {
    font-size: 20px;
    color: var(--sitly-maindarkblue);
}

.text-image-section .text-image-wrapper .right .name {
    font-size: 24px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 26.4px;
    color: var(--sitly-maindarkblue);
    margin-top: 15px;
}

.text-image-section.text-image-left-section {
    margin: 70px auto 140px;
}

.text-image-section.text-image-left-section .left {
    background-image: url("../../assets/images/yellow-text-img-bg.png");
    background-position: center;
    background-size: 100% 100%;
    width: 790px;
    max-width: 100%;
    padding: 84px 238px 71px 62px;
}

.text-image-section.text-image-left-section .left .text {
    font-size: 20px;
    color: var(--sitly-maindarkblue);
}

.text-image-section .text-image-wrapper .step {
    font-family: "Lilita One";
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-image-section.text-image-left-section .left .name {
    font-size: 24px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 26.4px;
    color: var(--sitly-maindarkblue);
    margin-top: 15px;
}

.banner-section .home-banner-left {
    padding: 97px 0;
}

.banner-section-blue .home-banner-left .detail-wrapper .banner-route-wrapper,
.banner-section-yellow .home-banner-left .detail-wrapper .banner-route-wrapper {
    margin-top: -35px;
    padding-bottom: 35px;
}

.banner-section-blue .home-banner-left .detail-wrapper .banner-route-wrapper .route:nth-of-type(2),
.banner-section-yellow .home-banner-left .detail-wrapper .banner-route-wrapper .route:nth-of-type(2) {
    margin: 0 6px;
}

.slider-section {
    margin-top: 80px;
    margin-bottom: 150px;
}

.slider-section .custom-arrow.custom-next-arrow {
    right: -10px;
    background-image: url("../../assets/images/next-icon.svg");
}

.slider-section .custom-arrow.custom-prev-arrow {
    left: -10px;
    background-image: url("../../assets/images/next-icon.svg");
    transform: translateY(-50%) rotate(180deg) !important;
}

.slider-section .sitter-card {
    background: var(--sitly-white);
    box-shadow: 0px 0px 16px rgba(14, 39, 63, 0.18);
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 32px;
}

.slider-section .sitter-card .thumbnail-img {
    height: 260px;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

.slider-section .sitter-card .thumbnail-img img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.slider-section .sitter-card .thumbnail-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(355.82deg, rgba(0, 0, 0, 0.444) 12.6%, rgba(0, 0, 0, 0) 56.73%, rgba(0, 0, 0, 0.432) 91.78%);
    border-radius: 16px;
}

.slider-section .sitter-card .days-wrapper .day {
    background: var(--sitly-maindarkblue);
    border-right: 2px solid var(--sitly-white);
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    padding: 2px 6px 6px 6px;
}


.banner-section-yellow {
    background-image: url("../../assets/images/banner-yellow-bg.png");
    background-position: center;
    background-size: 100% 100%;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left {
    margin-top: 32px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title {
    font-size: 48px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 52.4px;
    line-height: 52px;
    position: relative;
    z-index: 1;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title span {
    position: relative;
    display: inline-block;
}

.banner-section-yellow .home-banner-left .detail-wrapper .title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 7px;
    background: var(--sitly-waterblue);
    height: 37px;
    width: 100%;
    z-index: -1;
}

.banner-section-yellow .home-banner-left .detail-wrapper .title img {
    display: none;
    height: 37px;
    margin-top: -2px;
    margin-left: -7px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .list-wrapper {
    margin: 20px 0 32px;
    list-style: disc;
    padding-left: 22px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .list-wrapper li {
    font-size: 18px;
    color: var(--sitly-darkgunmetal);
    line-height: 30px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .button {
    margin-right: 16px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images {
    margin-bottom: 4px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
    font-size: 18px;
    font-weight: 700;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews {
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 3px;
    cursor: pointer;
}

.page-template-template__babysitter__city__job .banner-section .home-banner-right .img-wrapper img {
    height: 465px;
}

.page-template-template__babysitter__city__job .slider-section {
    margin-top: 80px;
}

.page-template-template__babysitter__city__job .slider-section .container-fluid {
    padding: 0 30px;
}

.page-template-template__babysitter__city__job .slider-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    margin-bottom: 8px;
}

.page-template-template__babysitter__city__job .slider-section .slider-card-wrapper {
    padding: 0 8px;
}

.page-template-template__babysitter__city__job .slider-section .slider {
    padding: 0;
}

.page-template-template__babysitter__city__job .slider-section .slider .slick-track {
    padding: 24px 0;
}

.page-template-template__babysitter__city__job .slider-section .custom-arrow {
    position: absolute;
    top: 40%;
    width: 71px;
    height: 94px;
    background-color: var(--sitly-yellow);
    background-size: 100% 51px;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    border: unset;
    border-radius: 17px 0px 0px 17px;
}

.page-template-template__babysitter__city__job .slider-section .custom-arrow.custom-next-arrow {
    right: -10px;
    background-image: url("../../assets/images/next-icon.svg");
}

.page-template-template__babysitter__city__job .slider-section .custom-arrow.custom-prev-arrow {
    left: -10px;
    background-image: url("../../assets/images/next-icon.svg");
    transform: translateY(-50%) rotate(180deg);
}

.page-template-template__babysitter__city__job .slider-section .sitter-card {
    background: var(--sitly-white);
    box-shadow: 0px 0px 16px rgba(14, 39, 63, 0.18);
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 32px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img {
    height: 260px;
    width: 100%;
    position: relative;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(355.82deg, rgba(0, 0, 0, 0.444) 12.6%, rgba(0, 0, 0, 0) 56.73%, rgba(0, 0, 0, 0.432) 91.78%);
    border-radius: 16px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img .top-text {
    position: absolute;
    color: var(--sitly-white);
    top: 16px;
    left: 16px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img .top-text .title {
    font-size: 18px;
    color: var(--sitly-white);
    font-weight: 700;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img .bottom-text {
    position: absolute;
    color: var(--sitly-white);
    bottom: 16px;
    left: 16px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .thumbnail-img .bottom-text .circle {
    min-height: 14px;
    width: 14px;
    background-color: var(--sitly-eucalyptus);
    border-radius: 50%;
    margin-right: 4px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .rating-images {
    margin-top: 12px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .rating-images span {
    font-size: 16px;
    font-weight: 600;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .details {
    margin-top: 3px;
    margin-bottom: 12px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .details p {
    margin-bottom: 0;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .details p span {
    font-weight: 600;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .details p .circle {
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .days-wrapper .day p {
    color: var(--sitly-aeroblue);
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .days-wrapper .day:first-of-type {
    border-radius: 12px 0px 0px 12px;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .days-wrapper .day:last-of-type {
    border-radius: 0px 12px 12px 0px;
    border-right: unset;
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .days-wrapper .day.not-active {
    background-color: var(--sitly-brightgray);
}

.page-template-template__babysitter__city__job .slider-section .sitter-card .days-wrapper .day.not-active p {
    color: var(--sitly-wildblue);
}

.page-template-template__babysitter__city__job .sitters-map-section {
    margin-bottom: 121px;
}

.page-template-template__babysitter__city__job .sitters-map-section .map-wrapper {
    margin: 70px 0;
}

.page-template-template__babysitter__city__job .sitters-map-section .bottom-text {
    font-size: 18px;
}

.page-template-template__babysitter__city__job .time-work-section {
    background: var(--sitly-paleblue);
}

.page-template-template__babysitter__city__job .hear-parent-section {
    background-color: var(--sitly-yellow);
}

.page-template-template__babysitter__city__job .stand-section {
    padding: 106px 0 80px;
}

.page-template-template__babysitter__city__job .stand-section .stand-details-wrapper {
    width: 1078px;
    max-width: 100%;
    margin: auto;
}

.page-template-template__babysitter__city__job .stand-section .stand-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.page-template-template__babysitter__city__job .stand-section .stand-right .title {
    font-size: 28px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 30.8px;
    margin-bottom: 20px;
}

.page-template-template__babysitter__city__job .stand-section .stand-right p {
    margin-bottom: 0;
    text-align: left;
}

.page-template-template__oppasjob .banner-section {
    background-image: url("../../assets/images/banner-bg.png");
    background-position: center;
    background-size: 100% 100%;
    min-height: 492px;
    margin-top: 50px;
    padding-top: 52px;
    position: relative;
    z-index: 1;
}

.banner-section-yellow .rating__stars__value svg path {
    fill: #22313E;
}

.page-template-template__oppasjob .banner-section .home-banner-left {
    margin-top: 32px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title {
    font-size: 48px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 52.4px;
    line-height: 52px;
    position: relative;
    z-index: 1;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title span {
    position: relative;
    display: inline-block;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 7px;
    background: rgba(255, 229, 78, 0.6);
    height: 37px;
    width: 100%;
    z-index: -1;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .list-wrapper {
    margin: 20px 0 32px;
    list-style: disc;
    padding-left: 22px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .list-wrapper li {
    color: var(--sitly-darkgunmetal);
    line-height: 30px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .button {
    margin-right: 16px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images {
    margin-bottom: 4px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
    font-size: 18px;
    font-weight: 700;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews {
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 3px;
    cursor: pointer;
}

.page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper img {
    height: 465px;
}

.page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper .mob-img {
    display: none;
}

.page-template-template__oppasjob .slider-section {
    margin-top: 80px;
}

.page-template-template__oppasjob .slider-section .container-fluid {
    padding: 0 30px;
}

.page-template-template__oppasjob .slider-section .section-heading {
    padding: 0 60px;
}

.page-template-template__oppasjob .slider-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    margin-bottom: 24px;
}

.page-template-template__oppasjob .slider-section .section-heading .filter-wrapper .action-wrapper {
    gap: 8px;
}

.page-template-template__oppasjob .slider-section .section-heading .filter-wrapper .action-wrapper .filters {
    min-width: 94px;
    height: 48px;
    padding: 8px 16px;
    border-radius: 16px;
    color: var(--sitly-maindarkblue);
    border: 1px solid var(--sitly-maindarkblue);
    cursor: pointer;
}

.page-template-template__oppasjob .slider-section .section-heading .filter-wrapper .action-wrapper .filters.active {
    background-color: var(--sitly-maindarkblue);
    color: var(--sitly-white);
    font-weight: 700;
}

.page-template-template__oppasjob .slider-section .section-heading .filter-wrapper .action-wrapper .filters.with-img img {
    margin-left: 8px;
    margin-top: 1px;
}

.page-template-template__oppasjob .slider-section .section-heading .filter-wrapper .results {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
}

.page-template-template__oppasjob .slider-section .slider-card-wrapper {
    padding: 0 8px;
}

.page-template-template__oppasjob .slider-section .slider {
    padding: 0;
}

.page-template-template__oppasjob .slider-section .slider .slick-track {
    padding: 24px 0;
}


.sitter-card-wrapper.slick-slide {
    padding: 0 8px;
}

.page-template-template__oppasjob .slider-section .custom-arrow {
    position: absolute;
    top: 40%;
    width: 71px;
    height: 94px;
    background-color: var(--sitly-yellow);
    background-size: 100% 51px;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    border: unset;
    border-radius: 17px 0px 0px 17px;
}

.page-template-template__oppasjob .slider-section .custom-arrow.custom-next-arrow {
    right: -10px;
    background-image: url("../../assets/images/next-icon.svg");
}

.page-template-template__oppasjob .slider-section .custom-arrow.custom-prev-arrow {
    left: -10px;
    background-image: url("../../assets/images/next-icon.svg");
    transform: translateY(-50%) rotate(180deg);
}

.page-template-template__oppasjob .slider-section .sitter-card {
    background: var(--sitly-white);
    box-shadow: 0px 0px 16px rgba(14, 39, 63, 0.18);
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 32px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img {
    height: 260px;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(355.82deg, rgba(0, 0, 0, 0.444) 12.6%, rgba(0, 0, 0, 0) 56.73%, rgba(0, 0, 0, 0.432) 91.78%);
    border-radius: 16px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .top-text {
    position: absolute;
    color: var(--sitly-white);
    top: 16px;
    left: 16px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .top-text .title {
    font-size: 18px;
    color: var(--sitly-white);
    font-weight: 700;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text {
    position: absolute;
    color: var(--sitly-white);
    bottom: 16px;
    left: 16px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text p {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
}

.page-template-template__oppasjob .slider-section .sitter-card .thumbnail-img .bottom-text .circle {
    min-height: 14px;
    width: 14px;
    background-color: var(--sitly-eucalyptus);
    border-radius: 50%;
    margin-right: 4px;
}

.page-template-template__oppasjob .slider-section .sitter-card .rating-images {
    margin-top: 12px;
}

.page-template-template__oppasjob .slider-section .sitter-card .rating-images span {
    font-size: 16px;
    font-weight: 600;
    color: var(--sitly-maindarkblue);
    margin-left: 6px;
}

.page-template-template__oppasjob .slider-section .sitter-card .details {
    margin-top: 3px;
    margin-bottom: 12px;
}

.page-template-template__oppasjob .slider-section .sitter-card .details p {
    margin-bottom: 0;
    text-transform: lowercase;
}

html[lang='de-DE'] .page-template-template__oppasjob .slider-section .sitter-card .details p {
    text-transform: unset;
}

.page-template-template__oppasjob .slider-section .sitter-card .details p span {
    font-weight: 600;
}

.page-template-template__oppasjob .slider-section .sitter-card .details p .circle {
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.page-template-template__oppasjob .slider-section .sitter-card .days-wrapper .day p {
    color: var(--sitly-white);
}

.page-template-template__oppasjob .slider-section .sitter-card .days-wrapper .day:first-of-type {
    border-radius: 12px 0px 0px 12px;
}

.page-template-template__oppasjob .slider-section .sitter-card .days-wrapper .day:last-of-type {
    border-radius: 0px 12px 12px 0px;
    border-right: unset;
}

.page-template-template__oppasjob .slider-section .sitter-card .days-wrapper .day.not-active {
    background-color: var(--sitly-brightgray);
}

.page-template-template__oppasjob .slider-section .sitter-card .days-wrapper .day.not-active p {
    color: var(--sitly-wildblue);
}

.page-template-template__oppasjob .sitters-map-section {
    margin-bottom: 121px;
}

.page-template-template__oppasjob .sitters-map-section .map-wrapper {
    margin: 70px 0;
}

.page-template-template__oppasjob .sitters-map-section .map-wrapper .map-container {
    overflow: hidden;
    position: relative;
    height: 440px;
}

.page-template-template__oppasjob .sitters-map-section .map-wrapper .map-container iframe {
    left: 0;
    top: 0;
    height: 440px;
    width: 100%;
    position: absolute;
    border-radius: 24px;
}

.page-template-template__oppasjob .sitters-map-section .bottom-text {
    font-size: 18px;
}

.page-template-template__oppasjob .sitters-map-section .bottom-text a {
    color: var(--sitly-maindarkblue);
    font-weight: 600;
    text-decoration: underline;
}

.page-template-template__oppasjob .search-neigh-section {
    margin: 104px 0;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper {
    display: flex;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper a {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card {
    background: var(--sitly-white);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 16px 17px 16px 20px;
    margin-bottom: 32px;
    width: 100%;
    gap: 10px;
    min-height: 129px;
}

.page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .title {
    font-weight: 600;
}

.page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .sub-title {
    font-size: 16px;
}

.page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .right {
    background-color: var(--sitly-yellow);
    min-height: 48px;
    width: 48px;
    border-radius: 50%;
}

.page-template-template__oppasjob .search-neigh-section .section-heading .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 39.6px;
    margin-bottom: 48px;
}

.page-template-template__oppasjob .search-neigh-section .bottom-button-text .text {
    font-weight: 700;
    margin-bottom: 16px;
}

.page-template-template__oppasjob .search-neigh-section .bottom-text {
    font-size: 18px;
    margin-top: 48px;
}

.page-template-template__oppasjob .search-neigh-section .bottom-text a {
    color: var(--sitly-maindarkblue);
    font-weight: 600;
    text-decoration: underline;
}

.page-template-template__oppasjob .time-work-section {
    background: var(--sitly-paleblue);
}

.page-template-template__oppasjob .time-work-section .bottom-vector svg path,
.page-template-template__oppasjob .time-work-section .top-vector svg path {
    fill: var(--sitly-paleblue);
}

.page-template-template__oppasjob .hear-parent-section .top-vector {
    display: none;
}

.page-template-template__oppasjob .hear-parent-section .bottom-vector svg path {
    fill: var(--sitly-yellow);
}

.page-template-template__oppasjob .hear-parent-section {
    background: var(--sitly-yellow);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section {
    margin-top: 145px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper {
    width: 1141px;
    max-width: 100%;
    margin: auto;
    display: flex;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card {
    padding: 24px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-head {
    padding: 0 20px;
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar {
    padding: 20px;
    background-color: var(--sitly-brightgray);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper {
    margin-bottom: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .left {
    font-size: 14px;
}

.babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.days-wrapper .day {
    font-size: 14px;
    text-transform: uppercase;
    width: 34px;
    text-align: center;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.days-wrapper .day:last-of-type {
    margin-right: 0;
}

.babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.check img {
    background-color: var(--sitly-white);
}

.babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.cross img,
.babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.check img {
    padding: 6px;
    border-radius: 50%;
}

.babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle {
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.cross {
    background-color: unset;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle:last-of-type {
    margin-right: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom {
    padding: 20px 20px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom .left {
    width: 71px;
    font-weight: 600;
    margin-right: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom .line-wrapper .line img {
    margin-right: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom .line-wrapper .txt.light-color {
    color: var(--sitly-lightblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-head {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-bottom {
    font-size: 14px;
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-bottom .left {
    width: 82px;
    font-weight: 600;
    margin-right: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-bottom .line-wrapper .txt img {
    margin-right: 5px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-bottom .line-wrapper .line .txt.light-color {
    color: var(--sitly-lightblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .services-card .card-bottom .line-wrapper .line .txt.no-icon {
    margin-left: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details {
    width: 400px;
    max-width: 100%;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
    position: relative;
    margin-bottom: 44px;
    aspect-ratio: 1 / 1;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(158.17deg, rgba(25, 38, 45, 0.3) 4.08%, rgba(255, 255, 255, 0) 28.46%);
    border-radius: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar .status {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--sitly-white);
    font-size: 14px;
    line-height: 21px;
    padding: 4px 8px;
    border-radius: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .card-bg {
    padding: 24px 20px;
    border: 1px solid var(--sitly-brightgray);
    border-radius: 16px;
    margin-bottom: 44px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul {
    list-style: disc;
    padding-left: 50px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul li {
    font-size: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
    width: 696px;
    max-width: 100%;
    margin-left: 44px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.details-item.reviews-wrapper {
    gap: 6px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.details-item.reviews-wrapper .text {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: var(--sitly-maindarkblue);
    text-decoration: underline;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper {
    padding-top: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .title,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .title h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: "Open Sans";
    line-height: 27px;
    margin-bottom: 6px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .title .subtitle,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .title h1 span {
    font-size: 16px;
    margin-top: 8px;
    font-weight: 400;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .tags-wrapper {
    margin-top: 14px;
    flex-wrap: wrap;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .tags-wrapper .tag {
    border: 1px solid var(--sitly-maindarkblue);
    width: fit-content;
    min-width: 57px;
    height: 24px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--sitly-maindarkblue);
    padding: 4px 6px;
    margin-right: 4px;
    margin-bottom: 6px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper .tags-wrapper .tag:last-of-type {
    margin-right: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper:last-of-type {
    border: none;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper p {
    font-size: 16px;
    margin: 20px 0 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper a {
    text-decoration: underline;
    font-weight: 600;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .img-text-title {
    margin-bottom: 20px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .img-text-title .text,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper .img-text-title .text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .item {
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .text {
    font-size: 14px;
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .text img {
    margin-right: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .img-text-title {
    margin-bottom: 25px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .img-text-title .text {
    font-size: 18px;
    font-weight: 700;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item {
    margin-bottom: 20px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item .text {
    font-size: 14px;
    margin: 8px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item a {
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item .last {
    margin-top: 8px;
    font-weight: 600;
    color: var(--sitly-darkelectricblue);
    font-size: 14px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item .last span {
    font-weight: 400;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .button-wrapper a {
    text-decoration: none;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .button-wrapper a span {
    margin-right: 8px;
    font-weight: bold;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper {
    border-bottom: none;
    padding: 0 0 58px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .img-text-title,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .img-text-title {
    margin-bottom: 25px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .img-text-title .text,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .img-text-title .text {
    font-weight: 700;
    font-size: 18px;
    margin-left: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .card-bottom,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .card-bottom {
    padding: 20px 20px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .card-bottom .left,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .card-bottom .left {
    width: 120px;
    font-weight: 600;
    margin-right: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .card-bottom .line-wrapper .txt,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .card-bottom .line-wrapper .txt {
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .card-bottom .line-wrapper .txt img,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .card-bottom .line-wrapper .txt img {
    margin-right: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .card-bottom .line-wrapper .txt.light-color,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.skills-wrapper .card-bottom .line-wrapper .txt.light-color {
    color: var(--sitly-lightblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .img-text-title {
    margin-bottom: 25px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .img-text-title .text {
    font-size: 18px;
    font-weight: 700;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
    margin-bottom: 44px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .map-container {
    overflow: hidden;
    position: relative;
    height: 300px;
    border-radius: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .map-container iframe {
    left: 0;
    top: 0;
    height: 300px;
    width: 100%;
    position: absolute;
    border-radius: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper,
.sign-parent {
    width: 325px !important;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper a,
.sign-parent {
    font-size: 16px;
    width: 100%;
}

button.site-btn.large-btn.sign-up {
    width: 100%;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .site-btn {
    background: var(--sitly-maindarkblue);
    padding: 8px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border-radius: 16px;
    height: 40px;
    position: relative;
    z-index: 4;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
    position: relative;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section {
    margin-top: 145px;
    font-size: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper {
    width: 1141px;
    max-width: 100%;
    margin: auto;
    display: flex;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 24px;
    text-transform: lowercase;
}

html[lang='de-DE'] .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .title {
    text-transform: unset;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row {
    margin-bottom: 12px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
    font-size: 16px;
    margin-left: 16px;
    text-transform: lowercase;
}

html[lang='de-DE'] .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
    text-transform: unset;
}

html[lang=de-DE] .slick-initialized .slick-track .sitter-card-wrapper .sitter-card .details .details-text {
    text-transform: capitalize !important;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:last-child {
    margin-left: 0px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(2) {
    position: relative;
}

.page-template-template__babysitter__profile__parents .txt__single {
    position: relative;
    margin-left: 16px;
    display: inline-block;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(2)::before,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt .txt__single::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--sitly--darkblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper .title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans";
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper p {
    font-size: 16px;
    margin: 24px 0 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper a {
    text-decoration: underline;
    font-weight: 600;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .item {
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .item .text {
    font-size: 16px;
    margin-left: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .text.light-color {
    color: var(--sitly-lightblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details p {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details .details-text span {
    font-weight: 600;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .title {
    font-weight: 600;
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details {
    width: 400px;
    max-width: 100%;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
    position: relative;
    margin-bottom: 44px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
    border-radius: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(151.21deg, rgba(0, 0, 0, 0.37) 9.94%, rgba(0, 0, 0, 0) 22.62%);
    border-radius: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card {
    padding: 24px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-head {
    padding: 0 20px;
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-head .text,
.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .describe-wrapper .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.days-wrapper .day:last-of-type {
    margin-right: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.cross {
    background-color: unset;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle:last-of-type {
    margin-right: 0;
}

.page-template-template__babysitter__profile__parents .right.days-wrapper.d-flex.align-items-center {
    justify-content: space-between;
    width: 75%;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom {
    padding: 20px 20px 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .left {
    width: 30%;
    font-weight: 600;
    margin-right: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .line-wrapper .line .txt {
    margin-left: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .line-wrapper .txt.light-color {
    color: #869FB2;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-head {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom {
    font-size: 14px;
    margin-bottom: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .left {
    width: 82px;
    font-weight: 600;
    margin-right: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .line .txt {
    margin-left: 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .txt.light-color {
    color: var(--sitly-lightblue);
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .line .txt.no-icon {
    margin-left: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head {
    margin-bottom: 24px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul {
    list-style: disc;
    padding-left: 50px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul li {
    font-size: 16px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
    width: 696px;
    max-width: 100%;
    margin-left: 44px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper {
    padding: 44px 0;
    border-bottom: 1px solid var(--sitly-brightgray);
}

.page-template-template__babysitter__profile__parents .restricted {
    font-size: 14px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper {
    padding-top: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Open Sans";
    line-height: 27px;
    margin-bottom: 6px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper {
    margin-top: 14px;
    flex-wrap: wrap;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper .tag {
    border: 1px solid var(--sitly-maindarkblue);
    width: fit-content;
    min-width: 57px;
    height: 24px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--sitly-maindarkblue);
    padding: 4px 6px;
    margin-right: 4px;
    margin-bottom: 6px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper .tag:last-of-type {
    margin-right: 0;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper:last-of-type {
    border: none;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .img-text-title {
    margin-bottom: 25px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
    margin-bottom: 40px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper {
    width: 325px;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper a {
    font-size: 16px;
    width: 100%;
}

.page-template-template__babysitter__profile__parents .babysitter-profile-section h2.text {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.page-template-template__babysitter__profile__parents .babysitter-name-wrapper .price,
.page-template-template__babysitter__profile__parents .babysitter-name-wrapper .price-rate {
    font-size: 12px;
    background: #e8f1f9;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
    padding: 0px 8px;
}

.page-template-template__babysitter__profile__parents .babysitter-name-wrapper .price-rate {
    width: max-content;
}

.contact-banner-section {
    min-height: 310px;
    margin-top: 80px;
    padding-top: 52px;
    position: relative;
    z-index: 1;
}

.job-portal .top-banner-section {
    min-height: 310px;
    margin-top: 80px;
    padding-top: 52px;
    position: relative;
    z-index: 1;
}

.job-portal .top-banner-section .banner-route-wrapper {
    margin-top: -20px;
    padding-bottom: 25px;
}

.job-portal .top-banner-section .banner-route-wrapper .route {
    color: var(--sitly-black);
}

.job-portal .top-banner-section .banner-route-wrapper .route:nth-of-type(2) {
    margin: 0 6px;
}

.job-portal .top-banner-section .banner-text-wrapper {
    width: 603px;
    max-width: 100%;
    margin: 20px auto 0;
    text-align: center;
}

.job-portal .top-banner-section .banner-text-wrapper .title {
    font-size: 42px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 46.2px;
    margin-bottom: 16px;
}

.job-portal .top-banner-section .banner-text-wrapper .reviews {
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 3px;
    cursor: pointer;
}

.job-portal .babysitter-profile-section {
    margin-top: 0;
    font-size: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper {
    width: 1141px;
    max-width: 100%;
    margin: auto;
    display: flex;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row {
    margin-bottom: 12px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
    font-size: 16px;
    margin-left: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(2) {
    position: relative;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--sitly--darkblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--sitly--darkblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans";
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper p {
    font-size: 16px;
    margin: 24px 0 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper a {
    text-decoration: underline;
    font-weight: 600;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .img-text-title {
    margin-bottom: 25px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .img-text-title .text {
    margin-left: 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .item {
    margin-bottom: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .item .text {
    font-size: 16px;
    margin-left: 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .text.light-color {
    color: var(--sitly-lightblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details {
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details p {
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .details .details-text span {
    font-weight: 600;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.describe-wrapper .title {
    font-weight: 600;
    margin-bottom: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details {
    width: 400px;
    max-width: 100%;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
    position: relative;
    margin-bottom: 44px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
    border-radius: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(151.21deg, rgba(0, 0, 0, 0.37) 9.94%, rgba(0, 0, 0, 0) 22.62%);
    border-radius: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar .status {
    position: absolute;
    top: 14px;
    left: 20px;
    color: var(--sitly-white);
    font-size: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar .status .circle {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: var(--sitly-eucalyptus);
    margin-right: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .card-bg {
    padding: 24px 20px;
    border: 1px solid var(--sitly-brightgray);
    border-radius: 16px;
    margin-bottom: 44px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card {
    padding: 24px 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-head {
    padding: 0 20px;
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar {
    padding: 20px;
    background-color: var(--sitly-brightgray);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper {
    margin-bottom: 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .left {
    width: 67px;
    max-width: 100%;
    font-size: 14px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right {
    margin-left: 14px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.days-wrapper .day {
    margin-right: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.days-wrapper .day:last-of-type {
    margin-right: 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle {
    margin-right: 8px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.circle {
    background-color: var(--sitly-aeroblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle.cross {
    background-color: unset;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .calendar .routine-wrapper .routine .right.circle-wrapper .circle:last-of-type {
    margin-right: 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom {
    padding: 20px 20px 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .left {
    width: 71px;
    font-weight: 600;
    margin-right: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .line-wrapper .line .txt {
    margin-left: 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card .card-bottom .line-wrapper .txt.light-color {
    color: var(--sitly-lightblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-head {
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom {
    font-size: 14px;
    margin-bottom: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .left {
    width: 82px;
    font-weight: 600;
    margin-right: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .line .txt {
    margin-left: 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .txt.light-color {
    color: var(--sitly-lightblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .services-card .card-bottom .line-wrapper .line .txt.no-icon {
    margin-left: 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head {
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card .card-head .text {
    font-size: 18px;
    color: var(--sitly-maindarkblue);
    font-weight: 700;
    margin-left: 8px;
    margin-top: 4px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul {
    list-style: disc;
    padding-left: 50px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .activity-card ul li {
    font-size: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
    width: 696px;
    max-width: 100%;
    margin-left: 44px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper {
    padding: 44px 0;
    border-bottom: 1px solid var(--sitly-brightgray);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper {
    border-top: 1px solid var(--sitly-brightgray);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Open Sans";
    line-height: 27px;
    margin-bottom: 6px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper p {
    font-weight: 600;
    margin-bottom: 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper {
    margin-top: 14px;
    flex-wrap: wrap;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper .tag {
    border: 1px solid var(--sitly-maindarkblue);
    width: fit-content;
    min-width: 57px;
    height: 24px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--sitly-maindarkblue);
    padding: 4px 6px;
    margin-right: 4px;
    margin-bottom: 6px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.name-wrapper .tags-wrapper .tag:last-of-type {
    margin-right: 0;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper:last-of-type {
    border: none;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans";
    margin-bottom: 24px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .detail-row {
    margin-bottom: 12px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .detail-row .txt {
    font-size: 16px;
    margin-left: 16px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .detail-row .txt:nth-of-type(2) {
    position: relative;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .detail-row .txt:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--sitly--darkblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.children-wrapper .detail-row .txt:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--sitly--darkblue);
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper .title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans";
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper p {
    font-size: 16px;
    margin: 24px 0 8px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper a {
    text-decoration: underline;
    font-weight: 600;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.detail-wrapper .title {
    font-weight: 700;
    margin-bottom: 20px;
}

.job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.detail-wrapper p {
    margin-bottom: 8px;
}

.job-portal .button-text-wrapper .text {
    font-weight: 600;
    margin-bottom: 24px;
}

.job-portal .note-section {
    margin: 40px 0;
}

.job-portal .note-section .note-wrapper {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.job-portal .note-section .note-wrapper .logo {
    margin-bottom: 4px;
}

.job-portal .note-section .note-wrapper .logo img {
    height: 57px;
}

.job-portal .note-section .note-wrapper .ratings .images span {
    font-weight: 700;
    font-size: 18px;
}

.job-portal .note-section .note-wrapper .ul {
    margin: 16px 0;
}

.job-portal .note-section .note-wrapper .ul .li {
    font-size: 18px;
    margin-bottom: 3px;
}

.error404 .header-section {
    background: var(--sitly-white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.error404 .header-section .navbar .navbar-collapse {
    background: var(--sitly-white);
}

.error404 .no-page-section {
    width: 790px;
    max-width: 100%;
    position: relative;
    margin: 310px auto 120px;
    padding: 122px 0 71px;
    background-image: url("../../assets/images/404-bg.png");
    background-size: 100% 100%;
    background-position: center;
    min-height: 435px;
}

.error404 .no-page-section .img-wrapper {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
}

.error404 .no-page-section .img-wrapper img {
    height: auto;
    width: 300px;
}

.error404 .no-page-section .section-heading .title {
    font-size: 48px;
    font-weight: 400;
    font-family: "Lilita One";
    text-transform: uppercase;
    line-height: 52.4px;
}

.error404 .no-page-section .section-heading .sub-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
}

.error404 .no-page-section .bottom-button-text {
    width: 334px;
    max-width: 100%;
    margin: auto;
}

.error404 .no-page-section .bottom-button-text .text {
    margin-bottom: 24px;
}

.sitters-map-section .gm-style-iw.gm-style-iw-c {
    height: 300px;
    width: 280px;
    padding: 12px !important;
    border-radius: 24px;
}

.sitters-map-section .gm-style-iw.gm-style-iw-c h3 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    color: var(--sitly-white);
    top: 12px;
    left: 12px;
    z-index: 9999;
}

.img__gradient {
    position: relative;
    margin-bottom: 12px;
}

.img__gradient:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(355.82deg, rgba(0, 0, 0, 0.592) 12.6%, rgba(0, 0, 0, 0) 56.73%, rgba(0, 0, 0, 0.576) 91.78%);
    border-radius: 16px;
}

.sitters-map-section .gm-style-iw.gm-style-iw-c .img__gradient img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px !important;
}

.sitters-map-section .gm-style .gm-style-iw-d,
.sitters-map-section .gm-style .gm-style-iw-c {
    overflow: visible !important;
}

.sitters-map-section .rating-images img {
    height: 16px;
    width: 16px;
}

.gm-ui-hover-effect>span {
    background-color: var(--sitly-white);
    margin: 0px auto !important;
}

.gm-ui-hover-effect {
    opacity: 1 !important;
    background: var(--sitly-pink) !important;
    border-radius: 50%;
    width: 20px !important;
    height: 20px !important;
}

.sitters-map-section .rating-images img:last-child {
    margin-right: 4px !important;
}

.sitters-map-section .rating-images span {
    margin-left: 4px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

.sitters-map-section .details p {
    margin-bottom: 0px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.sitters-map-section .details p span {
    font-weight: 700;
}

.sitters-map-section span.circle {
    height: 2px;
    width: 2px;
    background-color: var(--sitly-maindarkblue);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

nav.page-navigation .page-item a {
    border: 1px solid #22313E !important;
    border-radius: 16px !important;
    margin-right: 8px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #22313E !important;
}

.page-item.active .page-link {
    background: #22313E;
    color: #fff !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    width: 106px;
}

.page-link:hover {
    background-color: unset;
}

.page-link:focus {
    box-shadow: unset;
    background-color: unset;
}

.user__stories__text {
    max-width: 635px;
    margin: 0 auto;
}

.stories__img {
    margin-bottom: 32px;
}

.introduction__title {
    margin-bottom: 20px;
}

header.sticky_top {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--sitly-white);
    color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 100ms;
}

header.sticky_top.sticky {
    opacity: 1;
    visibility: visible;
}

body.pojo-a11y-grayscale {
    filter: unset !important;
}

body.pojo-a11y-grayscale header,
body.pojo-a11y-grayscale main,
body.pojo-a11y-grayscale #pojo-a11y-toolbar {
    filter: grayscale(100%);
}

#breadcrumbs {
  flex: 0 0 100%;
  clear: both;
}

.babysitter-profile-wrapper {
  flex-wrap: wrap;
}

/* Elementor Pop-up modal */
.elementor-popup-modal .dialog-widget-content {
    background: var(--sitly-white);
    border-radius: 24px !important;
    border: unset;
}

.elementor-popup-modal .gform_button {
    font-size: 18px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-feature-settings: "calt" off;
    letter-spacing: 0;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transition: .5sease;
    padding: 12px 24px;
    background: var(--sitly-pink);
    font-weight: 600;
    border-radius: 16px;
    color: var(--sitly-white);
    min-width: 112px;
    text-decoration: none;
    line-height: 18px;
    width: 100%;
}

.elementor-popup-modal .gform_title {
    margin-bottom: 4px;
    text-align: center;
    font-family: 'Lilita One';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    text-transform: uppercase;
}

.elementor-popup-modal form {
    width: 380px;
    max-width: 100%;
    margin: auto;
}

.elementor-popup-modal .gform_title {
    padding-top: 70px;
    padding-bottom: 40px;
    width: 380px;
    margin: auto;
}

.elementor-popup-modal form .gfield--type-text input,
.elementor-popup-modal form .gfield--type-email input {
    border: 1px solid var(--sitly-maindarkblue);
    border-radius: 16px;
    background-color: transparent;
    padding-left: 16px;
    box-shadow: none;
    min-height: 48px;
}

.elementor-popup-modal form input:focus-visible {
    outline: none !important;
}

.elementor-popup-modal form .gfield--type-text label,
.elementor-popup-modal form .gfield--type-email label {
    color: var(--sitly-darkelectricblue);
    font-size: 16px !important;
    position: absolute;
    pointer-events: none;
    left: 16px;
    bottom: 12px;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.elementor-popup-modal {
    background-color: rgba(206, 224, 238, .5) !important;
}

.elementor-popup-modal .gfield {
    position: relative;
}

.elementor-popup-modal .dialog-close-button svg {
    height: 37px;
    width: 20px;
    font-weight: 600;
    fill: #304251;
}

.elementor-popup-modal form .gfield--type-text:focus label,
.elementor-popup-modal form .gfield--type-email:focus label {
    top: unset;
    bottom: 100%;
    bottom: calc(100% - 10px);
    font-size: 12px;
    color: var(--sitly-maindarkblue);
    font-weight: 400;
    background-color: #fff;
    padding: 0 3px;
}

.elementor-popup-modal form .gfield--type-text { 
    grid-column: span 6 !important;
}



.elementor-popup-modal form {
    margin-bottom: 50px;
}

.elementor-popup-modal form .gfield_radio {
    display: flex;
    gap: 15px; /* Adjust spacing between options */
    align-items: center;
    border: 0 !important;
}

.elementor-popup-modal form .gchoice {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.elementor-popup-modal form .gfield-choice-input {
    margin-right: 5px; /* Space between radio button and label */
}

.elementor-popup-modal form .gchoice label{
    font-size: 16px;
}

.elementor-popup-modal .gform_confirmation_wrapper {
    margin: 50px;
}

.email-registration-form-popup .elementor-message-success {
    display: none !important;
}

.elementor-popup-modal form input.gfield-choice-input[type='radio']:checked {
    appearance: none;
    height: 13px;
    padding-left: 0 !important;
    border: 4px solid var(--sitly-maindarkblue);
    width: 13px;
    min-height: unset;
}

.elementor-popup-modal .gfield--type-text:focus-within .gfield_label,
.elementor-popup-modal .gfield--type-email:focus-within .gfield_label,
.elementor-popup-modal .gfield.has-value .gfield_label{
    transition: all 0.1s ease;
    top: unset;
    bottom: 100%;
    bottom: calc(100% - 10px);
    font-size: 12px !important;
    color: var(--sitly-maindarkblue);
    font-weight: 400;
    background-color: #fff;
    padding: 0 3px;
}

.page-template-blog-archive,
.post-author-page,
.page-template-blog-post{
    overflow: hidden;
}

.page-template-blog-archive .banner-section-blue .header-banner-center{
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    padding-top: 30px;
    min-height: unset;
    gap: 70px;
}

.blog-page .header-banner-center #breadcrumbs *,
.breadcrumbs-section #breadcrumbs *{
    margin-bottom: 0;
    color: #22313E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.breadcrumbs-section #breadcrumbs{
    margin-bottom: 0;
}

.page-template-blog-archive .header-banner-center .detail-wrapper{
    width: max-content;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 56px
}

.page-template-blog-archive .banner-section-blue .header-banner-center .detail-wrapper .title{
    width: max-content;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title,
.page-template-blog-archive .text-image-right-section .text h3{
    font-family: "Open Sans";
    font-size: 24px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 150%!important;
}

.page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title span{
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: max-content;
}

.page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title span::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: -2px;
    background: rgba(255, 229, 78, .6);
    height: 25px;
    width: 112%;
    z-index: -1;
}

.page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title span::after{
    width: 13px;
    height: 27px;
    content: "";
    background-image: url(/wp-content/themes/sitly__theme/assets/images/yellow-bar.svg);
    background-size: 13px 27px;
    position: absolute;
    bottom: -3px;
    right: -14px;
}

.page-template-blog-archive .text-image-right-section{
    margin-top: -25px;
    background: var(--sitly-waterblue);
    padding: 90px 20px 64px 20px;
}

.page-template-blog-archive .text-image-right-section .text-image-wrapper{
    max-width: 1140px;
    display: flex;
    gap: 44px;
    padding: 0;
    margin: auto;
}

.page-template-blog-archive  .text-image-section .text-image-wrapper .left{
    margin: 25px 0;
    flex: 0 0 calc(50% - 30px);
}

.page-template-blog-archive  .text-image-section .text-image-wrapper .left img{
    object-fit: cover;
    width: 100%;
}

.page-template-blog-archive  .text-image-section .text-image-wrapper .right{
    margin: 0;
    flex: 0 0 calc(50% - 14px);
    background-image: unset;
    padding: 0;
}

.page-template-blog-archive .text-image-right-section .text{
    gap: 24px;
}

.page-template-blog-archive .text-image-right-section .text h3{
    flex: 0 0 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.page-template-blog-archive .text-image-right-section .text p{
    flex: 0 0 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    overflow: hidden;
    margin-bottom: 0;
}

.page-template-blog-archive .date-author {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex: 0 0 100%;
}

.blog-posts-list-section{
    padding: 54px 60px 40px;
}

.blog-posts-list-section .container{
    gap: 40px;
}

.page-template-blog-archive .search-filter-wrapper{
    flex: 0 0 100%;
    position: relative;
    min-height: 52px;
    flex-wrap: wrap;
    gap: 32px;
}

.search-filter-wrapper .sitly-input-container{
    display: flex;
    align-items: center;
    padding: 12px 16px;
    position: relative;
    width: 18%;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--neutral-neutral-900, #22313E);
    background-color: white;
    /* position: absolute;
    left: 0; */
}

.search-filter-wrapper .sitly-input-container .input-field{
    display: flex;
    width: calc(100% - 16px);
    flex-shrink: 0;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.search-filter-wrapper .sitly-input-container .input-field:focus{
    border: none;
    outline: none;
}

.search-filter-wrapper .sitly-input-container .search-icon{
    height: fit-content;
}

.search-filter-wrapper > .search-icon{
    display: none;
}

.search-filter-wrapper .posts-filters-wrapper {
    /* position: absolute;
    right: 16px; */
    width: max-content;
    min-width: 800px;
    gap: 32px;
    padding: 0 16px;
}

.search-filter-wrapper .posts-filters-wrapper p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* max-width: 185px; */
    text-wrap: nowrap;
    cursor: pointer;
    margin-bottom: 0px;
}

.search-filter-wrapper .posts-filters-wrapper a.active{
    font-weight: 700;
    cursor: auto;
}

.more-categories{
    position: relative;
    cursor: pointer;
}

.search-filter-wrapper .posts-filters-wrapper .categories-dropdown{
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.search-filter-wrapper .posts-filters-wrapper .categories-dropdown::after{
    border: none;
    background-image: url(/wp-content/themes/sitly__theme/assets/images/chevron-down-black.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: .255em;
    content: "";
    transition: transform .2s ease-in-out;
}

.list{
    position: absolute;
    top: 140%;
    display: none;
    flex-direction: column;
    justify-content: end;
    padding: 0.75rem 1rem;
    right: -1rem;
    width: max-content;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 16px 0px rgba(14, 39, 63, 0.18);
    color: #22313E;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.list li{
    padding: 12px 16px;
}

.list li:hover{
    border-radius: 12px;
    background: #E8F1F9;
}

.more-categories.show .list{
    display: flex;
    z-index: 9;
}

.more-categories.show .categories-dropdown::after{
    transform: rotate(180deg);
}

.posts-cards-list{
    gap: 24px;
    padding: 0 10px;
}

.posts-cards-list .single-post-card{
    flex: 0 0 calc(33.33% - 16px);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
    background: var(--shades-white, #FFF);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
}

.posts-cards-list .single-post-card:hover{
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.20);
}

.posts-cards-list .single-post-card.special-card{
    background: #B0D7F6;
    padding: 32px;
    gap: 20px;
}

.posts-cards-list .single-post-card.special-card.babysitter-cta{
    background: #D9EEFF;
}

.posts-cards-list .single-post-card.special-card .immage-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background: none;
    height: 180px;
}

.posts-cards-list .single-post-card.special-card .immage-wrapper img{
    width: auto;
    height: auto;
    margin: auto;
}

.posts-cards-list .single-post-card .immage-wrapper{
    height: 260px;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(356deg, rgba(0, 0, 0, 0.44) 12.6%, rgba(0, 0, 0, 0.00) 56.73%, rgba(0, 0, 0, 0.43) 91.78%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.posts-cards-list .single-post-card .immage-wrapper img{
    width: 110%;
    max-width: 110%;
    height: 110%;
    object-fit: cover;
    transform: translate(-5%, -5%);
}

.posts-cards-list .single-post-card .date-author{
    color: #4C6376;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

.posts-cards-list .single-post-card h4{
    color: #1C2936;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 150% !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0;
}

.posts-cards-list .single-post-card p{
    color: #22313D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    height: fit-content;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    margin-bottom: 0;
}

.posts-cards-list .single-post-card.special-card h4{
    color: var(--neutral-neutral-900, #22313E);
    font-family: "Lilita One";
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
}

.posts-cards-list .single-post-card.special-card p{
    color: #000;
    font-size: 18px;
    -webkit-line-clamp: 3;
}

.posts-list-pagination {
    gap: 8px;
}

span.page-numbers.current,
a.page-numbers {
    padding: 10px;
    min-width: 40px;
    height: 40px;
    color: #1C2936;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

span.page-numbers.current{
    border-radius: 12px;
    background: #D9EEFF;
}

.bottom-section-yellow,
.author-section-yellow{
    background: #FFE63E;
    padding: 56px 70px 40px 70px; 
    position: relative;
    margin-top: 26px;
    flex-basis: 100%;
}

.bottom-section-yellow .top-vector,
.author-section-yellow .top-vector{
    position: absolute;
    top: -26px;
    left: 0;
    min-height: 27px;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.bottom-section-yellow .top-vector svg,
.author-section-yellow .bottom-vector svg,
.author-section-yellow .top-vector svg{
    width: 100vw;
}

.bottom-section-yellow .bottom-vector,
.author-section-yellow .bottom-vector{
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 100%;
    z-index: -1;
    min-height: 30px;
    display: flex !important;
    align-items: flex-start;
}

.bottom-section-yellow .left-column{
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bottom-section-yellow .left-column h2,
.author-section-yellow .left-column h2{
    color: var(--neutral-neutral-900, #22313E);
    font-family: "Lilita One";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    margin-bottom: 0;
}

.bottom-section-yellow .left-column p,
.author-section-yellow .left-column p{
    color: #000;
}

.bottom-section-yellow .btns-wrapper{
    gap: 16px;
}

.page-template-blog-post .bottom-section-yellow .right-column{
    position: relative;
    margin-top: -30px;
}

.page-template-blog-post  .bottom-section-yellow .right-column img{
    position: absolute;
}

.author-section-yellow .right-column img{
    width: 100%;
    max-width: 400px;
}

.breadcrumbs-section {
    margin-top: 110px;
}

.blog-post-header-section .row{
    margin-top: 70px;
    align-items: center;
    justify-content: space-between;
}

.blog-post-header-section .banner-text-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-post-header-section .banner-text-wrapper .title{
    color: var(--neutral-neutral-900, #22313E);
    text-align: center;
    font-family: "Lilita One";
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden; */
    margin: 0;
}

.blog-post-header-section .details-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.blog-post-header-section .details-wrapper p{
    color: #4C6377;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}

.blog-post-header-section .details-wrapper p a{
    color: inherit;
    text-decoration: underline;
}

.post-header-image{
    height: 309px;
    overflow: hidden;
}

.post-header-image img{
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.page-content{
    flex-wrap: wrap;
    gap: 70px;
    padding-bottom: 70px;
    /* overflow-x: hidden; */
}

.post-content-section{
    --annotation-block-height: -400px;
    flex-basis: 100%;
}

.post-content-wrapper{
    display: flex;
    justify-content: space-between;
    padding-top: 46px;
}

.anotation-content{
    background: #D9EEFF;
    position: relative;
}

.anotation-content p{
    width: 65%;
    padding: 83px 12px 66px 12px;
    color: var(--neutral-neutral-900, #22313E);
    font-size: 20px;
}

.anotation-content .top-vector{
    position: absolute;
    top: -27px;
    width: 100%;
    z-index: -1;
}

.anotation-content .bottom-vector{
    position: absolute;
    bottom: -27px;
    width: 100%;
}

.post-content h2{
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    line-height: 150%;
    margin: 28px 0 20px 0;
    flex: 0 0 100%;
}

.post-content h3{
    font-size: clamp(21px, 4vw, 25px) !important;
    font-weight: 700;
    line-height: 130%;
}

.post-content h4{
    font-size: clamp(19px, 4vw, 22px) !important;
    font-weight: 700;
    line-height: 130%;
}

.post-content-wrapper p{
    color: #000;
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 0;
}


.post-content-wrapper .inner-wrapper > p{
    flex: 0 0 100%;
}

.post-content-wrapper .inner-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.post-content-wrapper .inner-wrapper ol{
    list-style: auto;
    margin: 18px 0;
    flex: 0 0 100%;
}

.post-content-wrapper .inner-wrapper ul{
    list-style: disc;
    padding-left: 2rem;
    margin: 18px 0;
    flex: 0 0 100%;
}

.post-content-wrapper .inner-wrapper li{
    color: var(--sitly-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* .post-content-wrapper .inner-wrapper li + li{
    padding-top: 1.2em;
} */

.post-content-wrapper .inner-wrapper blockquote{
    color: var(--sitly-darkelectricblue, #4C6377);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    width: fit-content;
    max-width: 100%;
    padding: 3em 4.75em;
    margin: 0 auto;
}

.post-content-wrapper .inner-wrapper .wp-block-image{
    flex: 0 0 100%;
}

.post-content-wrapper .inner-wrapper iframe{
    max-width: 100%;
}

.post-content-wrapper .inner-wrapper blockquote p {
    color: var(--sitly-darkelectricblue, #4C6377);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.post-content-wrapper .inner-wrapper blockquote::before{
    content: "";
    background-image: url("/wp-content/themes/sitly__theme/assets/images/quotes3.svg");
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 42px;
    aspect-ratio: 149 / 150;
    top: 32px;
    left: 0;
}

.post-content-wrapper .inner-wrapper blockquote::after{
    content: "";
    background-image: url("/wp-content/themes/sitly__theme/assets/images/quotes3.svg");
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 42px;
    aspect-ratio: 149 / 150;
    bottom: 32px;
    right: 0;
    rotate: 180deg;
}

.post-content-wrapper .inner-wrapper a:not(.site-btn){
    font-size: inherit;
    color: var(--neutral-neutral-900, #22313E);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.table-of-contents{
    position: sticky;
    top: 120px;
    height: auto;
    width: 25%;
    /* margin-top: var(--annotation-block-height); */
    margin-bottom: 200px;
    align-self: flex-start;
}

.table-of-contents .contents{
    position: relative;
    /* background: #B0D7F6; */
    height: max-content;
    width: 100%;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.table-of-contents .contents h4{
    color: var(--sitly-darkelectricblue, #4c6377);
    font-size: 14px !important;
    font-weight: 700;
    line-height: 150% !important;
}

.table-of-contents .contents ul{
    list-style: disc;
    padding-left: 24px;
}

.table-of-contents .contents li + li {
    margin-top : 12px;
}

.table-of-contents .contents li.heading-h3{
    margin-left: 20px;
}

.table-of-contents .contents a{
    color: var(--sitly--darkblue, #304251);
    font-size: 14px !important;
    font-weight: 400;
    line-height: 150% !important;
    margin: 0;
    flex: 0 0 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.table-of-contents .contents .active{
    font-weight: 600;
}

.table-of-contents .top-vector{
    position: absolute;
    top: -28px;
    width: 100%;
    left: 0;
}

.table-of-contents .bottom-vector{
    position: absolute;
    bottom: -27px;
    width: 100%;
    left: 0;
}

.page-template-blog-post .top-vector svg,
.page-template-blog-post .bottom-vector svg{
    width: 100%;
}

.post-content {
    width: 65%;
    padding-right: 20px;
}

.post-content img{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 58px auto;
}

.post-content h6{
    width: 100%;
    text-align: end;
    color: var(--neutral-neutral-900, #22313E);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 150%;
    margin: -58px 0 58px 0;
}

.post-content .wp-block-table.is-style-regular td{
    padding: 0.5em;
}

.post-content .wp-block-table.is-style-stripes td{
    padding: 1em;
}

.has-text-align-center{
    text-align: center;
}

.has-text-align-right{
    text-align: right;
}

.has-text-align-left{
    text-align: left;
}

.post-content .size-full{
    width: 100%;
}

.post-content .has-fixed-layout{
    width: 100%;
    table-layout: fixed;
}

.post-content .nowrap .has-fixed-layout{
    table-layout: auto;
}

.post-content .nowrap .has-fixed-layout tr td:first-of-type{
    white-space: nowrap;
}

.post-content .is-style-regular td{
    border: 1px solid var(--sitly-black);
}

.post-content .is-style-stripes tr:nth-child(odd){
    background-color: var(--sitly-waterblue);
}

.post-content figure{
    margin: 0 auto;
}

.post-content .wp-block-table thead{
    border-bottom: 2px solid #FFF;
    text-align: center;
}

.post-content .wp-block-table tfoot{
    border-top: 1px solid #FFF;
    text-align: right;
}

.post-content .wp-block-image .wp-element-caption{
    margin-top: -38px;
    text-align: end;
    font-style: italic;
}

.blue-banner {
    width: 885px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: url(/wp-content/themes/sitly__theme/assets/images/bubble-horizontal.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 64px 57px;
    margin: 38px 0;
}

.blue-banner > div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 calc(100vw * 0.048);
    justify-content: center;
}

.blue-banner h3{
    color: var(--neutral-neutral-900, #22313E);
    font-family: "Lilita One";
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 110% !important;
    text-transform: uppercase;
    text-align: center;
}

.blue-banner p{
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.blue-banner .btns-wrapper{
    justify-content: center;
    gap: 16px;
}

.social-share-comments{
    margin-top: 70px;
    display: flex;
    justify-content: space-around;
}

.social-share-comments .social-share{
    display: inline-flex;
    gap: 24px;
}

.social-share-comments .site-btn{
    display: inline-flex;
}

.page-template-blog-post .bottom-section-yellow{
    margin-bottom: 160px;
}

.related-articles h2{
    color: var(--neutral-neutral-900, #22313E);
    text-align: center;
    font-family: "Lilita One";
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 110% !important;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.section-comments{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.section-comments .title{
    margin-bottom: 0;
}

.section-comments h3{
    color: var(--neutral-neutral-900, #22313E);
    text-align: center;
    font-family: "Lilita One";
    font-size: 28px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 110% !important;
    text-transform: uppercase;
    flex: 0 0 100%;
}

.section-comments .btn__wrapper{
    width: 100%;
    max-width: 745px !important;
}

.section-comments .btn__wrapper .comment-btn{
    width: 50%;
    font-size: 16px;
    border: 1px solid var(--sitly-maindarkblue);
    padding: 12px 112px;
    cursor: pointer;
}

.section-comments .btn__wrapper .comment-btn.active{
    background: var(--sitly-maindarkblue);
    color: var(--sitly-white);
    font-weight: 600;
}

.selected-content {
    width: 100%;
    max-width: 745px !important;
}

.single-comment {
    padding: 24px 0;
    border-top: 1px solid #E8F1F9;
    display: flex;
    flex-wrap: wrap;
}

.single-comment:last-of-type {
    padding-bottom: 0;
}

.single-comment .comment-title{
    flex: 0 0 65%;
    color: var(--neutral-neutral-900, #22313E);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 150% !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    margin: 0;
}

.single-comment .comment-author{
    flex: 0 0 30%;
    color: var(--neutral-neutral-900, #22313E);
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150% !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.single-comment .comment-content{
    flex: 0 0 100%;
}

.single-comment .comment-content p{
    color: var(--neutral-neutral-900, #22313E);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150% !important;
    margin: 0;
}

.selected-content .new-comment{
    display: none;
}

.selected-content .new-comment form{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

#writeComment #comment,
#writeComment #author, 
#writeComment #email {
    flex: 0 0 100%;
    color: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--neutral-neutral-900, #22313E);
    background: var(--shades-white, #FFF);
}

#writeComment .site-btn {
    border-radius: 16px;
}

.selected-content .new-comment textarea{
    resize: vertical;
    overflow: auto;
    border: none;
    width: 100%;
    padding: 0;
}

.comment-form-comment {
    display: contents;
}

textarea::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 7px;
    border: 1px solid var(--skv-grey);
}

textarea::-webkit-scrollbar-thumb {
    background-color: var(--skv-dark-grey);
    border-radius: 7px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

#writeComment input::placeholder,
#writeComment textarea::placeholder{
    color: var(--neutral-neutral-700, #4C6377);
}

.selected-content .new-comment input:focus,
.selected-content .new-comment textarea:focus{
    /* border: none; */
    outline: none;
}

.author-section-yellow .row{
    max-width: 914px;
    flex-wrap: nowrap;
}

.author-section-yellow .left-column{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    min-width: 340px;
}

.author-section-yellow .left-column > *{
    flex: 0 0 100%;
    margin: 0;
}

.author-section-yellow .author-details *{
    margin: 0;
}

.author-details .author-name{
    color: var(--neutral-neutral-900, #22313E);
    font-size: 32px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 120% !important;
}

.author-details span{
    color: var(--neutral-neutral-900, #22313E);
    font-size: 20px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150% !important;
}

.author-section-yellow .left-column p{
    color: var(--neutral-neutral-900, #22313E);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150% !important;
}

.post-author-page .author-page-content{
    padding: 70px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.post-author-page .author-page-content > *{
    flex-basis: 100%;
}

.author-page-content .btns-wrapper{
    margin: 0 auto;
}

@media (min-width: 1920px) {
    .site-btn {
        min-width: auto;
        font-size: 18px;
    }

    .header-section .navbar .navbar-brand img {
        width: 100px;
    }

    .header-section .navbar .navbar-nav .nav-item {
        margin: 0 16px;
    }
}

@media (min-width: 1280px) {

    .page-template-template__frontpage .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left,
    .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left {
        width: 238px;
    }
}

@media (min-width: 768px) {
    .table-of-contents .bottom-vector svg{
        display: none !important;
    }
}

@media (max-width: 1366px) {
    body {
        font-size: 16px;
    }

    .modal .modal-dialog .modal-content .modal-body {
        padding: 10px 0 40px;
    }

    .modal .modal-dialog .modal-content .modal-body .title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 31px;
    }

    .modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .forgot-password .divider {
        margin-top: 18px;
    }

    .modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text .divider {
        margin-top: 18px;
    }

    .header-section {
        padding: 12px 45px;
    }

    .header-section .vector {
        bottom: -17px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .days-wrapper .day {
        font-size: 12px;
    }

    .qa-section .qa-right .qa-details .accordion .accordion-item .accordion-header .accordion-button {
        padding: 30px 0;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title,
    .banner-section-yellow .home-banner-left .detail-wrapper .title {
        font-size: 40px;
        line-height: 46px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .list-wrapper li,
    .banner-section-yellow .home-banner-left .detail-wrapper .list-wrapper li {
        line-height: 26px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        font-size: 16px;
    }

    .sub-banner-section .sub-banner-right .detail-wrapper div {
        font-size: 16px;
    }

    .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 40px;
        line-height: 46px;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 40px;
        line-height: 48px;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title span::before {
        bottom: 1px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 40px;
        line-height: 46px;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .list-wrapper li {
        font-size: 16px;
        line-height: 26px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        font-size: 16px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .list-wrapper li {
        line-height: 26px;
    }

    .banner-section .home-banner-left .detail-wrapper .title img,
    .banner-section-blue .home-banner-left .detail-wrapper .title img {
        margin-left: -10px;
    }
}

@media (max-width: 1300px) {
    .header-section .vector {
        bottom: -15px;
    }
}

@media (max-width: 1200px) {
    .header-section .navbar .navbar-nav .nav-item {
        border: none;
    }

    .posts-cards-list .single-post-card{
        flex-basis: calc(50% - 12px);
    }
}

@media (max-width: 1199px) {
    .sub-banner-section .bottom-vector {
        bottom: -15px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper img {
        height: 365px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images img {
        height: 20px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        font-size: 14px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 36px;
    }

    .page-template-template__oppasjob .banner-section {
        min-height: unset;
        height: 392px;
    }

    .sub-banner-section .sub-banner-right .detail-wrapper div {
        font-size: 14px;
    }

    .banner-section-blue .home-banner-left,
    .banner-section-yellow .home-banner-left {
        min-height: 450px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images img,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images img {
        height: 20px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        font-size: 14px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title,
    .banner-section-yellow .home-banner-left .detail-wrapper .title {
        font-size: 36px;
    }

    .bottom-footer-section .bottom-footer-wrapper .right-footer ul li {
        gap: 16px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images span {
        font-size: 14px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images img {
        height: 16px;
    }

    .time-work-section .details-row .time-work-details {
        margin-bottom: 12px;
    }

    .header-section .navbar .navbar-nav .nav-item {
        margin: 0 25px 0 0;
    }

    .bottom-footer-section .bottom-footer-wrapper .right-footer ul li a img {
        height: 20px;
    }

    .footer-link-section .footer-link-wrapper .social-link-wrapper ul li a {
        font-size: 14px;
    }

    .header-section .navbar .navbar-nav .nav-item {
        margin: 0 25px 0 0;
    }

    .header-section {
        padding: 12px 40px;
    }

    .site-btn {
        font-size: 14px;
    }

    .site-btn.large-btn {
        font-size: 16px;
        height: 50px;
    }

    .container {
        padding: 0 40px;
    }

    body {
        font-size: 14px;
    }
}

@media (max-width: 991px) {

    #map-container .mapboxgl-control-container .mapboxgl-ctrl-top-right{
        display: none;
    }
    
    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper .button {
        margin-bottom: 10px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .button-rating-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .list-wrapper li {
        line-height: 24px;
        font-size: 13px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .list-wrapper {
        margin: 14px 0 20px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title span::before {
        height: 30px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 27px;
        line-height: 34px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left {
        margin-top: 0;
        padding: 0 6px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .button,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .button {
        margin-bottom: 10px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper {
        flex-direction: column;
        align-items: flex-start!important;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .list-wrapper li,
    .banner-section-yellow .home-banner-left .detail-wrapper .list-wrapper li {
        line-height: 24px;
        font-size: 13px;
    }

    .banner-section .home-banner-left .detail-wrapper .title img,
    .banner-section-blue .home-banner-left .detail-wrapper .title img,
    .banner-section-yellow .home-banner-left .detail-wrapper .title img {
        height: 31px !important;
        margin-left: -2px !important;
        margin-top: -3px !important;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .list-wrapper,
    .banner-section-yellow .home-banner-left .detail-wrapper .list-wrapper {
        margin: 14px 0 20px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title span::before,
    .banner-section-yellow .home-banner-left .detail-wrapper .title span::before,
    .sub-banner-section .sub-banner-right .detail-wrapper .title span:before {
        height: 30px !important;
        bottom: 0 !important;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title,
    .banner-section-yellow .home-banner-left .detail-wrapper .title {
        font-size: 27px;
        line-height: 34px;
    }

    .banner-section-blue .home-banner-left,
    .banner-section-yellow .home-banner-left {
        margin-top: 0;
        padding: 0 6px;
    }

    .baby-sitters-detail-section .section-heading .title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper {
        gap: 6px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters {
        min-width: 66px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .results {
        font-size: 16px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper {
        width: 50%;
        max-width: 412px !important;
    }

    .sub-banner-section .bottom-vector {
        bottom: -12px;
    }

    .time-work-section .img-wrapper img {
        height: 150px;
    }

    .bottom-footer-section .bottom-footer-wrapper .right-footer ul li {
        gap: 8px;
    }

    .header-section .vector {
        bottom: -13px;
    }

    .header-section .navbar .navbar-nav .nav-item:nth-of-type(4) {
        margin: 0 15px 0 0;
    }

    .header-section .navbar .navbar-nav .nav-item {
        margin: 0 20px 0 0;
    }

    .header-section {
        padding: 12px 35px;
    }

    .container {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {

    .page-template-template__babysitter__profile__parents .header-section {
        background: var(--sitly-white);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }

    .page-template-template__babysitter__profile__parents .header-section .navbar .navbar-collapse {
        background: var(--sitly-white);
    }

    .page-template-template__babysitter__profile__parents .header-section {
        background: var(--sitly-white);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }

    .page-template-template__babysitter__profile__parents .header-section .navbar .navbar-collapse {
        background: var(--sitly-white);
    }

    .page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper {
        text-align: center;
        margin-bottom: -20px;
    }

    .page-template-template__oppasjob .banner-section {
        margin-top: 0;
        padding-top: 100px;
        min-height: 392px;
        height: unset;
    }

    .sub-banner-section {
        height: unset;
        min-height: 411px;
        margin-top: -50px;
    }

    .banner-section-blue .home-banner-right .img-wrapper,
    .banner-section-yellow .home-banner-right .img-wrapper {
        text-align: center;
        width: 110%;
        margin-left: -10%;
        margin-bottom: 0px !important;
        aspect-ratio: 1 / 0.61;
    }

    .hear-parent-section .hear-parent-wrapper .img-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hear-parent-section .hear-parent-wrapper .img-row::-webkit-scrollbar {
        display: none;
    }

    .hear-parent-section .hear-parent-wrapper .left-img,
    .hear-parent-section .hear-parent-wrapper .right-img {
        max-width: 412px;
    }

    .header-section .vector {
        display: none;
    }

    .header-section {
        padding-top: 12px !important;
    }

    .header-section .navbar-brand {
        padding-bottom: 8px;
    }

    .header-section .navbar .navbar-collapse {
        padding: 0px 24px 10px;
        margin-top: 8px;
        border-top: 1px solid var(--sitly-brightgray);
    }

    .header-section .navbar .navbar-collapse.show {
        background: var(--sitly-white);
    }

    .navbar-collapse.collapse.show~svg.header-vector path {
        fill: var(--sitly-white);
    }

    svg.header-vector {
        position: absolute;
        width: 100vw;
        height: 5px;
        bottom: -4px;
    }

    .header-section .navbar .mobile-toggle .navbar-toggler {
        display: flex;
    }

    .header-section .navbar .mobile-toggle .mobile-dropdown-item {
        display: flex;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        margin-right: 8px;
    }

    .header-section .navbar .mobile-toggle .mobile-dropdown-item .dropdown-toggle {
        font-size: 14px;
        color: var(--sitly-metallicblue);
        font-weight: 600;
    }

    .header-section {
        box-shadow: unset;
    }

    .banner-section-blue,
    .banner-section-yellow {
        margin-top: 0 !important;
        padding-top: 100px !important;
        min-height: 392px;
        height: unset !important;
    }

    /* Ticket - Resize between 610 and 770px */
    .hear-parent-wrapper .hear-parent-slider .slick-slide:not(.slick-current) {
        opacity: .5 !important;
    }

    .banner-section-blue .container-fluid,
    .banner-section-yellow .container-fluid {
        padding: 0;
    }

    .row {
        margin: 0 !important;
    }

    .container {
        padding: 0 24px;
        max-width: 640px;
    }

    .banner-section-blue .container-fluid .home-banner-left,
    .banner-section-yellow .container-fluid .home-banner-left {
        min-height: 350px;
        padding: 0 24px;
    }

    .banner-section-blue .container-fluid .home-banner-right .img-wrapper img,
    .banner-section-yellow .container-fluid .home-banner-right .img-wrapper img {
        height: auto;
        width: 100%;
        position: inherit;
        bottom: unset;
        display: block;
        object-fit: cover;
    }

    .banner-section-blue .container-fluid .home-banner-right,
    .banner-section-yellow .container-fluid .home-banner-right {
        padding: 0;
        margin-top: -40px !important;
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    .sub-banner-section .sub-banner-left {
        display: none;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper {
        flex-wrap: wrap;
        width: 100%;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters {
        width: calc(20% - 6px);
        min-width: max-content;
    }

    .neigh-card-wrapper{
        width: 50%;
    }
    
    .babysitter-profile-wrapper #breadcrumbs {
        padding-left: 24px;
    }

    .banner-section-blue .detail-wrapper,
    .banner-section-yellow .detail-wrapper {
        margin-bottom: 40px;
    }

    .d-mdm-block {
        display: block !important;
    }
    
    .d-mdm-flex {
        display: flex !important;
    }
    
    .d-mdm-none {
        display: none !important;
    }

    .page-template-blog-archive .banner-section-blue{
        min-height: 340px;
    }

    .page-template-blog-archive .banner-section-blue .header-banner-center{
        gap: 1.5rem;
        min-height: 260px;
    }

    .page-template-blog-archive .header-banner-center .detail-wrapper{
        margin-bottom: 120px;
    }

    .page-template-blog-archive .banner-section-blue .header-banner-center .detail-wrapper .title{
        width: fit-content;
        text-align: center;
    }

    .page-template-blog-archive .text-image-section .text-image-wrapper .left{
        flex-basis: 100%;
        margin-bottom: 0;
    }

    .page-template-blog-archive .text-image-right-section .site-btn{
        margin: 0.75rem auto 0 auto;
    }

    .page-template-blog-archive .text-image-section .text-image-wrapper .right{
        flex-basis: 100%;
        padding: 0 2rem;
    }

    .page-template-blog-archive .text-image-section .text-image-wrapper .left img{
        aspect-ratio: unset;
    }

    .page-template-blog-archive .text-image-right-section{
        padding: 0 0 56px 0;
        margin-top: -120px;
    }

    .page-template-blog-archive .text-image-section.text-image-right-section .text-image-wrapper{
        background-image: none;
        margin: -70px 0 0 0 !important;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .page-template-blog-archive .text-image-right-section .text{
        gap: 0.75rem;
    }

    .page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title{
        text-align: center;
    }

    .blog-posts-list-section{
        position: relative;
        padding: 24px 0 40px;
    }

    .blog-posts-list-section .top-vector{
        position: absolute;
        top: -27px;
        left: 0;
        width: 100%;
    }

    .blog-posts-list-section .top-vector svg{
        width: 100%;
    }

    .posts-cards-list .single-post-card{
        flex-basis: 100%;
    }

    .search-filter-wrapper .sitly-input-container{
        width: 65%;
    }

    .search-filter-wrapper .posts-filters-wrapper{
        min-width: auto;
    }

    .bottom-section-yellow, .author-section-yellow{
        padding: calc(100vw * 0.26) 0 2rem 0;
        margin-top: calc(100vw* 0.57);
    }

    .bottom-section-yellow .right-column,
    .page-template-blog-post .bottom-section-yellow .right-column{
        position: absolute;
        top: calc(100vw* -0.55);
        margin-left: calc(-5vw - 12px);
        width: 110vw;
        max-width: unset;
        padding: 0;
    }

    .bottom-section-yellow .right-column img{
        width: 100%;
    }

    .page-template-blog-archive .text-image-right-section .text p{
        -webkit-line-clamp: 12;
        line-clamp: 12;
    }

    .posts-cards-list{
        padding: 0;
    }

    .blog-post-header-section{
        padding-top: 1.5rem;
        z-index: 99;
        position: relative;
    }

    .blog-post-header-section .post-header-image{
        padding-top: 20px;
        text-align: center;
    }

    .anotation-content{
        margin-top: -100px;
        z-index: 9;
    }

    .anotation-content .container{
        max-width: 100%;
        padding: 0 20px;
    }

    .anotation-content .container p{
        width: 100%;
        padding: 120px 0 20px 0;
    }

    .table-of-contents{
        position: unset;
        order: -1;
        width: 100%;
        margin-top: 0;
        margin-bottom: 68px;
    }

    .table-of-contents .contents{
        padding: 68px 32px 32px 32px;
        background: #B0D7F6;
    }

    .post-content-section{
        max-width: 100vw;
    }

    .post-content-wrapper {
        flex-direction: column;
        max-width: 100%;
        padding: 0 !important;
        margin-top: -30px;
    }

    .post-content-wrapper .post-content{
        width: 100%;
        padding: 0 24px;
        overflow-x: hidden;
    }

    .author-section-yellow{
        position: relative;
    }

    .author-section-yellow .right-column{
        position: absolute;
        top: calc(100vw* -0.57);
        display: flex;
        justify-content: center;
        height: auto;
        padding: 0;
        left: 0;
    }

    .author-section-yellow .right-column img{
        width: auto;
        max-width: 85%;
        height: 100%;
    }

    .author-section-yellow .left-column{
        text-align: center;
        gap: 12px;
        padding: 0 55px;
        min-width: unset;
    }

    .author-section-yellow .left-column h2{
        margin-bottom: 12px;
    }

    .selected-content .new-comment form{
        gap: 16px;
    }

    .selected-content .new-comment form .site-btn{
        margin-top: 24px;
    }
}

@media (max-width: 610px) {

    .bottom-section-yellow .left-column h2, 
    .author-section-yellow .left-column h2{
        font-size: 28px;
        color: var(--sitly--darkblue);
    }

    .page-template-blog-archive .banner-section-blue .header-banner-center .detail-wrapper .title{
        color: var(--neutral-neutral-800, #304251);
        text-align: center;
        font-size: 28px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .page-template-blog-archive .banner-section-blue .home-banner-left .detail-wrapper .sub-title, 
    .page-template-blog-archive .text-image-right-section .text h3{
        color: var(--neutral-neutral-900, #22313E);
        font-size: 18px !important;
    }

    .page-template-blog-archive .text-image-right-section .text p{
        -webkit-line-clamp: 12;
        line-clamp: 12;
        font-size: 16px !important;
    }

    .search-filter-wrapper > .search-icon{
        padding: 8px 16px;
        display: block;
    }

    .search-filter-wrapper .sitly-input-container{
        display: none;
        width: 0;
        z-index: 999;
        transition: width 550ms ease-in-out;
    }

    .search-filter-wrapper .sitly-input-container.show{
        display: flex;
        width: 100%;
    }

    .search-filter-wrapper .posts-filters-wrapper{
        position: absolute;
        right: 0;
    }

    .anotation-content{
        margin-top: -40px;
    }

    .anotation-content .bottom-vector,
    .table-of-contents .bottom-vector{
        bottom: -17px;
    }

    .blog-post-header-section .banner-text-wrapper .title{
        font-size: 28px !important;
    }

    .blog-post-header-section .banner-text-wrapper{
        gap: 12px;
    }

    .blog-post-header-section .details-wrapper{
        gap: 4px;
    }

    .blog-post-header-section .details-wrapper p{
        font-size: 14px;
    }

    .post-header-image{
        height: 150px;
    }

    .anotation-content .container p{
        padding-top: 80px;
        font-size: 16px;
    }

    .table-of-contents{
        margin-bottom: 60px;
    }

    .table-of-contents .contents h4{
        font-size: 18px !important;
    }

    .table-of-contents .contents a{
        font-size: 16px !important;
    }

    .table-of-contents .contents{
        padding-left: 20px;
        padding-right: 20px;
    }

    .post-content .inner-wrapper h2{
        margin-bottom: 8px;
    }

    .post-content-wrapper .inner-wrapper{
        gap: 12px;
    }

    .post-content-wrapper .inner-wrapper img{
        margin: 28px 0;
    }

    .post-content-wrapper .inner-wrapper h6{
        margin: -28px 0 28px 0;
    }

    .post-content-wrapper p{
        font-size: 16px;
    }

    .post-content-wrapper .inner-wrapper li{
        font-size: 16px;
        margin: 12px 0;
    }

    .blue-banner{
        padding: 0;
        min-width: 120vw;
        margin: 28px 0 0 calc(-10vw - 24px);
    }

    .blue-banner > div{
        max-width: 100vw;
        margin: 0 auto;
        padding: 48px 32px;
        gap: 16px;
    }

    .blue-banner .btns-wrapper,
    .bottom-section-yellow .btns-wrapper{
        flex-direction: column;
        width: max-content;
        margin: 0 auto;
    }

    
    .bottom-section-yellow .btns-wrapper{
        margin: 0;
    }

    .blue-banner .btns-wrapper .site-btn,
    .bottom-section-yellow .btns-wrapper .site-btn{
        width: 100%;
    }

    .social-share-comments{
        flex-wrap: wrap;
        margin-top: 40px;
        gap: 40px;
        margin-bottom: 40px;
    }

    .social-share-comments .social-share{
        flex-basis: 100%;
        justify-content: center;
    }

    .page-template-blog-post .bottom-section-yellow{
        margin-bottom: 40px;
    }

    .related-articles h2{
        margin-bottom: 40px;
    }

    .page-content{
        gap: 40px;
        padding-bottom: 0;
    }

    .section-comments{
        gap: 40px;
    }

    .section-comments .title{
        margin-bottom: 0;
    }

    .section-comments .btn__wrapper{
        padding: 0;
    }

    .section-comments.banner-text-wrapper .btn__wrapper .comment-btn{
        padding: 12px 16px !important;
        justify-content: center;
    }

    .single-comment .comment-title,
    .single-comment .comment-author{
        flex-basis: 100%;
    }

    .single-comment{
        gap: 4px;
    }

    .single-comment:last-of-type{
        padding-bottom: 24px;
    }

    .breadcrumbs-section {
        margin-top: 50px;
    }

    .breadcrumbs-section #breadcrumbs{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        overflow: hidden;
    }

    .author-details .author-name{
        font-size: 24px !important;
        line-height: 150% !important;
    }

    .author-details span{
        font-size: 18px !important;
    }

    .post-author-page .author-page-content{
        padding-bottom: 0;
    }

    .post-content-wrapper .inner-wrapper blockquote{
        padding: 2em 2.75em;
    }

    .post-content-wrapper .inner-wrapper blockquote:after{
        width: 30px;
        background-size: contain;
        bottom: 22px;
    }

    .post-content-wrapper .inner-wrapper blockquote:before{
        top: 22px;
        width: 30px;
        background-size: contain;
    }

    .post-content .wp-block-image .wp-element-caption{
        margin-top: -10px ;
    }

    main {
        margin-top: 50px;
    }

    .banner-section-blue,
    .banner-section-yellow {
        padding-top: 57px !important;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .details {
        font-size: 14px;
    }

    .site-btn.large-btn-transparent-black {
        width: 100% !important;
        text-align: center;
    }

    .page-template-template__babysitter__profile__parents .right.days-wrapper.d-flex.align-items-center {
        padding: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .left {
        width: 25%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .calendar .routine-wrapper .routine .circle-wrapper {
        width: 75%;
        padding: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
        margin-left: 16px !important;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper #breadcrumbs{
        margin-top: 1rem;
    }

    .time-work-section .img-wrapper {
        top: -77px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title span:after,
    .banner-section-yellow .home-banner-left .detail-wrapper .title span:after,
    .sub-banner-section .sub-banner-right .detail-wrapper .title span:after {
        background-size: 10px 31px;
        width: 10px;
        height: 31px;
        bottom: 0px;
    }

    .modal .modal-dialog .modal-content .modal-body .field-wrapper {
        padding-left: 19px;
        padding-right: 19px;
    }

    .slider-section .sitter-card {
        box-shadow: 0px 0px 10px rgba(14, 39, 63, .18) !important;
    }

    .sitter-card-wrapper.slick-slide {
        padding: 8px 8px 0 8px;
    }

    .page-template-template__oppasjob .time-work-section .top-vector {
        min-height: 20px;
        top: -20px;
    }

    .page-template-template__oppasjob .time-work-section .top-vector svg path {
        fill: var(--sitly-paleblue);
    }

    .text-image-section .text-image-wrapper .right .name {
        font-size: 18px;
    }

    .text-image-section .bottom-button-text .text {
        padding: 0px 24px;
    }

    .top-banner-section .banner-text-wrapper .title span::before {
        content: "";
        position: absolute;
        left: -2px;
        background: var(--sitly-waterblue);
        height: 28px;
        width: 110%;
        z-index: -1;
    }

    .top-banner-section .banner-text-wrapper .title img {
        margin-left: -2px;
        height: 29px;
        margin-top: -3px;
    }

    .sub-banner-section .sub-banner-right .detail-wrapper .site-btn {
        margin-bottom: 0;
    }

    .job-portal .header-section {
        background: var(--sitly-white);
    }

    .job-portal .header-section .navbar .container {
        justify-content: center;
    }

    .job-portal .header-section .navbar .container .navbar-toggler {
        display: none;
    }

    .top-banner-section {
        padding-top: 130px !important;
        margin-top: 0px !important;
        min-height: auto !important;
    }

    .job-portal .top-banner-section .banner-text-wrapper .title {
        font-weight: 400;
        font-size: 24px;
        line-height: 110%;
    }

    .job-portal .top-banner-section .ratings {
        font-family: "Inter";
        font-style: normal;
        font-weight: 800;
        font-size: 16px;
        line-height: 120%;
    }

    .job-portal .babysitter-profile-section {
        margin-top: 70px;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper {
        flex-wrap: wrap;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .details-item {
        padding: 25px 24px 23px;
        border-bottom: 1px solid var(--sitly-brightgray);
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h3 {
        font-weight: 700;
        font-size: 18px;
        line-height: 150%;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h5 {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .details-item .distance a {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 150%;
        color: var(--sitly-aeroblue);
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
        max-width: 100vw;
        overflow: hidden;
        margin-bottom: 0;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
        width: 110%;
        max-width: 110%;
        position: relative;
        left: -5%;
        object-fit: cover;
        border-radius: 0;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .card-bg:last-child {
        margin-bottom: 0;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
        margin-left: 0;
        width: 100%;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper {
        padding-top: 0;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
        margin-bottom: 20px;
        position: relative;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        justify-content: center;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay::before {
        content: "";
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(2px);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        z-index: 4;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .site-btn {
        background: var(--sitly-aeroblue);
        border-radius: 16px;
        width: 215px;
        height: 40px;
        position: relative;
        z-index: 4;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper {
        margin: auto;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
        font-size: 14px;
    }

    .job-portal .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(1) {
        margin-left: 5px;
        font-weight: 600;
    }

    .job-portal .button-text-wrapper {
        margin-top: 32px;
        padding: 0 24px;
    }

    .job-portal .button-text-wrapper .text {
        font-size: 16px;
        line-height: 150%;
    }

    .job-portal .button-text-wrapper .site-btn {
        width: 100%;
        max-width: 100%;
    }

    .job-portal .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img {
        margin-bottom: 12px;
    }

    .job-portal .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images {
        display: none;
    }

    .contact-banner-section {
        margin-top: 0px;
        padding-top: 132px;
    }

    .page-template-template__babysitter__profile__parents .header-section .navbar-brand {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .header-section .site-btn.signup-btn {
        max-width: 72px;
        min-width: 72px;
        height: 33px;
    }

    .babysitter-profile-section {
        padding-top: 70px;
        margin-top: 0px !important;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper {
        flex-wrap: wrap;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item {
        padding: 25px 24px 23px;
        border-bottom: 1px solid var(--sitly-brightgray);
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h3 {
        font-weight: 700;
        font-size: 18px;
        line-height: 150%;
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h5 {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .distance a {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 150%;
        color: var(--sitly-aeroblue);
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details{
        margin-bottom: 24px;
        width: 100%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
        max-width: 100vw;
        overflow: hidden;
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
        width: 110%;
        max-width: 110%;
        position: relative;
        left: -5%;
        object-fit: cover;
        border-radius: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .card-bg:last-child {
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
        margin-left: 0;
        width: 100%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper {
        padding-top: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
        margin-bottom: 20px;
        position: relative;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        justify-content: center;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay::before {
        content: "";
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(2px);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        z-index: 4;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map .mobile-map-overlay .profile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper {
        margin: auto;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
        font-size: 14px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(1) {
        margin-left: 5px;
        font-weight: 600;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section {
        margin-top: 40px;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.language-wrapper .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .section-heading .title {
        font-weight: 400;
        font-size: 24px;
        line-height: 110%;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row {
        width: auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row::-webkit-scrollbar {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper {
        min-width: 87%;
        max-width: 100%;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .button-wrapper {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .header-section .navbar-brand {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .header-section .site-btn.signup-btn {
        max-width: 72px;
        min-width: 72px;
        height: 33px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper {
        flex-wrap: wrap;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-head .text {
        font-size: 18px;
        line-height: 150%;
        font-weight: 700;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item {
        padding: 25px 24px 23px;
        border-bottom: 1px solid var(--sitly-brightgray);
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h5 {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h1 {
        font-size: 24px;
        font-weight: 700;
        font-family: "Open Sans";
        line-height: 27px;
        margin-bottom: 6px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .profile-name h1 span {
        font-size: 16px;
        font-weight: 400;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .details-item .distance a {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 150%;
        color: var(--sitly-aeroblue);
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar {
        max-width: 100vw;
        overflow: hidden;
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar{
        aspect-ratio: 1 / 1.1;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .avatar img {
        width: 110%;
        max-width: 110%;
        position: relative;
        left: -5%;
        object-fit: cover;
        border-radius: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details {
        margin-left: 0;
        width: 100%;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper {
        padding-top: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper {
        padding-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .map {
        position: relative;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .button-wrapper,
    .sign-parent {
        margin: auto;
        position: fixed;
        bottom: 0;
        z-index: 99;
        left: 0;
        width: 100vw !important;
        padding: 16px 24px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) -5%, rgba(255, 255, 255, 1) 30%);
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper>.img-text-title {
        padding: 32px 24px 0 24px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.details-item {
        padding: 32px 24px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.babysitter-name-wrapper {
        padding: 0px 24px 32px 24px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card {
        border: none;
        padding: 32px 0;
        border-bottom: 1px solid var(--sitly-brightgray) !important;
        border-radius: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .left-profile-details .availability-card {
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.details-item.reviews-wrapper {
        padding: 8px 24px 12px 24px;
        border-bottom: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.details-item.reviews-wrapper .divider-dot {
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--sitly-maindarkblue);
        margin: 0 16px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .review-item {
        margin-bottom: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.review-wrapper .img-text-title .text,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.experience-wrapper .img-text-title .text,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.describe-wrapper .img-text-title .text,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper .img-text-title .text {
        font-size: 18px;
        line-height: 150%;
        font-weight: 700;
        margin-left: 0;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.map-wrapper .experience-wrapper .img-text-title .text {
        margin-left: 8px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper p,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper a,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom .left,
    .availability-card .card-bottom .line-wrapper .line .txt,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .right-profile-details .wrapper.summary-wrapper p,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper a,
    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.summary-wrapper p,
    .page-template-template__babysitter__profile__parents .line-wrapper .txt {
        font-size: 14px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-head {
        padding: 0 24px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .availability-card .card-bottom .left {
        width: fit-content !important;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt {
        font-size: 14px;
    }

    .page-template-template__babysitter__profile__parents .babysitter-profile-section .babysitter-profile-wrapper .wrapper.children-wrapper .detail-row .txt:nth-of-type(1) {
        margin-left: 5px;
        font-weight: 600;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section {
        margin-top: 40px;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .section-heading .title {
        font-weight: 400;
        font-size: 24px;
        line-height: 110%;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row::-webkit-scrollbar {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .rating-images {
        display: none;
    }

    .page-template-template__babysitter__profile__parents .baby-sitters-detail-section .button-wrapper {
        display: none;
    }

    .page-template-template__oppasjob .banner-section .container-fluid {
        padding: 0;
    }

    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-left {
        padding: 0 24px;
    }

    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-left .detail-wrapper .list-wrapper li {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews,
    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        color: var(--sitly-white);
    }

    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-right {
        padding: 0;
        margin-top: -27%;
        position: relative;
        z-index: -1;
    }

    .page-template-template__oppasjob .banner-section .container-fluid .home-banner-right .img-wrapper img {
        height: auto;
        width: 100%;
    }

    .slider-section {
        margin-top: 60px !important;
    }

    .slider-section .button-wrapper {
        margin-right: 24px;
    }

    .page-template-template__oppasjob .slider-section .section-heading {
        padding: 0;
        margin-bottom: 24px;
    }

    .page-template-template__oppasjob .slider-section .section-heading .title {
        font-size: 24px;
        line-height: 110%;
    }

    .page-template-template__oppasjob .slider-section .section-heading .sub-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .page-template-template__oppasjob .slider-section .custom-arrow {
        display: none !important;
    }

    .page-template-template__oppasjob .slider-section .slick-slider .slick-track,
    .page-template-template__oppasjob .slider-section .slick-slider .slick-list {
        padding: 0px 50px 0px 0px !important;
    }

    .page-template-template__oppasjob .slider-section .site-btn.large-btn-transparent {
        font-size: 16px;
        line-height: 150%;
        white-space: nowrap;
        text-align: center;
    }

    .page-template-template__oppasjob .slider-section .site-btn.large-btn-transparent img {
        display: none;
    }

    .page-template-template__oppasjob .search-neigh-section .section-heading .title {
        font-weight: 400;
        font-size: 28px;
        line-height: 110%;
    }

    .page-template-template__oppasjob .search-neigh-section .neigh-card-row {
        gap: 24px;
    }

    .page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper {
        padding: 0;
    }

    .page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card {
        margin-bottom: 0;
    }

    .page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .title {
        font-size: 18px;
    }

    .page-template-template__oppasjob .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .sub-title {
        font-size: 16px;
    }

    .page-template-template__oppasjob .search-neigh-section .bottom-button-text .site-btn.large-btn {
        height: 59px;
    }

    .page-template-template__oppasjob .search-neigh-section .bottom-button-text .text {
        font-size: 18px;
    }

    .page-template-template__oppasjob .baby-sitters-detail-section {
        margin-bottom: 60px;
    }

    .page-template-template__oppasjob .baby-sitters-detail-section .sitter-card-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .page-template-template__oppasjob .baby-sitters-detail-section .sitter-card-row::-webkit-scrollbar {
        display: none;
    }

    .page-template-template__oppasjob .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper {
        min-width: 280px;
    }

    .page-template-template__oppasjob .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card {
        width: 100%;
    }

    .page-template-template__oppasjob .sitters-map-section {
        margin-top: 60px;
        margin-bottom: -15px;
    }

    .page-template-template__oppasjob .sitters-map-section .container-fluid {
        padding: 0 !important;
    }

    .page-template-template__oppasjob .sitters-map-section .container-fluid .map-wrapper {
        padding: 0;
        margin: 0;
    }

    .page-template-template__oppasjob .sitters-map-section .container-fluid .map-wrapper .map-container iframe {
        border-radius: 0;
    }

    .page-template-template__oppasjob .time-work-section {
        padding-top: 44px;
    }

    .page-template-template__oppasjob .time-work-section .img-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }

    .page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper .mob-img {
        display: block;
    }

    .page-template-template__oppasjob .banner-section .home-banner-right .img-wrapper .desk-img {
        display: none;
    }

    .page-template-template__oppasjob .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 28px;
        font-weight: 400;
        font-family: "Lilita One";
        text-transform: uppercase;
        line-height: 30.8px;
    }

    .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper img {
        height: 100% !important;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .img-wrapper img {
        height: 100% !important;
    }

    .page-template-template__babysitter__city__job .header-section {
        background-color: var(--sitly-yellow);
    }

    .page-template-template__babysitter__city__job .header-section .container-fluid {
        padding: 0 !important;
    }

    .page-template-template__babysitter__city__job .header-section .navbar .navbar-collapse {
        background-color: var(--sitly-yellow);
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title {
        max-width: 85%;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title span::before {
        height: 30px;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .list-wrapper {
        margin: 12px 0 32px;
    }

    .page-template-template__babysitter__city__job .banner-section {
        padding-top: 30px;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid {
        padding: 0 !important;
        overflow: hidden;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left {
        padding: 0 24px;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left .detail-wrapper .banner-route-wrapper {
        padding-bottom: 27px;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left .detail-wrapper .list-wrapper li {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews,
    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        color: var(--sitly-white);
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-right {
        padding: 0;
        margin-top: -28%;
        position: relative;
        z-index: -1;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-right .img-wrapper {
        width: 110%;
        position: relative;
        left: -5%;
    }

    .page-template-template__babysitter__city__job .banner-section .container-fluid .home-banner-right .img-wrapper img {
        height: auto;
        width: 100%;
    }

    .page-template-template__babysitter__city__job .slider-section .section-heading {
        padding: 0;
        margin-bottom: 24px;
    }

    .page-template-template__babysitter__city__job .slider-section .section-heading .title {
        font-size: 24px;
        line-height: 110%;
    }

    .page-template-template__babysitter__city__job .slider-section .section-heading .sub-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .page-template-template__babysitter__city__job .slider-section .custom-arrow {
        display: none !important;
    }

    .page-template-template__babysitter__city__job .slider-section .slick-slider .slick-track,
    .page-template-template__babysitter__city__job .slider-section .slick-slider .slick-list {
        padding: 0 !important;
    }

    .page-template-template__babysitter__city__job .slider-section .site-btn.large-btn-transparent {
        font-size: 16px;
        line-height: 150%;
        white-space: nowrap;
        text-align: center;
    }

    .page-template-template__babysitter__city__job .slider-section .site-btn.large-btn-transparent img {
        display: none;
    }

    .page-template-template__babysitter__city__job .sitters-map-section {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .page-template-template__babysitter__city__job .sitters-map-section .container-fluid {
        padding: 0 !important;
    }

    .page-template-template__babysitter__city__job .sitters-map-section .container-fluid .map-wrapper {
        padding: 0;
        margin: 0;
    }

    .page-template-template__babysitter__city__job .sitters-map-section .container-fluid .map-wrapper .map-container iframe {
        border-radius: 0;
    }

    .page-template-template__babysitter__city__job .time-work-section {
        padding-top: 44px;
    }

    .page-template-template__babysitter__city__job .time-work-section .img-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }

    .page-template-template__babysitter__city__job .hear-parent-section .section-heading {
        padding: 0 24px;
    }

    .page-template-template__babysitter__city__job .hear-parent-section .section-heading .title {
        font-weight: 400;
        font-size: 24px;
        line-height: 120%;
        text-align: left;
    }

    .page-template-template__babysitter__city__job .hear-parent-section .section-heading .sub-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        text-align: left;
    }

    .page-template-template__babysitter__city__job .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 28px;
        font-weight: 400;
        font-family: "Lilita One";
        text-transform: uppercase;
        line-height: 30.8px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .banner-route-wrapper,
    .banner-section-yellow .home-banner-left .detail-wrapper .banner-route-wrapper {
        margin-top: 0px !important;
    }

    .about-details-section .about-details-wrapper .about-details-row .about-details .bg-title span {
        margin-bottom: 0px;
    }

    .banner-section {
        margin-top: 40px;
        margin-bottom: 80px;
        height: auto;
        background: transparent;
        padding: 0;
    }

    .banner-section .container-fluid {
        padding: 0;
    }

    .banner-section .banner-row {
        flex-direction: column-reverse;
    }

    .banner-section .home-banner-left,
    .page-template-template__about .banner-section .home-banner-right {
        padding: 0;
    }

    .banner-section .home-banner-left {
        background-image: url(../../assets/images/yellow-contact-banner-bg.png);
        background-position: center;
        background-size: 100% 100%;
        padding: 80px 24px !important;
        margin-top: -75px;
    }

    .banner-section .home-banner-right {
        max-width: 100vw;
        overflow: hidden;
    }

    .banner-section .home-banner-right .img-wrapper {
        width: 120% !important;
        position: relative;
        left: -10%;
        top: -35px;
        aspect-ratio: 1 / 0.8;
    }

    .banner-section .home-banner-right .img-wrapper img {
        width: 100%;
        object-fit: contain;
        height: auto;
        padding-top: 60px;
    }

    .banner-section .home-banner-left .detail-wrapper .title {
        font-size: 28px;
        font-weight: 400;
        font-family: "Lilita One";
        text-transform: uppercase;
        line-height: 30.8px;
    }

    .about-details-section {
        margin: 60px 0px !important;
    }

    .banner-section-blue .container-fluid,
    .banner-section-yellow .container-fluid {
        padding: 0;
    }

    .banner-section-blue .container-fluid .home-banner-left,
    .banner-section-yellow .container-fluid .home-banner-left {
        padding: 0 24px;
        min-height: unset;
    }

    .banner-section-blue.reverse .container-fluid .home-banner-left,
    .banner-section-yellow.reverse .container-fluid .home-banner-left {
        margin-bottom: 60px;
    }

    .banner-section-blue .container-fluid .home-banner-left .detail-wrapper .list-wrapper li,
    .banner-section-yellow .container-fluid .home-banner-left .detail-wrapper .list-wrapper li {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .banner-section-blue .container-fluid .home-banner-right,
    .banner-section-yellow .container-fluid .home-banner-right {
        overflow: visible;
        overflow-x: clip;
    }

    /* .banner-section-blue .container-fluid .home-banner-right.norating,
    .banner-section-yellow .container-fluid .home-banner-right.norating {
        margin-top: -30% !important;
    } */

    .banner-section-blue.reverse .container-fluid .home-banner-right,
    .banner-section-yellow.reverse .container-fluid .home-banner-right {
        margin-bottom: 40px;
    }

    .banner-section-blue .container-fluid .home-banner-right .img-wrapper img,
    .banner-section-yellow .container-fluid .home-banner-right .img-wrapper img {
        height: auto;
        width: 100%;
        position: inherit;
        bottom: unset;
    }

    .sub-banner-section {
        position: relative;
        min-height: auto;
        padding-bottom: 60px;
    }

    .sub-banner-section::after {
        content: "";
        display: block;
        width: 100%;
        height: 35px;
        background: url(../images/sub-banner-bottom-bg.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        top: 99%;
        left: 0;
    }

    .sub-banner-section .sub-banner-left {
        display: none;
    }

    .sub-banner-section .sub-banner-right {
        padding: 0;
    }

    .banner-section-blue .home-banner-right .img-wrapper img,
    .banner-section-yellow .home-banner-right .img-wrapper img {
        display: block;
        object-fit: cover;
    }

    .page-template-template__how-it-work-for-babysitters .header-section,
    .page-template-template__how-it-work-for-parents .header-section,
    .page-template-template__how-it-work-for-babysitters .header-section .navbar .navbar-collapse,
    .page-template-template__how-it-work-for-parents .header-section .navbar .navbar-collapse {
        background: var(--sitly-white);
    }

    .page-template-template__how-it-work-for-babysitters .header-section svg.header-vector path,
    .page-template-template__how-it-work-for-parents .header-section svg.header-vector path {
        fill: var(--sitly-white);
    }

    .banner-section-blue .home-banner-left .detail-wrapper .title,
    .banner-section-yellow .home-banner-left .detail-wrapper .title {
        font-size: 28px;
        font-weight: 400;
        font-family: "Lilita One";
        text-transform: uppercase;
        line-height: 30.8px;
    }

    footer .top-vector svg {
        width: 100%;
    }

    .footer-link-section {
        border: none;
        padding: 40px 0 0 0;
    }

    .footer-link-section .footer-link-wrapper .social-link-wrapper,
    .footer-link-section .footer-app-btns {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--sitly-brightgray);
    }

    .footer-app-btns img {
        height: calc(0.125 * 100vw) !important;
        object-fit: contain;
        width: auto !important;
        max-width: unset;
        max-height: 64px;
    }

    .footer-link-section .footer-link-wrapper .social-link-wrapper ul li a {
        font-size: 16px;
    }

    .footer-link-section .footer-link-wrapper .social-links {
        display: block !important;
        margin-top: 30px;
    }

    .footer-link-section .footer-link-wrapper .social-links .social-links-list {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .footer-link-section .footer-link-wrapper .social-links .social-links-list li {
        margin-bottom: 0px;
    }

    .bottom-footer-section {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .bottom-footer-section .bottom-footer-wrapper .row {
        flex-direction: column-reverse;
    }

    .bottom-footer-section .bottom-footer-wrapper .row .mid-footer,
    .bottom-footer-section .bottom-footer-wrapper .mid-footer .text {
        font-family: 'Rubik';
        font-style: normal;
        font-weight: 500 !important;
        font-size: 15px !important;
        line-height: 180% !important;
    }

    .bottom-footer-section .bottom-footer-wrapper .row .mid-footer .btn {
        color: var(--sitly-maindarkblue);
        font-weight: 500 !important;
        font-size: 15px;
        padding: 15px 10px;
    }

    .bottom-footer-section .bottom-footer-wrapper .left-footer ul li a {
        font-size: 14px;
        color: var(--sitly-black) !important;
    }

    .modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type .type {
        width: 50%;
    }

    .modal.reviews-modal .modal-dialog .modal-content .modal-header .select-type {
        width: 100%;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .more {
        margin-top: 8px;
    }

    .header-section {
        position: absolute;
        padding: 20px 0px 0px;
        max-width: 100vw;
        max-height: max-content;
    }

    .header-section:has(.navbar-collapse.collapse.show) {
        background: var(--sitly-white) !important;
    }

    .header-section .navbar .navbar-nav {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }

    .header-section .navbar .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }

    .header-section .navbar .navbar-nav .nav-item .dropdown-menu {
        position: absolute;
        top: 80%;
        width: 100%;
    }

    .header-section .navbar .navbar-nav .nav-item:nth-of-type(4),
    .header-section .navbar .navbar-nav .nav-item:nth-of-type(5) {
        width: 48%;
        margin: 0;
    }

    .header-section .navbar .navbar-nav .nav-item:nth-of-type(4) .site-btn.small-btn,
    .header-section .navbar .navbar-nav .nav-item:nth-of-type(5) .site-btn.small-btn {
        width: 100%;
    }

    .navbar-brand {
        width: 71px;
    }

    .modal .modal-dialog .modal-content .modal-header .btn-close {
        padding: 24px 24px 12px 24px;
    }

    .modal .modal-dialog {
        margin: 0;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .action-wrapper {
        flex-wrap: wrap;
    }

    .modal .modal-dialog .modal-content {
        padding: 10px 0px;
        height: 100vh;
        border-radius: 0;
    }

    .modal-dialog-scrollable {
        height: 100vh;
    }

    .modal.filters-modal .modal-content {
        max-width: 100%;
    }

    .modal.reviews-modal .modal-dialog .modal-content .modal-body {
        padding: 10px 15px;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body {
        height: 78vh;
        padding: 40px 5px 20px 15px !important;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row {
        flex-wrap: wrap;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card {
        flex-basis: 100%;
        flex-direction: row !important;
        gap: 16px;
        justify-content: flex-start;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.childcare-wrapper .child-card-row .child-card .child-card-title {
        margin-top: 0px;
        text-align: left !important;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .wrapper-row .left {
        width: 70%;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.resume-wrapper .action-wrapper .filter-days {
        white-space: nowrap;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row {
        margin-bottom: 0;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row .wrapper {
        flex-basis: 100%;
        margin-bottom: 16px;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper .data-wrapper .wrapper-row .wrapper .form-check {
        width: 100%;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-left: 0;
    }

    .modal .child-wrapper * {
        text-align: left !important;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-footer {
        padding: 10px 15px;
        width: 100vw !important;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper .filter-days .btn-text {
        padding-top: 12px;
        padding-bottom: 12px;
        display: flex;
        justify-content: space-between;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper .filter-days .btn-dropdown {
        border-top: 1px solid var(--sitly-maindarkblue);
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        display: none;
        padding-bottom: 12px;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper .filter-days .btn-dropdown.show {
        display: block;
    }

    .modal.filters-modal .modal-dialog .modal-content .modal-body .section-wrapper.availability-wrapper .action-wrapper .filter-days .btn-dropdown .availabilty-item {
        margin-top: 12px;
    }

    .row {
        margin: 0 !important;
    }

    .container {
        padding: 0 24px;
    }

    .site-btn.large-btn-transparent {
        height: 48px;
        border-radius: 16px;
    }

    .page-id-3 main {
        padding: 0 24px !important;
    }

    .banner-text-wrapper .btn__wrapper a {
        padding: 12px 38px !important;
        width: 50%;
    }

    .site-btn {
        font-size: 14px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper,
    .hear-parent-section .hear-parent-wrapper .left-img,
    .hear-parent-section .hear-parent-wrapper .right-img,
    .sitters-map-section .container-fluid,
    .sitters-map-section .container-fluid .map-wrapper,
    .time-work-section .details-row .time-work-details:nth-of-type(2) {
        padding: 0;
    }

    .page-template-template__about {
        text-align: center;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper {
        width: 100%;
        padding: 8px 8px 0;
    }

    .baby-sitters-detail-section.carousel .container {
        padding-right: 0;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card {
        box-shadow: 0px 0px 10px rgba(14, 39, 63, .18) !important;
        margin-bottom: 10px;
    }

    .time-work-section .accordion-button::after,
    .qa-section .qa-left .qa-details .img-wrapper,
    .stand-section .stand-right .title {
        display: none;
    }

    .time-work-section .accordion .accordion-button {
        justify-content: center;
        color: var(--sitly-pink);
        padding: 0;
        margin-top: 24px;
    }

    .accordion .accordion-button {
        font-family: "Open Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        box-shadow: unset;
    }

    .accordion-button {
        background: 0 0 !important;
    }

    .accordion-item {
        background: 0 0;
    }

    .accordion-button:focus {
        box-shadow: none !important;
    }

    .hear-parent-section {
        padding: 80px 0;
    }

    .baby-sitters-detail-section .section-heading .title {
        font-size: 24px;
        line-height: 26.4px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper {
        flex-wrap: wrap;
        width: 100%;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters {
        width: calc(33.33% - 6px);
        display: none;
    }

    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters:first-of-type,
    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters:last-child,
    .baby-sitters-detail-section .section-heading .filter-wrapper .action-wrapper .filters:nth-of-type(2) {
        width: calc(33.33% - 6px);
        display: flex;
    }

    .baby-sitters-detail-section .sitter-card-row {
        row-gap: 24px;
        margin: 0px;
    }

    .baby-sitters-detail-section .sitter-card-row .sitter-card-wrapper .sitter-card .thumbnail-img {
        max-height: 220px;
    }

    .baby-sitters-detail-section .button-wrapper {
        margin-top: 24px;
    }

    .baby-sitters-detail-section .button-wrapper .site-btn.large-btn-transparent,
    .stand-section .bottom-vector img,
    .text-image-section.text-image-left-section .text-image-wrapper .left .step .number,
    .text-image-section.text-image-left-section .text-image-wrapper .left .step .step-text,
    .bottom-vector img {
        width: 100%;
    }

    .sitters-map-section .bottom-text,
    .sitters-map-section .section-heading {
        padding: 0 24px;
    }

    .sitters-map-section .section-heading .title {
        margin-bottom: 12px;
        font-weight: 400;
        font-size: 28px;
        line-height: 110%;
    }

    .sitters-map-section .container-fluid .map-wrapper .map-container iframe {
        border-radius: 0;
    }

    .sitters-map-section .bottom-text .text {
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
    }

    .time-work-section .section-heading {
        margin-bottom: 16px;
    }

    .time-work-section .section-heading .title {
        padding: 0 40px;
        font-weight: 400;
        font-size: 28px;
        line-height: 110%;
    }

    .time-work-section .mobile-read-more-btn,
    .time-work-section .section-heading .title span {
        display: block;
    }

    .time-work-section .bottom-button-text .text {
        margin-bottom: 12px;
    }

    .time-work-section .bottom-button-text .site-btn.large-btn {
        height: 56px;
    }

    .hear-parent-section .hear-parent-wrapper {
        padding: 0;
        width: auto;
    }

    .hear-parent-section .hear-parent-wrapper .img-row {
        gap: 16px;
        min-height: 390px;
    }

    .hear-parent-section .hear-parent-wrapper .left-img {
        max-width: 285px;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .img-wrapper {
        height: 385px;
        position: relative;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .img-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .img-wrapper .thumbnail-text,
    .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper .thumbnail-text {
        padding-right: 0px !important;
        width: calc(100% - 48px);
        left: 24px !important;
        bottom: 37px !important;
    }

    .page-template-template__oppas .hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text.thumbnail-text-top .text {
        padding-right: 0px !important;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .img-wrapper .thumbnail-text .text,
    .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper .thumbnail-text .text {
        font-size: 18px !important;
        line-height: 110% !important;
    }

    .hear-parent-section .hear-parent-wrapper .left-img .thumbnail-text,
    .hear-parent-section .hear-parent-wrapper .right-img .thumbnail-text {
        bottom: 39px;
    }

    .hear-parent-section .hear-parent-wrapper .action a {
        font-size: 16px;
    }

    .hear-parent-section .hear-parent-wrapper .right-img {
        display: flex;
        max-width: none;
        width: auto;
        gap: 16px;
    }

    .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper {
        width: 285px;
        margin-bottom: 0 !important;
        height: 385px;
        position: relative;
        border-radius: 12% 20% 13%;
        overflow: hidden;
    }

    .page-template-template__oppas .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper:last-child {
        padding-right: 10px;
    }

    .hear-parent-section .hear-parent-wrapper .right-img .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .qa-section .qa-left .qa-details .title {
        font-size: 28px !important;
        line-height: 110% !important;
    }

    .seo-section .seo-details-wrapper .details-wrapper .title {
        font-size: 28px;
        line-height: 110%;
        margin-bottom: 16px;
    }

    .seo-section .seo-details-wrapper .details-wrapper .moreless-button,
    .stand-section .stand-right p {
        font-family: "Open Sans";
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
    }

    .seo-section .seo-details-wrapper .details-wrapper .sub-title {
        font-size: 16px !important;
    }

    .seo-section .seo-details-wrapper .details-wrapper .moreless-button {
        font-style: normal;
    }

    .stand-section {
        background: url(../images/stand-bg.jpg) center/cover no-repeat;
        position: relative;
    }

    .stand-section .bottom-vector {
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        z-index: 1;
        display: flex;
        align-items: flex-end;
    }

    .stand-section .stand-right p {
        font-style: normal;
        color: var(--sitly-white);
        text-align: center;
        max-width: 85%;
        margin: auto;
    }

    .text-image-section .text-image-wrapper,
    .text-image-section.text-image-left-section {
        margin: 60px auto !important;
    }

    .text-image-section.text-image-left-section .text-image-wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        background-image: url(../../assets/images/yellow-text-img-bg.png);
        background-position: bottom center;
        background-size: 130% 80%;
        background-repeat: no-repeat;
    }

    .text-image-section.text-image-right-section .text-image-wrapper {
        background-image: url(../../assets/images/blue-text-img-bg.png);
        background-position: bottom center;
        background-size: 130% 80%;
        background-repeat: no-repeat;
    }

    .text-image-section.text-image-left-section .text-image-wrapper .right-img {
        margin-top: 0 !important;
        text-align: center !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .text-image-section.text-image-left-section .text-image-wrapper .right-img,
    .text-image-section .text-image-wrapper .left.left-img{
        height: unset !important;
        width: 80% !important;
        aspect-ratio: 1 / 0.8477;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .text-image-section .text-image-wrapper .left.left-img img,
    .text-image-section.text-image-left-section .text-image-wrapper .right-img img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
        object-position: center;
    }

    .text-image-section.text-image-left-section .text-image-wrapper .left {
        padding: 47px 24px 40px !important;
        background: 0 0 !important;
        margin-top: -100px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .text-image-section .text-image-wrapper .right .step,
    .text-image-section.text-image-left-section .text-image-wrapper .left .step {
        width: 100%;
        flex-wrap: wrap;
    }

    .text-image-section .text-image-wrapper {
        flex-wrap: wrap;
        padding: 0;
    }

    .text-image-section .text-image-wrapper .left.left-img {
        margin-top: 0 !important;
        text-align: center;
        position: relative;
        z-index: 1;
        flex-basis: 110% !important;
    }

    .text-image-section .text-image-wrapper .right {
        padding: 47px 24px 40px;
        background-repeat: no-repeat;
        background-size: 130% 100%;
        margin-top: -100px;
    }

    .text-image-section .text-image-wrapper .right .step .number,
    .text-image-section .text-image-wrapper .right .step .step-text {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .error404 .no-page-section {
        background-size: cover;
        padding: 122px 24px 71px;
        margin-bottom: 0;
        margin-top: 180px;
    }

    .error404 main {
        min-height: unset;
    }

    .error404 .no-page-section .img-wrapper {
        top: -100px;
    }

    .error404 .no-page-section .section-heading .sub-title {
        font-size: 18px;
        line-height: 150%;
    }

    .error404 .no-page-section .bottom-button-text .text {
        font-size: 16px;
        line-height: 150%;
        max-width: 95%;
    }

    .error404 .no-page-section .site-btn.large-btn {
        width: 100%;
    }

    .error404 .footer-link-section {
        padding-top: 30px;
    }

    .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card {
        margin-bottom: 0;
    }

    .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .title {
        font-size: 18px;
    }

    .search-neigh-section .neigh-card-row .neigh-card-wrapper .neigh-card .left .sub-title {
        font-size: 16px;
    }

    .search-neigh-section .section-heading .title {
        font-weight: 400;
        font-size: 28px;
        line-height: 110%;
    }

    .search-neigh-section .neigh-card-row {
        gap: 24px;
    }

    .search-neigh-section .neigh-card-row .neigh-card-wrapper {
        padding: 0;
        width: 100%;
    }

    .search-neigh-section .bottom-button-text .site-btn.large-btn {
        height: 59px;
    }

    .search-neigh-section .bottom-button-text .text {
        font-size: 18px;
    }

    .baby-sitters-detail-section {
        margin-bottom: 100px;
    }

    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        width: fit-content;
    }

    nav.page-navigation .page-item a {
        width: 30px;
        height: 30px;
        margin-right: 5px;
        border-radius: 8px !important;
    }

    .header-section .login__header {
        margin-right: 20px !important;
    }

    .sitters-map-section .section-heading .title {
        font-size: 24px;
        line-height: 26px;
        text-align: center;
    }

    .hear-parent-section .section-heading {
        padding: 0 24px;
        text-align: center !important;
    }

    .hear-parent-section .section-heading .title {
        font-size: 24px;
        line-height: 26px;
        text-align: center;
    }

    .hear-parent-section .section-heading .sub-title {
        font-size: 16px !important;
        text-align: center;
    }

    .hear-parent-section .container,
    .sitters-map-section .container {
        padding-right: 0px;
    }

    #filtersModal #searchform .modal-body .day-filter-desktop {
        display: none !important;
    }

    #filtersModal #searchform .modal-body .day-filter-mobile {
        display: block !important;
    }

    .hourly-wrapper>.action-wrapper,
    .day-filter>.action-wrapper {
        white-space: nowrap !important;
        /* Prevent text from wrapping to the next line */
        overflow-x: scroll !important;
        /* Enable horizontal scrolling when content overflows */
        display: inline-block !important;
        /* Ensure the container expands to fit its content */
        width: 200% !important;
        /* Limit the width to the container's width */
    }

    .hourly-wrapper>.action-wrapper>div,
    .day-filter>.action-wrapper>div {
        float: left;
        /* width: 25%; */
    }

    .hourly-wrapper,
    .day-filter {
        max-width: 100% !important;
        overflow-y: auto;
    }

    .slider-section .site-btn.large-btn-transparent {
        display: inline-block;
        height: unset;
        min-height: 48px;
        white-space: inherit !important;
    }

    .modal .modal-dialog .modal-content .modal-body .field-wrapper .input-field-wrapper .bottom-text{
        flex-wrap: wrap;
    }
}

@media screen and (-ms-high-contrast: active) {
    .toggle-track {
        border-radius: 0;
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.loader1 {
    animation: rotation 1s infinite linear;
}


.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: #ffffff;
    font-size: 4px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

#reset-password .button-wrapper .loader,
#login .button-wrapper .loader,
#sign-up .button-wrapper .loader {
    color: var(--sitly-pink);
    margin: 15px auto !important;
}

@-webkit-keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.modal.filters-modal .site-btn {
    min-width: 150px;
}



.cookies-modal h3 {
    font-size: 20px !important;
    color: #22313E !important;
}

.cookies-modal p,
.cookiesPrefCheckbox {
    font-size: 14px !important;
    color: #22313E;
}

.modal-cookies-body {
    padding: 20px;
}

#cookiesPref,
.cookieURL {
    color: #B9439B;
    font-size: 14px;
    cursor: pointer;
}

#cookiesSave,
#cookiesAcceptAll {
    font-size: 14px;
    font-weight: 700;
    background: var(--sitly-pink);
    margin-left: 20px;
    cursor: pointer;
    color: #FFF;
    border-radius: 12px;
    padding: 8px 20px;
}

.cookies-modal .btn-close {
    padding: 10px 30px !important;
}

.cookiesPrefCheckbox input[type="checkbox"] {
    accent-color: #B9439B;
}


@media (max-width: 911px) {

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .banner-section-blue .home-banner-right .img-wrapper img,
    .banner-section-yellow .home-banner-right .img-wrapper img{
        top: 20px;
        left: 20px;
    }

    .elementor-popup-modal .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 2% !important;
    }
}

@media (max-width: 610px) {

    .banner-section-blue .container-fluid .home-banner-left,
    .banner-section-yellow .container-fluid .home-banner-left {
        align-items: flex-start;
    }

    .rating__stars__value>svg {
        width: 20px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        font-size: 13px;
    }

    .button-rating-wrapper>.button>.site-btn.large-btn {
        min-width: unset;
        font-size: 14px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper .button,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper .button {
        margin-right: 10px;
        margin-left: -10px;
    }

    .banner-section-blue .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews,
    .banner-section-yellow .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .reviews,
    .banner-section-blue .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span,
    .banner-section-yellow .container-fluid .home-banner-left .detail-wrapper .button-rating-wrapper .ratings .images span {
        color: var(--sitly-darkgunmetal);
    }

    .banner-section-blue .home-banner-left .detail-wrapper .text-with-link,
    .banner-section-yellow .home-banner-left .detail-wrapper .text-with-link {
        margin-bottom: 0;
        font-size: 11px;
        margin-top: 0px;
    }

    .banner-section-blue .detail-wrapper,
    .banner-section-yellow .detail-wrapper {
        margin-bottom: 40px;
    }

    .banner-section-blue .home-banner-left .detail-wrapper .button-rating-wrapper,
    .banner-section-yellow .home-banner-left .detail-wrapper .button-rating-wrapper {
        justify-content: space-between;
    }

    .elementor-popup-modal .gform_title {
        width: 80%;
    }
}