@charset "UTF-8";
/* ===

Theme Name: Cleanster.com
Author: Koval Web
Author URI: https://kovalweb.com/
Description: Website development by Koval Web
Tags: html5, css3, sass, gulp
Version: 1.0

0. Root
1. Content
    1.1 Fonts
    1.2 Base
    1.3 Typography
2. General
3. Components
4. Sections
5. Media

=== */
/* === 0. Root === */
:root {
    --font-family: "Inter";
    --font-size: 16px;
    --font-weight: 400;
    --line-height: 1.5;
    --heading-font-family: "Inter";
    --heading-font-weight: 600;
    --heading-line-height: 1.4;
    --accent: #DE2180;
    --accent-hover: #BF1D6E;
    --base: #ffffff;
    --text: #0f141a;
    --text-secondary: #66696e;
    --link: #d0008c;
    --border: #d9dadd;
    --placeholder: #909090;
    --error: #ff3d0d;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, footer, header, main, nav, section {
    display: block;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button {
    -webkit-appearance: button;
}

button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

/* === 1. Content === */
@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v12-latin/inter-v12-latin-300.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v12-latin/inter-v12-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v12-latin/inter-v12-latin-500.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v12-latin/inter-v12-latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v12-latin/inter-v12-latin-700.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size);
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-size: 1rem;
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    line-height: var(--line-height);
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    color: var(--text);
    background-color: #f0f2f5;
}

header ul, header ol, footer ul, footer ol, aside ul, aside ol, nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main {
    position: relative;
    min-height: 100dvh;
}

.main-body {
    position: relative;
    max-width: 1040px;
    min-height: 100dvh;
    margin: 0 auto;
    background-color: var(--base);
    box-shadow: 0 0 2rem 0.125rem rgba(102, 105, 110, 0.08);
    padding: 2rem 1.125rem;
    z-index: 1;
}

@media (max-width: 600px) {
    html {
        overflow-x: hidden;
    }

    .main-body {
        overflow: hidden;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    padding: 0;
    margin: 0 0 2rem 0;
}

h1, .h1 {
    font-size: 3rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 2rem 0;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--link);
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

img._cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

b, strong {
    font-weight: 600;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

mark {
    padding: 0.2em;
    background: var(--accent);
    color: var(--base);
}

small {
    font-size: 0.85rem;
}

blockquote {
    padding: 0 0 0 1.25em;
    font-style: italic;
    border-left: 2px solid var(--accent);
}

blockquote p {
    margin-bottom: 0 !important;
}

blockquote footer {
    color: var(--accent);
    font-style: normal;
    padding-top: 0.8em;
}

.article {
    --margin: 2rem;
}

.article.article-md {
    --margin: 1.5rem;
}

.article > * {
    margin-bottom: var(--margin);
}

.article > *:last-child {
    margin-bottom: 0;
}

.article h2, .article h3, .article h4, .article h5, .article h6 {
    margin-top: calc(var(--margin) + 0.5rem);
    text-align: left;
}

.article h2:first-child, .article h3:first-child, .article h4:first-child, .article h5:first-child, .article h6:first-child {
    margin-top: 0;
}

.article ul, .article ol {
    list-style: none;
    margin: 0 0 var(--margin) 0;
    padding: 0;
}

.article ul li, .article ol li {
    position: relative;
    margin-bottom: 0.25rem;
}

.article ul li:last-child, .article ol li:last-child {
    margin-bottom: 0;
}

.article ul li::before, .article ol li::before {
    line-height: var(--line-height);
    min-width: 0.75rem;
    margin-right: 0.5rem;
}

.article ul li::before {
    content: "•";
}

.article ol {
    counter-reset: item;
}

.article ol li::before {
    content: counter(item) ".";
    counter-increment: item;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h3 {
        font-size: 1.75rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }

    h4, .h4 {
        font-size: 1.25rem;
    }

    h5, .h5 {
        font-size: 1.125rem;
    }
}
/* === 2. General === */
.aspect-ratio {
    --aspect-ratio-size: 100%;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.aspect-ratio::after {
    content: "";
    float: left;
    margin-top: 100%;
}

.aspect-ratio._3x4::after {
    margin-top: 133.33333%;
}

.aspect-ratio._4x3::after {
    margin-top: 75%;
}

.aspect-ratio._16x9::after {
    margin-top: 56.25%;
}

.aspect-ratio._custom::after {
    margin-top: var(--aspect-ratio-size);
}

.aspect-ratio > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text._center {
    text-align: center;
}

.text._right {
    text-align: right;
}

.text._justify {
    text-align: justify;
}

.text._row {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text._row._2 {
    -webkit-line-clamp: 2;
}

.text._row._3 {
    -webkit-line-clamp: 3;
}

.color-accent {
    color: var(--accent);
}

.color-text {
    color: var(--text);
}

.color-text-secondaty {
    color: var(--text-secondary);
}

.list-style-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fz-13 {
    font-size: 0.8125rem;
}

.fz-14 {
    font-size: 0.875rem;
}

.fz-24 {
    font-size: 1.5rem;
}

.fw-700 {
    font-weight: 700;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.line-through {
    text-decoration: line-through;
}

.h-0_5rem {
    height: 0.5rem;
}

.h-1rem {
    height: 1rem;
}

.h-1_5rem {
    height: 1.5rem;
}

.h-2rem {
    height: 2rem;
}

.h-2_5rem {
    height: 2rem;
}

.h-3rem {
    height: 3rem;
}

/* === 3. Components === */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -1rem -1rem;
}

.btn-group .btn, .btn-group .btn-link {
    margin: 0 0 1rem 1rem;
}

.btn-group._center {
    justify-content: center;
}

.btn {
    --btn-ripple-width: 100%;
    --btn-ripple-duration: 0.4s;
    position: relative;
    display: inline-flex;
    justify-content: center;
    font-size: 0.875rem;
    font-family: var(--font-family), sans-serif;
    font-weight: 600;
    line-height: 1.5;
    color: var(--base);
    fill: var(--base);
    background-color: var(--accent);
    text-decoration: none;
    padding: 0.75rem 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.375rem;
    transition: color var(--btn-ripple-duration), fill var(--btn-ripple-duration);
}

.btn.loading span {
    opacity: 0;
}

.btn.loading .btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.btn.disabled, .btn:disabled {
    background-color: #d4d7dc;
    pointer-events: none;
}

.btn .btn-loader {
    display: none;
}

.btn > span:not(.btn-ripple-hover), .btn > div:not(.btn-ripple-hover), .btn > svg:not(.btn-ripple-hover) {
    position: relative;
    z-index: 1;
}

.btn .btn-arrow-icon {
    position: absolute !important;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    stroke: currentColor;
    fill: none;
}

.btn._outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: 0 2px 4px 0 #edeeef;
}

.btn._outline:hover {
    color: var(--text);
}

.btn._outline .btn-ripple-hover {
    background-color: var(--border);
}

.btn._rounded {
    border-radius: 10rem;
}

.btn._wide {
    display: flex;
    width: 100%;
}

.btn:focus {
    outline: none;
}

.btn:hover {
    color: var(--base);
    fill: var(--base);
    text-decoration: none;
}

.btn:hover .btn-ripple-hover {
    width: calc(var(--btn-ripple-width) * 2.5);
    padding-top: calc(var(--btn-ripple-width) * 2.5);
}

.btn-ripple-hover {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--accent-hover);
    transform: translate(-50%, -50%);
    transition: width var(--btn-ripple-duration), padding-top var(--btn-ripple-duration);
}

.btn-link {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: var(--accent);
}

.btn-link svg:first-child {
    margin-right: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

*::-webkit-input-placeholder,
*::placeholder {
    color: var(--placeholder);
    opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -0.5rem 0;
}

.form-row._nowrap {
    flex-wrap: nowrap;
}

.form-row.gx-0_5rem {
    margin: -1rem -0.25rem 0;
}

.form-row.gx-0_5rem .form-col {
    padding: 0 0.25rem;
}

.form-col {
    padding: 0 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.form-col-auto {
    width: auto;
}

.form-label,
.form-control {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    width: 100%;
    padding: 0.84375rem 0.75rem;
    margin: 0;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.form-control {
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    border-color: var(--border);
    padding-top: 1.375rem;
    padding-bottom: 0.3125rem;
    background: transparent;
    outline: none;
    color: var(--text);
    box-shadow: none;
    appearance: none;
}

.form-control._money {
    background-image: url("../img/ic-money.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.125rem;
    padding-right: 2.75rem;
}

.form-control::-webkit-outer-spin-button, .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control:focus {
    border-color: var(--accent);
}

.form-control:disabled {
    opacity: 0.5;
    background: var(--base);
}

.select {
    position: relative;
}

.select._styled::after {
    width: 1.125rem;
    height: 1.75rem;
    margin-top: -0.875rem;
    background-image: url(../img/dropdown-icon.svg);
}

.select select {
    padding-right: 2rem;
}

.select::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: -0.5625rem;
    pointer-events: none;
    background-image: url(../img/arrow-down-18px.svg);
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.select .form-control {
    padding-top: 0.84375rem;
    padding-bottom: 0.84375rem;
    box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
}

.form-label {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--placeholder);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    z-index: 1;
}

textarea {
    height: auto;
    resize: none;
}

.dcd-time {
    width: 100%;
}

.dcdt-heading {
    font-weight: 500;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
}

.dcdt-list {
    display: flex;
    font-size: 0.875rem;
    font-weight: 500;
    margin: -0.5rem 0 0 -0.5rem;
}

.dcdt-list > li {
    min-width: 3.5rem;
    padding: 0.375rem 0.5rem;
    line-height: 1.5;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    margin: 0.5rem 0 0 0.5rem;
    text-align: center;
    cursor: pointer;
}

.dcdt-list > li:hover {
    border-color: var(--accent);
}

.dcdt-list > li.active {
    background-color: var(--accent);
    color: var(--base);
    border-color: var(--accent);
    cursor: text;
}

.dcdt-list > li.disabled {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: rgba(0, 0, 0, 0.5);
    cursor: text;
}

.dcdt-time {
    flex-wrap: wrap;
}

.dcdt-time-format {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dcd-calendar {
    margin-bottom: 0.5rem;
}

.dcd-calendar .vanilla-calendar {
    padding: 0;
    width: 100%;
}

.form-item {
    position: relative;
    display: block;
}

.form-item.focus .form-label {
    font-size: 0.625rem;
    font-weight: 500;
    transform: translateY(-0.375rem);
}

.form-item._lg .form-control {
    padding-top: 1.9375rem;
    padding-bottom: 0.625rem;
    padding-right: 3rem;
}

.form-item._lg .form-control:focus {
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.16);
    border-color: var(--border);
}

.form-item._lg .form-label {
    padding: 1.28125rem 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-item._lg.focus .form-label {
    font-size: 0.75rem;
    transform: translateY(-0.625rem);
}

.form-item.error input,
.form-item.error textarea,
.form-item.error select {
    border-color: var(--error);
}

.form-item div.error {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--error);
    font-size: 0.75rem;
    line-height: 1;
    margin: 0.125rem 0 0 0;
    margin-top: 0.125rem;
    z-index: 1;
}

.form-item._placeholder-pw input::placeholder {
    font-size: 1.25rem;
}

.form-item._error-sm div.error {
    font-size: 0.625rem;
    margin: 0;
}

.form-item._error-top div.error {
    top: initial;
    bottom: 100%;
}

.form-item-promocode .form-control {
    padding-right: 2.75rem;
}

.form-item-promocode.is-promocode .btn-add-promocode {
    opacity: 0;
    visibility: hidden;
}

.form-item-promocode.is-promocode .btn-remove-promocode {
    opacity: 1;
    visibility: visible;
}

.btn-add-promocode {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    line-height: 1.5rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.btn-remove-promocode {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    fill: currentColor;
    z-index: 1;
    transition: all 0.2s;
}

.btn-remove-promocode:hover {
    color: var(--accent);
}

.btn-remove-promocode svg {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
}

.btn-search-clean {
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.75rem;
    border-radius: 50%;
    background-image: url("../img/ic-clean.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.form-item-group {
    position: relative;
}

.form-item-group.focus .form-item-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

/* Begin radio */
.radio-group .radio {
    margin-bottom: 1rem;
}

.radio-group .radio:last-child {
    margin-bottom: 0;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem 0 0 -2rem;
}

.radio-row > * {
    margin: 1rem 0 0 2rem;
}

.radio-hr .radio {
    margin-top: 0.5rem;
}

.radio-hr .radio:first-child {
    margin-top: 0;
}

.radio-wrap {
    display: flex;
    align-items: center;
}

.radio-icon {
    display: flex;
    align-items: center;
    padding-right: 1rem;
    cursor: pointer;
}

.radio {
    position: relative;
    font-size: 0.8125rem;
}

.radio._check {
    font-size: 0.875rem;
}

.radio._check .radio-input:checked + .radio-label::before {
    background-color: var(--accent);
}

.radio._check .radio-label {
    line-height: 1.125rem;
    padding: 0 0 0 2.125rem;
}

.radio._check .radio-label::before {
    width: 1.125rem;
    height: 1.125rem;
}

.radio._check .radio-label::after {
    left: 0;
    top: 0;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../img/check-circle.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.radio._extra .radio-input:checked + .radio-label {
    color: var(--text);
    background-color: transparent;
    border-color: var(--border);
}

.radio._extra .radio-label {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 3.125rem;
    background-color: #f8fafb;
    border: 1px solid #f8fafb;
    border-radius: 0.5rem;
    color: var(--text-secondary);
}

.radio._extra .radio-label > svg:first-child {
    margin-right: 1rem;
}

.radio._extra .radio-label span {
    font-size: 0.8125rem;
    margin-top: 0.0625rem;
}

.radio._extra .radio-label::before, .radio._extra .radio-label::after {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.radio._hr._lg .radio-label > * {
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.radio._hr._lg .radio-label span {
    font-size: 1rem;
}

.radio._hr._lg .radio-label span.fz-13 {
    font-size: 0.8125rem;
}

.radio._hr._lg .radio-label span.fz-24 {
    font-size: 1.5rem;
}

.radio._hr .radio-input:checked + .radio-label {
    border-color: var(--accent);
}

.radio._hr .radio-input:checked + .radio-label .fz-24 {
    color: var(--accent);
}

.radio._hr .radio-label {
    display: flex;
    align-items: center;
    padding: 0.5rem 0 1rem 3.125rem;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
}

.radio._hr .radio-label .fz-24 {
    transition: color 0.2s;
}

.radio._hr .radio-label > span {
    margin-top: 0.25rem;
}

.radio._hr .radio-label span {
    font-size: 0.8125rem;
}

.radio._hr .radio-label::before, .radio._hr .radio-label::after {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

@media (min-width: 767px) {
    .radio._hr._lg .radio-label {
        padding-right: 0.5rem;
    }
}

.radio-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-input:hover + .radio-label::before {
    border-color: var(--accent);
}

.radio-input:checked + .radio-label::after {
    opacity: 1;
}

.radio-input:checked + .radio-label::before {
    border-color: var(--accent);
}

.radio-label {
    position: relative;
    display: flex;
    font-weight: 500;
    line-height: 1.25rem;
    margin: 0;
    padding: 0 0 0 2.25rem;
    cursor: pointer;
}

.radio-label::before, .radio-label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    border-radius: 50%;
    transition: all 0.2s;
}

.radio-label::before {
    width: 1.25rem;
    height: 1.25rem;
    border: 0.125rem solid var(--border);
}

.radio-label::after {
    content: "";
    position: absolute;
    left: 0.3125rem;
    top: 0.3125rem;
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--accent);
    opacity: 0;
}

.radio-styled-row {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -0.5rem 0;
}

.radio-styled-col {
    width: 100%;
    padding: 0 0.5rem;
    margin-top: 1rem;
}

.radio-styled {
    width: 100%;
}

.radio-styled-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-styled-input:checked + .radio-styled-label {
    border-color: var(--border);
    background-color: transparent;
}

.radio-styled-input:checked + .radio-styled-label .radio-styled-label-icon {
    background-color: var(--accent);
    border-color: var(--accent);
}

.radio-styled-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    height: 3.125rem;
    width: 100%;
    background-color: #f8fafb;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem 0.75rem 1rem;
    border: 1px solid transparent;
    text-align: center;
}

.radio-styled-label-icon {
    position: relative;
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    margin-right: 0.625rem;
}

.radio-styled-label-icon::after {
    content: "";
    position: absolute;
    left: -0.0625rem;
    top: -0.0625rem;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.125rem;
}

.radio-styled-label-text {
    width: 100%;
}

@media (min-width: 410px) {
    .radio-styled-col {
        width: 50%;
    }
}

@media (min-width: 600px) {
    .radio-styled-col {
        width: 33.3%;
    }
}

.radio-items {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem -0.25rem 0 -0.25rem;
}

.radio-item {
    padding: 0 0.25rem;
    margin-top: 0.5rem;
    width: 50%;
}

.radio-item input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-item input:hover + .radio-item-label {
    border-color: var(--accent);
}

.radio-item input:checked + .radio-item-label {
    background-color: var(--accent);
    color: var(--base);
    border-color: var(--accent);
}

.radio-item-label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.75rem;
    min-height: 3rem;
    border: 1px solid #e3e8ee;
    border-radius: 0.375rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .radio-item {
        width: auto;
    }

    .radio-item-label {
        padding: 0.75rem 1.5rem;
    }
}
/* End radio */
/* Begin checkbox */
.checkbox {
    position: relative;
    font-size: 0.8125rem;
}

.checkbox-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.checkbox-input:hover + .checkbox-label::before {
    border-color: var(--accent);
}

.checkbox-input:checked + .checkbox-label::before {
    border-color: var(--accent);
    background-color: var(--accent);
}

.checkbox-input:checked + .checkbox-label::after {
    opacity: 1;
}

.checkbox-label {
    position: relative;
    display: flex;
    line-height: 1.125rem;
    margin: 0;
    padding: 0 0 0 2.125rem;
    cursor: pointer;
}

.checkbox-label::before, .checkbox-label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.checkbox-label::before {
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid var(--border);
    background-color: #f0f2f5;
}

.checkbox-label::after {
    left: 0;
    top: 0;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../img/check-white-min.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

/* End checkbox */
/* Begin switch */
.switch-wrap {
    line-height: 0;
}

.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 1;
}

.switch input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.switch input:checked + .switch-slider {
    background-color: var(--accent);
}

.switch input:checked + .switch-slider::after {
    transform: translateX(1rem);
}

.switch-slider {
    position: relative;
    display: block;
    height: 1.5rem;
    min-width: 2.5rem;
    width: 2.5rem;
    border-radius: 100px;
    overflow: hidden;
    background-color: #D6DBE0;
    transition: background-color 0.2s;
}

.switch-slider::after {
    content: "";
    position: absolute;
    left: 0.0625rem;
    top: 0.0625rem;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background-color: var(--base);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 1px 0 rgba(0, 0, 0, 0.05);
    border: solid 0.4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.switch-label {
    font-size: 0.9375rem;
}

.switch-label:first-child {
    margin-right: 1rem;
}

.switch-label:last-child {
    margin-left: 1rem;
}

/* End switch */
/* Begin count */
.count-wrap .count-container {
    margin-left: 1rem;
}

.count-details {
    font-size: 0.9375rem;
}

.count-details div {
    line-height: 1.5rem;
}

.count-details span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--text-secondary);
}

.count-container {
    display: flex;
}

.count-container input {
    font-size: 1rem;
    height: 2rem;
    min-width: 2.625rem;
    width: 2.625rem;
    padding: 0;
    border: none;
    text-align: center;
    outline: none;
    appearance: textfield;
}

.count-container input::-webkit-outer-spin-button, .count-container input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.count-btn {
    display: flex;
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    fill: #717171;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s;
}

.count-btn svg, .count-btn img {
    display: block;
    margin: auto;
}

.count-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.count-btn:hover:not(.disabled) {
    fill: var(--text);
    border-color: var(--text);
}

/* end count */
.counter-container {
    display: flex;
    align-items: center;
}

.counter-container .form-control {
    border-radius: 0;
    min-width: 5.75rem;
    width: 5.75rem;
    text-align: center;
    border-left: none;
    border-right: none;
}

.counter-container .form-control:focus {
    border-color: var(--border);
}

.counter-container .form-label {
    text-align: center;
}

.counter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3.125rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover {
    border-color: var(--accent);
}

.counter-btn:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.counter-btn:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    cursor: pointer;
}

.counter-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.iti--show-selected-dial-code .iti__selected-country,
.iti--allow-dropdown .iti__country-container:hover .iti__selected-country {
    background-color: transparent;
}

.form-item-country_code {
    font-size: 0.875rem;
    min-width: 6.125rem;
    max-width: 6.125rem;
}

.form-item-country_code .iti__country-container {
    width: 100%;
    padding: 0;
    border-radius: 0.375rem;
}

.form-item-country_code .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
    margin-left: 0;
    margin-right: 0.5rem;
}

.form-item-country_code .iti__selected-dial-code {
    order: 0;
}

.form-item-country_code .iti__arrow {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    width: 1.125rem;
    height: 1.125rem;
    transform: translateY(-50%);
    margin: 0;
    border: none;
    background-image: url("../img/keyboard-arrow-down-18-px.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.form-item-country_code .iti__selected-country {
    width: 100%;
    padding: 0 0.875rem;
}

.form-item-country_code .iti__selected-country > .iti__flag {
    position: absolute;
    top: 50%;
    right: 1.6875rem;
    transform: translateY(-50%);
}

.form-item-country_code .iti__dropdown-content {
    width: 260px !important;
}

.form-item-country_code .iti__dropdown-content input {
    padding-left: 0.5rem !important;
}

.form-item-country_code input {
    padding-left: 0 !important;
}

.form-item-country_code input::-webkit-input-placeholder,
.form-item-country_code input *::placeholder {
    color: transparent;
    opacity: 0;
}

.wrap-payment {
    max-width: 21.25rem;
}

.payment {
    font-size: 1rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom, #d9dadd, #b8b9be);
    border-image-slice: 1;
    background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #d9dadd, #b8b9be);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.payment input {
    font-size: 1rem;
    background: transparent;
    outline: none;
    color: var(--text);
    box-shadow: none;
    appearance: none;
    border: none;
    padding: 0;
}

.payment input::-webkit-outer-spin-button, .payment input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.payment .form-item div.error {
    white-space: nowrap;
}

.payment-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.5rem 3.625rem 0.5rem 1rem;
    border-bottom: 1px solid var(--border);
}

.payment-card input {
    width: 100%;
}

.payment-card-icon {
    margin-right: 0.75rem;
}

.payment-card-type {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
}

.payment-row {
    display: flex;
}

.payment-col {
    display: flex;
    align-items: center;
    width: 50%;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--border);
    letter-spacing: -0.015rem;
}

.payment-col:last-child {
    border-right: none;
}

.payment-col > svg {
    margin-right: 1rem;
}

.payment-date {
    display: flex;
    align-items: center;
}

.payment-date-hr {
    margin: 0 0.25rem;
}

#cardExpMonth {
    width: 1.625rem;
    text-align: right;
}

#cardExpYear {
    width: 2.75rem;
}

#cardCVC {
    width: 2.25rem;
}

.payment-addt {
    display: flex;
    align-content: center;
    margin-top: 1rem;
}

.payment-addt > *:first-child {
    width: 100%;
}

.payment-addt > *:last-child {
    margin-left: 1rem;
}

#cardZip {
    width: 9rem;
}

.verification-code {
    display: flex;
    max-width: 21.75rem;
    margin-left: auto;
    margin-right: auto;
}

.form-item-digit {
    margin-right: 0.75rem;
}

.form-item-digit:last-child {
    margin-right: 0;
}

.form-item-digit.error .input-digit {
    border-color: var(--error);
}

.form-item-digit div.error {
    display: none !important;
}

.input-digit {
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    font-size: 1.125rem;
    width: 100%;
    height: 4rem;
    padding: 0;
    outline: none;
    color: var(--text);
    box-shadow: none;
    appearance: none;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    text-align: center;
    transition: all 0.2s;
}

.input-digit::-webkit-outer-spin-button, .input-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-digit:focus {
    border-color: var(--text);
}

@media (max-width: 399.98px) {
    .form-item-digit {
        margin-right: 0.5rem;
    }
}

@media (min-width: 576px) {
    .form-col-1_2 {
        width: 50%;
    }

    .date-control-dropdown {
        padding: 2rem;
        max-width: initial;
    }
}

@media (min-width: 767px) {
    .form-item-date_time {
        display: flex;
    }

    .dcd-calendar {
        padding-right: 0.875rem;
        border-right: 1px solid var(--border);
        margin-bottom: 0;
    }

    .dcd-time {
        padding-left: 1rem;
        min-width: 16.5rem;
    }
}

.tabs {
    width: 100%;
}

.tabs-nav-wrap {
    position: relative;
    overflow-x: hidden;
}

.tabs-nav {
    display: flex;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.tabs-nav > li {
    position: relative;
    display: none;
    align-items: center;
    padding: 0.625rem 1.5rem 0.625rem 0;
    min-height: 3.25rem;
    line-height: 1.3;
    transition: color 0.2s;
}

.tabs-nav > li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    opacity: 0;
}

.tabs-nav > li.active {
    display: flex;
    color: var(--text);
}

.tabs-nav > li.passed::before, .tabs-nav > li.active::before {
    opacity: 1;
}

.tabs-nav > li > svg {
    margin-right: 0.75rem;
}

.tabs-steps {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tabs-item {
    display: none;
}

.tabs-item.active {
    display: block;
}

@media (min-width: 480px) {
    .tabs-nav > li {
        min-width: 12.5rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (min-width: 600px) {
    .tabs-nav > li {
        display: flex;
    }

    .tabs-steps {
        display: none;
    }
}

.vanilla-calendar-header {
    margin-bottom: 1rem;
}

.vanilla-calendar-days {
    row-gap: 0.5rem;
}

.vanilla-calendar-day__btn {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 2.625rem;
    min-height: 2.625rem;
    line-height: normal;
    border-radius: 0.375rem;
    background-color: transparent;
    transition: all 0.2s;
}

.vanilla-calendar-day__btn:hover {
    color: var(--accent);
}

.vanilla-calendar-day__btn.vanilla-calendar-day__btn_prev, .vanilla-calendar-day__btn.vanilla-calendar-day__btn_next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vanilla-calendar-day__btn.vanilla-calendar-day__btn_disabled {
    background-color: #ebebeb;
    color: rgba(0, 0, 0, 0.5);
}

.vanilla-calendar-day__btn.vanilla-calendar-day__btn_today {
    font-weight: 600;
    color: var(--accent);
}

.vanilla-calendar-day_selected .vanilla-calendar-day__btn,
.vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn,
.vanilla-calendar-day_selected-first .vanilla-calendar-day__btn {
    background-color: var(--accent);
    color: var(--base);
}

.vanilla-calendar-month,
.vanilla-calendar-year {
    font-weight: 500;
    padding: 0 0.125rem;
}

.vanilla-calendar-week__day {
    font-size: 0.75rem;
    font-weight: 500;
    color: #717171;
}

.vanilla-calendar-arrow::before {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    background-repeat: no-repeat;
    background-position: center;
    transform: none !important;
}

.vanilla-calendar-arrow.vanilla-calendar-arrow_prev::before {
    background-image: url("../img/chevron-left-solid.svg");
}

.vanilla-calendar-arrow.vanilla-calendar-arrow_next::before {
    background-image: url("../img/chevron-right-solid.svg");
}

.vanilla-calendar-months__month,
.vanilla-calendar-years__year {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #ebebeb;
    background-color: transparent;
}

.vanilla-calendar-months__month_selected,
.vanilla-calendar-years__year_selected {
    background-color: var(--accent);
    color: var(--base);
}

@media (min-width: 576px) {
    .vanilla-calendar-day__btn {
        min-width: 2.875rem;
        min-height: 2.625rem;
    }
}

.modal {
    display: none;
}

.vanilla-modal .modal {
    display: block;
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--base), 0.8);
    z-index: -1;
    opacity: 0;
    text-align: center;
    overflow: hidden;
    overflow-y: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.2s, z-index 0s 0.2s;
}

.vanilla-modal .modal > * {
    display: inline-flex;
    white-space: normal;
    vertical-align: middle;
    text-align: left;
}

.vanilla-modal.modal-visible {
    overflow-y: hidden;
}

.vanilla-modal.modal-visible .modal {
    z-index: 999;
    opacity: 1;
    transition: opacity 0.2s;
}

.modal-inner {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.modal-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.modal-content {
    margin: auto;
    width: 100%;
    max-width: 50rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.2s, transform 0.2s, z-index 0s 0.2s;
}

.modal-box {
    background: var(--base);
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.625rem 0.125rem rgba(102, 105, 110, 0.4), 0 1px 2px 0 rgba(194, 193, 204, 0.5);
}

.modal-visible .modal-content {
    z-index: 100;
    opacity: 1;
    transition: opacity 0.2s, transform 0.2s;
}

.modal-headline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.21875rem 1rem 1.21875rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-headline .modal-heading {
    width: 100%;
}

.modal-heading {
    font-weight: 600;
    letter-spacing: -0.0125rem;
    color: var(--text);
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--text-secondary);
    cursor: pointer;
}

.modal-close svg {
    display: block;
    transition: transform 0.2s;
}

.modal-close:hover {
    fill: var(--text);
}

.modal-close:hover svg {
    transform: rotate(90deg);
}

.modal-body {
    width: 100%;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
}

@media (min-width: 767px) {
    .modal-inner {
        padding-top: 2rem;
    }
}
/* === 4. Sections === */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

hr {
    height: 1px;
    width: 100%;
    background-color: var(--border);
    border: none;
    margin: 1.5rem 0;
}

.booking-start {
    max-width: 600px;
    margin: 0 auto;
}

.booking-start hr {
    margin: 2rem 0;
}

.booking-start-headline h1 {
    margin-bottom: 0;
}

.booking-start-headline p {
    margin: 0;
}

.bs-form-headline {
    margin-bottom: 2rem;
}

.bs-form-headline h2 {
    margin-bottom: 0.5rem;
}

.bs-form-headline p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.bs-form-headline p > svg:first-child {
    margin-right: 0.5rem;
}

.search-form-result {
    margin-top: 2rem;
}

.search-form-result > li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 4.875rem;
    min-height: 3.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-form-result > li:hover {
    background-color: #f7f8fa;
}

.search-form-result > li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 2.875rem;
    height: 2.875rem;
    transform: translateY(-50%);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}

.search-form-result > li::after {
    content: "";
    position: absolute;
    left: 2.0625rem;
    top: 50%;
    width: 0.75rem;
    height: 1rem;
    margin-top: -0.5rem;
    background-image: url("../img/map-marker-alt-solid.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.btn-form-sticky {
    position: sticky;
    bottom: 0;
    padding: 0.5rem 0;
    background-color: var(--base);
    z-index: 10;
}

.booking-content {
    font-size: 0.875rem;
}

.subheading-center {
    display: flex;
    justify-content: center;
}

.subheading {
    display: inline-flex;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5rem;
    color: var(--accent);
    padding: 0 1.25rem;
    border-radius: 1rem;
    background-color: rgba(248, 49, 135, 0.08);
}

.heading {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
}

.heading._lh_2rem {
    padding: 0.25rem 0;
}

.heading._mb_none {
    margin-bottom: 0;
}

.desc {
    margin: 0;
    letter-spacing: -0.0125rem;
}

.desc a {
    display: inline-flex;
}

.booking-aside {
    margin-top: 2rem;
}

.b-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    min-height: 4rem;
    border-bottom: 1px solid #e3e8ee;
}

.b-item-col {
    display: flex;
    align-items: center;
}

.b-item-heading {
    font-weight: 500;
}

.b-item-icon {
    display: flex;
    align-items: center;
    width: 1.5rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.b-item-action {
    margin-left: 1.5rem;
}

.rech-heading {
    line-height: 2rem;
    margin: 0;
}

.rech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600;
    width: 7.875rem;
    height: 7.875rem;
    margin: 0.5rem auto 1.25rem;
    background-image: url("../img/circle-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.rech-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
}

.info-prot {
    position: relative;
    margin: 0;
    font-size: 0.8125rem;
    padding-left: 2rem;
    color: var(--text-secondary);
    margin-left: 1rem;
}

.info-prot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1rem;
    height: 1.25rem;
    transform: translateY(-50%);
    background-image: url("../img/shield-check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    padding: 1rem 1.5rem 1rem 1rem;
    border-radius: 0.375rem;
    background-color: #f8fafb;
}

.address-row {
    display: flex;
    align-items: center;
}

.address-icon {
    margin-right: 1rem;
}

.address-edit {
    margin-left: 1rem;
    fill: currentColor;
    cursor: pointer;
    transition: all 0.2s;
}

.address-edit:hover {
    color: var(--accent);
}

.extra-row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.625rem -0.3125rem 0;
}

.extra-col {
    width: 100%;
    padding: 0 0.3125rem;
    margin-top: 0.625rem;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.estimate-item {
    display: none;
    padding-top: 1.5rem;
}

.estimate-item.active {
    display: block;
}

.hr-price-wrap {
    display: flex;
    align-items: center;
}

.hr-info {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    margin-right: 1rem;
}

.hr-info svg {
    display: block;
    width: 100%;
    height: 100%;
}

.aside-sticky {
    position: sticky;
    top: 1rem;
}

.aside-item {
    position: relative;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.aside-item._bg {
    background-color: #f8fafb;
}

.aside-item._bg .btn._outline,
.aside-item._bg .form-control {
    background-color: var(--base);
}

.aside-item._padding {
    padding: 1rem;
}

.aside-item._gradient {
    background-image: linear-gradient(to left, #cb0288, #ef417b);
    color: var(--base);
}

.aside-item:last-child {
    margin-bottom: 0;
}

.aside-item-headline {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.25rem 0 1.25rem;
}

.aside-item-headline > svg:first-child {
    margin-right: 1rem;
}

.abs-item {
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
}

.abs-item._footer {
    padding-top: 1rem;
    padding-bottom: 0;
}

.abs-row {
    display: flex;
    align-items: flex-start;
}

.abs-row._align-center {
    align-items: start;
}

.abs-row._total {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
}

.abs-row._total .abs-col {
    color: var(--accent);
}

.abs-row._total .fw-700 {
    font-weight: 700;
}

.abs-col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    min-height: 2rem;
}

.abs-col.text-right {
    justify-content: flex-end;
}

.abs-col:first-child {
    width: 45%;
    color: var(--text-secondary);
}

.abs-col:last-child {
    width: 55%;
    font-weight: 500;
}

.abs-col-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 2rem;
}

.abs-placeholder {
    width: 3.5rem;
    height: 0.5rem;
    background-color: #e3e8ee;
    border-radius: 0.25rem;
}

.abs-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.abs-date .abs-date-edit {
    margin-left: 0.5rem;
}

.abs-date-edit {
    width: 0.875rem;
    height: 0.875rem;
    cursor: pointer;
    fill: currentColor;
    transition: all 0.2s;
}

.abs-date-edit:hover {
    color: var(--accent);
}

.abs-date-edit svg {
    display: block;
    width: 100%;
    height: 100%;
}

.abs-promo {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 2rem;
    padding: 0 0.375rem;
    border-radius: 1.25rem;
    color: #0c7c4a;
    background-color: #e7fbf2;
}

.abs-tips {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.abs-tips .abs-tips-remove {
    margin-left: 0.5rem;
}

.abs-tips-remove {
    width: 0.5rem;
    height: 0.5rem;
    cursor: pointer;
    fill: currentColor;
    transition: all 0.2s;
}

.abs-tips-remove:hover {
    color: var(--accent);
}

.abs-tips-remove svg {
    display: block;
}

.aside-item-heading-wrapp {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.aside-item-heading-wrapp > svg:first-child, .aside-item-heading-wrapp > img:first-child {
    margin-right: 1rem;
}

.aside-item-heading {
    position: relative;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.15;
    z-index: 1;
}

.aside-item-heading._sm {
    font-size: 0.875rem;
    line-height: normal;
}

.aside-item-heading._bold {
    font-weight: bold;
}

.aside-item-heading._uppercase {
    text-transform: uppercase;
}

.aside-included {
    padding: 1rem 1.5rem 1.25rem 1.5rem;
}

.aside-included-header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 124px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.aside-included-ill {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aside-item-services {
    padding: 1.25rem 1rem 1.75rem 1rem;
}

.aside-item-services .ul-circle {
    padding-left: 0.25rem;
}

.aside-item-cleanster {
    padding: 1.25rem 1.25rem 2rem 1.25rem;
}

.aside-item-cleanster .ul-check {
    padding-left: 0.25rem;
}

.ul-check > li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.ul-check > li:last-child {
    margin-bottom: 0;
}

.ul-check > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../img/ic-check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ul-check._white > li::before {
    background-image: url("../img/ic-check-white.svg");
}

.ul-circle > li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.ul-circle > li:last-child {
    margin-bottom: 0;
}

.ul-circle > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("../img/arrow-circle-right.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ul-circle._white > li::before {
    background-image: url("../img/arrow-circle-right-white.svg");
}

.aside-item-bill {
    padding: 1.5rem 1rem 1.25rem 1rem;
    background-color: #E7FBF2;
}

.aside-bill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aside-bill-header .heading {
    margin: 0;
}

.aside-bill-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--text-secondary);
    line-height: 1.5rem;
}

.aside-bill-item._bt_bb {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.aside-bill-item:first-child {
    padding-top: 0;
}

.aside-bill-item:last-child {
    padding-bottom: 0;
}

.aside-bill-item small {
    font-size: 0.75rem;
}

.aside-bill-item-price {
    margin-left: 1rem;
}

.aside-tips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -0.5rem;
}

.aside-tips li {
    line-height: 2rem;
    min-width: 3rem;
    padding: 0 0.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 3px 4px 0 #edeeef, 0 0 2px 0 rgba(0, 0, 0, 0.12);
    background-color: var(--base);
    margin-left: 0.5rem;
    cursor: pointer;
}

.aside-tips li.active {
    background-color: var(--accent);
    color: var(--base);
}

.info-text-sm {
    font-size: 0.6875rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.125rem 1.5rem 1.125rem 1rem;
    background-image: linear-gradient(to left, #ef417b, #cb0288);
    color: var(--base);
    border-radius: 0.5rem;
}

.info > svg:first-child {
    margin-right: 0.75rem;
}

.info p {
    margin: 0;
}

.info p:first-child {
    margin-bottom: 0.125rem;
}

.info small {
    font-size: 0.8rem;
}

.info-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    z-index: 1;
}

.cleaners {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -0.5rem 0;
}

.cleaners-item-col {
    padding: 0 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.cleaners-item {
    position: relative;
    display: flex;
    padding: 0.75rem 0.625rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
}

.cleaners-item.selected {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.cleaners-item-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    overflow: hidden;
}

.cleaners-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.cleaners-item-count,
.cleaners-item-jobs {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--text-secondary);
}

.cleaners-item-remove {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    z-index: 1;
}

.cleaners-item-remove svg {
    display: block;
    width: 100%;
    height: 100%;
}

.stars {
    display: flex;
    fill: #e9ebef;
}

.stars li.active {
    fill: #ff9c19;
}

.booking-summary-mobile {
    position: fixed;
    left: 0.5rem;
    bottom: 0.5rem;
    font-size: 0.75rem;
    width: calc(100% - 1rem);
    margin: 0;
    box-shadow: 0 4px 10px 2px rgba(102, 105, 110, 0.2);
    padding: 0.75rem 1rem 0.5rem;
    background-color: var(--base);
    font-size: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s;
    z-index: 11;
}

.booking-summary-mobile .fz-24 {
    font-size: 1.25rem;
}

.bsm-heading {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.bsm-heading > svg:first-child {
    margin-right: 1rem;
}

.bsm-heading > svg:last-child {
    margin-left: 0.5rem;
}

.modal-cleaners-top .distance {
    width: 100%;
}

.modal-cleaners-top .sort-by {
    min-width: 10rem;
    margin-top: 1rem;
}

.modal-cleaners-top .sort-by .form-control {
    padding-top: 0.5625rem;
    padding-bottom: 0.5625rem;
}

.distance {
    position: relative;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.distance-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.distance-label,
.sort-by-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: 0.2px;
    color: var(--text);
}

.distance-body {
    display: flex;
    white-space: nowrap;
    margin-top: 1rem;
    line-height: 1rem;
}

.distance-line {
    position: relative;
    width: 100%;
    min-height: 1rem;
    margin: 0 0.625rem;
}

.distance-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: #dee2e5;
}

.distance-line-progress {
    position: absolute;
    left: 20%;
    top: 50%;
    height: 4px;
    width: 60%;
    margin-top: -2px;
    background-color: var(--accent);
    z-index: 1;
}

.distance-line-progress::before, .distance-line-progress::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
    border-radius: 50%;
    border: 4px solid var(--accent);
    background-color: var(--base);
    z-index: 1;
}

.distance-line-progress::before {
    left: -0.5rem;
}

.distance-line-progress::after {
    right: -0.5rem;
}

.modal-cleaners-search {
    margin: 1.25rem 0;
}

.modal-cleaners-search .form-control {
    border-radius: 1.25rem;
    background-color: #f0f2f5;
    padding: 0.375rem 1rem 0.375rem 2.25rem;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.05);
    background-image: url("../img/ic-search.svg");
    background-repeat: no-repeat;
    background-position: left 0.625rem center;
    border: none;
}

.modal-cleaners-scroll {
    max-height: 27rem;
}

.modal-cleaners-scroll .simplebar-track {
    right: -1rem;
}

.modal-cleaners-scroll .simplebar-track.simplebar-vertical {
    width: 0.5rem;
}

.modal-cleaners-scroll .simplebar-track.simplebar-horizontal {
    display: none;
}

.modal-cleaners-scroll .simplebar-scrollbar::before {
    width: 0.25rem;
}

.modal-cleaners {
    position: relative;
    margin: -0.5rem -0.25rem 0;
    overflow-x: hidden;
}

.modal-cleaner {
    padding: 0.5rem 0.25rem 0;
}

.cleaner {
    position: relative;
    display: flex;
    font-size: 0.75rem;
    padding: 0.75rem 0.875rem 0.75rem 0.75rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.cleaner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-bottom-color: var(--border);
    border-radius: 0.375rem;
    background-color: #f0f2f5;
    pointer-events: none;
}

.cleaner-img {
    position: relative;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    z-index: 1;
}

.cleaner-details {
    position: relative;
    padding: 0 0.75rem;
    width: 100%;
    z-index: 1;
}

.cleaner-details .btn-link {
    display: inline-flex;
    font-weight: 500;
    line-height: 1.125rem;
}

.cleaner-name {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.cleaner-info {
    color: var(--text-secondary);
}

.cleaner-checkbox-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.cleaner-checkbox-input:checked + .cleaner-checkbox::before {
    border-color: var(--accent);
    background-color: var(--accent);
}

.cleaner-checkbox-input:checked + .cleaner-checkbox::after {
    opacity: 1;
}

.cleaner-checkbox-input:checked + .cleaner-checkbox + .cleaner-bg {
    border-color: var(--border);
    background-color: transparent;
}

.cleaner-checkbox {
    position: relative;
    display: flex;
    line-height: 1.125rem;
    width: 1.125rem;
    min-width: 1.125rem;
    margin: 0.5rem 0 0 0;
    z-index: 1;
    cursor: pointer;
}

.cleaner-checkbox::before, .cleaner-checkbox::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.cleaner-checkbox::before {
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid var(--border);
    background-color: #f0f2f5;
}

.cleaner-checkbox::after {
    left: 0;
    top: 0;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../img/check-white-min.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

@media (min-width: 410px) {
    .cleaners-item-col {
        width: 50%;
    }
}

@media (min-width: 480px) {
    .modal-cleaners-top {
        display: flex;
    }

    .modal-cleaners-top .sort-by {
        margin-left: 1.5rem;
        margin-top: 0;
    }
}

@media (min-width: 560px) {
    .modal-cleaners {
        display: flex;
        flex-wrap: wrap;
    }

    .modal-cleaner {
        width: 50%;
    }
}

@media (min-width: 600px) {
    .logo {
        display: block;
    }

    .booking-start {
        margin-top: -3rem;
    }

    .cleaners-item-col {
        width: 33.3%;
    }

    .extra-col {
        width: 50%;
    }
}

@media (min-width: 767px) {
    .booking-start {
        margin-top: -3.5rem;
    }

    .booking-start hr {
        margin-top: 3rem;
    }
}

@media (min-width: 992px) {
    .booking-row {
        display: flex;
        flex-wrap: wrap;
    }

    .booking-content {
        width: 62.5%;
    }

    .booking-aside {
        width: 37.5%;
        padding-left: 2.5rem;
        margin: 0;
        padding-top: 3.25rem;
    }

    .booking-summary-mobile {
        display: none;
    }

    .abs-fixed-arrow {
        display: none;
    }
}

@media (min-width: 1040px) {
    .booking-aside {
        padding-left: 4rem;
    }
}

@media (min-width: 1200px) {
    .booking-start hr {
        margin-top: 4rem;
    }
}

@media (max-width: 991.98px) {
    .main-body {
        padding-bottom: 6rem !important;
    }

    .booking-summary-open .abs-fixed {
        transform: none;
    }

    .booking-summary-open .booking-summary-mobile {
        transform: translateY(calc(100% + 1rem));
    }

    .booking-aside {
        position: relative;
        z-index: 11;
    }

    .abs-fixed {
        position: fixed;
        left: 0.5rem;
        bottom: 0.5rem;
        font-size: 0.75rem;
        width: calc(100% - 1rem);
        margin: 0;
        box-shadow: 0 4px 10px 2px rgba(102, 105, 110, 0.2);
        transform: translateY(calc(100% + 1rem));
        background-color: var(--base) !important;
        transition: transform 0.4s;
        z-index: 15;
    }

    .abs-fixed .aside-item-headline {
        font-size: 0.875rem;
    }

    .abs-fixed .abs-col,
  .abs-fixed .abs-col-item {
        min-height: 1.5rem;
    }

    .abs-fixed .abs-col-item {
        padding: 0.125rem 0;
        width: 100%;
    }

    .abs-fixed .aside-item-headline {
        padding-bottom: 1rem;
    }

    .abs-fixed .aside-item-headline {
        position: relative;
    }

    .abs-fixed .abs-promo {
        font-size: 0.625rem;
        line-height: 1.5rem;
    }

    .abs-fixed .abs-date-edit {
        width: 0.75rem;
        height: 0.75rem;
    }

    .abs-fixed .abs-row._total {
        margin-top: 0;
    }

    .abs-fixed .fz-24 {
        font-size: 1.25rem;
    }

    .abs-fixed-arrow {
        position: absolute;
        right: 0;
        top: 0.75rem;
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .radio._hr .radio-label {
        padding-right: 0.5rem;
    }

    .radio._hr._lg .radio-label > * {
        margin-right: 0.5rem;
    }

    .hr-details {
        order: 1;
    }

    .hr-price-wrap {
        order: 2;
    }

    .hr-count {
        order: 3;
    }

    .hr-info {
        margin-right: 0.5rem;
    }

    .radio-plans > * {
        min-width: 30%;
    }

    .radio-pets > * {
        min-width: 30%;
    }

    .radio-dog {
        order: 1;
    }

    .radio-dog .radio-icon {
        display: flex;
        justify-content: center;
        min-width: 2.625rem;
    }

    .radio-other {
        order: 2;
    }

    .radio-cat {
        order: 3;
    }

    .radio-none {
        order: 4;
    }
}

@media (max-width: 380px) {
    .radio._hr .radio-label {
        padding-right: 0.25rem;
    }

    .radio._hr._lg .radio-label span.fz-24 {
        font-size: 1.375rem;
    }
}

@media (max-width: 991.98px) and (max-height: 500px) {
    .abs-fixed .abs-item-main {
        height: 8.25rem;
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) and (max-height: 400px) {
    .abs-fixed .abs-item-main {
        height: 7rem;
        overflow-y: auto;
    }
}
/* === 5. Media === */
@media (min-width: 480px) {
    .main-body {
        padding: 2.5rem;
    }
}

@media (min-width: 992px) {
    .main-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-image: url("../img/hero-room.png");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }

    .main-bg::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, rgba(240, 242, 245, 0), #f0f2f5);
    }
}

.custom-margin{
  margin: 10px 0;
}

 /* Styles for the loader */
 .loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #DE2180; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styles to hide the loader */
.hidden {
    display: none;
}

/* Styles for the dropdown container */
.dropdown-container {
    width: 150px; /* Adjust width as needed */
    border: 2px solid #DE2180; /* Border style */
    border-radius: 4px; /* Rounded corners */
    overflow: hidden; /* Ensure border does not extend beyond container */
    padding: 10px;
  }
  
  /* Styles for the select element */
  #dropdown {
    width: calc(100% + 2px); /* Compensate for border width */
    padding: 10px;
    font-size: 16px;
    border: none; /* Remove default select border */
    outline: none; /* Remove outline on focus */
    background-color: #FFFFFF; /* Change background color as needed */
  }

  .parent-container {
    position: relative;
    width: 170%;
  }
  
  /* Styles for the centered content */
  .centered-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px; /* Add padding as needed */
  }

.whats-new:hover {
    cursor: pointer;
}

.logo:hover {
    cursor: pointer;
}

ul {
    padding: 5px;
    list-style: none;
}

ul li {
    padding: inherit;

}

ul li:before {
    content: '✓';
    color: darkgoldenrod;
    font-size: x-large;
}

.rectbox {
    border: 1px solid black; /* Adjust thickness and color as needed */
    border-radius: 0px; /* Adjust the border-radius as needed */
    margin: -3px;
    padding: 10px;
    display: flex;
}

.display-inline {
    display: inline;
}

.container {
    display: flex;
    width: 100%; /* Adjust the width of the container as needed */
}

.split {
    flex: 1;
    padding: 10px; /* Optional: Add padding for spacing */
    text-align: center;
}

.border-right {
    border-right: 1px solid gray; /* Optional: Add borders to visually separate the sections */
}

.container-iframe {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
