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

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

0. Root
1. Content
    1.1 Fonts
    1.2 Base
    1.3 Tables
    1.4 Typography
2. General
3. Layouts
4. Components
5. Sections
6. 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: #f83187;
    --accent-hover: #E70869;
    --base: #ffffff;
    --text: #0f141a;
    --text-secondary: #66696e;
    --link: #0f141a;
    --border: #e2e2e2;
    --placeholder: #6b6b6b;
    --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);
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 1.5rem;
}

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: var(--base);
}

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;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
}

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: 2.5rem;
}

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: underline;
    transition: all 0.2s;
}

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

b, strong {
    font-weight: 600;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

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 a:not(.btn) {
    color: #cb018a;
}

.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;
}

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

@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, .h2 {
        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.ar-3x4::after {
    margin-top: 133.33333%;
}

.aspect-ratio.ar-4x3::after {
    margin-top: 75%;
}

.aspect-ratio.ar-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;
}

.overflow-hidden {
    overflow: hidden;
}

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

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

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

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

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

.text-row.row-2 {
    -webkit-line-clamp: 2;
}

.text-row.row-3 {
    -webkit-line-clamp: 3;
}

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

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

.img-w100 {
    width: 100%;
}

.img-container img {
    display: block;
    width: 100%;
}

.img-rounded {
    border-radius: 1rem;
    overflow: hidden;
}

.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fs-12 {
    font-size: 0.75rem;
}

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

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

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

.magenta-color {
    color: #cb018a !important;
}

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

.stars {
    display: flex;
}

.stars li {
    width: 0.875rem;
    height: 0.875rem;
    fill: #bcc2c9;
    margin-right: 0.125rem;
}

.stars li:last-child {
    margin-right: 0;
}

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

.stars li svg {
    display: block;
    width: 100%;
    height: 100%;
}

.apps-nav > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 -0.5rem -0.5rem;
}

.apps-nav > ul > li {
    line-height: 1;
    margin: 0 0 0.5rem 0.5rem;
}

.apps-nav > ul > li:hover a:not(.btn-link) {
    opacity: 0.75;
}

.apps-nav > ul > li a {
    display: block;
}

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

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

.ul-check > li::before {
    content: url("../img/ic-point.svg");
    position: absolute;
    left: 0;
    top: 0;
}

.ul-check.ul-check-sm {
    font-size: 0.875rem;
}

.ul-check.ul-check-sm > li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.ul-check.ul-check-sm > li::before {
    content: url("../img/ic-check-20.svg");
    margin-top: 0.125rem;
}

.ul-check-heading {
    font-weight: 600;
}

.ul-check-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.dwn-btn {
    max-width: 17.375rem;
    margin-left: auto;
    margin-right: auto;
}

.dwn-btn.dwn-btn-left {
    margin-left: 0;
}

.info {
    position: relative;
    font-size: 0.875rem;
    padding: 1.5rem 1.5rem 1.5rem 3.625rem;
    border-radius: 0.25rem;
    background-color: #fbfbfb;
    margin: 0;
    background-image: url("../img/ic-info.svg");
    background-position: 1.5rem 1.5rem;
    background-repeat: no-repeat;
}

.info.info-clear {
    padding: 0 0 0 2rem;
    background-color: transparent;
    background-position: 0 0;
}

.info.info-sm {
    font-size: 0.75rem;
    line-height: 1.42;
}

.h-100 {
    height: 100%;
}

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

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

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

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

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

.g-2rem {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.gy-2rem {
    --bs-gutter-y: 2rem;
}

.gx-2_5rem {
    --bs-gutter-s: 2.5rem;
}

.gy-2_5rem {
    --bs-gutter-y: 2.5rem;
}

.gy-4rem {
    --bs-gutter-y: 4rem;
}

.g-1_25rem {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

.gy-1_25rem {
    --bs-gutter-y: 1.25rem;
}

.gy-1rem {
    --bs-gutter-y: 1rem;
}

/* === 3. Layouts === */
.section {
    position: relative;
    padding: 5rem 0;
}

.section.section-no-padding {
    padding: 0;
}

.section.section-pt-minimal {
    padding-top: 2rem;
}

.section.section-pt-2_5rem {
    padding-top: 3rem;
}

.section.section-p-minimal {
    padding: 2rem 0;
}

.section.section-pb-none {
    padding-bottom: 0;
}

.section.section-pt-none {
    padding-top: 0;
}

.section-bgc {
    background-color: #f0f2f5;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h1, .section-header h2, .section-header h3 {
    font-size: 2.125rem;
    margin: 0;
}

.section-header h3 {
    font-size: 1.75rem;
}

.section-header p {
    margin: 1.25rem 0 0;
    max-width: 40rem;
}

.section-header p:first-child {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #bcc2c9;
    line-height: 2;
    letter-spacing: 0.1625rem;
    margin: 0 0 0.75rem 0;
}

.section-header p:first-child.sp-cat {
    font-weight: normal;
    text-transform: initial;
    letter-spacing: normal;
}

.section-header p:first-child.sp-cat a {
    text-decoration: underline;
}

.section-header p:first-child.sp-cat a:hover {
    text-decoration: none;
}

.section-header.sh-p-50 p {
    max-width: 50rem;
}

.section-header.sm h1, .section-header.sm h2 {
    font-size: 1.75rem;
}

.section-header.lg h1, .section-header.lg h2 {
    font-size: 2.5rem;
}

.section-header.lg p {
    font-size: 1rem;
}

.section-header.mb_none {
    margin-bottom: 0;
}

.section-header.mb_2 {
    margin-bottom: 2rem;
}

.section-header.mb_2_5 {
    margin-bottom: 2.5rem;
}

.section-header.mb_3 {
    margin-bottom: 3rem;
}

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

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header h1, .section-header h2 {
        font-size: 2.625rem;
    }

    .section-header h3 {
        font-size: 2.125rem;
    }

    .section-header.sm2 h1, .section-header.sm2 h2 {
        font-size: 2.25rem;
    }

    .section-header.md h1, .section-header.md h2 {
        font-size: 3rem;
    }

    .section-header.md p:not(:first-child) {
        font-size: 1.125rem;
    }

    .section-header.lg h1, .section-header.lg h2 {
        font-size: 3.375rem;
    }

    .section-header.lg p:not(:first-child) {
        font-size: 1.25rem;
    }

    .section-header.lg p.sp-cat {
        font-size: 1.125rem;
    }

    .section-header.lg p.fs-18 {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .section-header {
        --max-width-lg: 100%;
        max-width: var(--max-width-lg);
    }
}

.footer {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.footer.footer-gray {
    border: none;
    background-color: #f0f2f5;
}

.logo-wrapper {
    position: relative;
    z-index: 100;
    line-height: 0;
}

.logo {
    --logo-max-height: 1.25rem;
    --logo-mobile-max-height: 1.125rem;
    display: inline-flex;
    font-family: var(--heading-font-family), sans-serif;
    line-height: var(--heading-line-height);
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: bold;
    fill: var(--accent);
    color: var(--accent);
    transition: all 0.2s;
}

.logo.logo-white {
    fill: var(--base);
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: var(--logo-mobile-max-height);
}

.logo svg {
    display: block;
    height: 100%;
    width: auto;
    max-height: var(--logo-mobile-max-height);
}

.footer-contacts {
    margin-bottom: 4rem;
}

.footer-contact-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    fill: var(--text);
}

.footer-contact-link > svg {
    margin-right: 1rem;
}

.footer-contact-link:hover {
    color: var(--accent);
    fill: var(--accent);
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-item-link {
    font-weight: 500;
    text-decoration: none;
    color: #6b6b6b;
}

.footer-item-link:hover {
    color: var(--accent);
}

.footer-item-list {
    font-size: 0.875rem;
    letter-spacing: -0.22px;
}

.footer-item-list li {
    margin-bottom: 0.625rem;
}

.footer-item-list li a {
    display: inline-flex;
    line-height: 1.5rem;
    text-decoration: none;
    color: var(--text);
}

.footer-item-list li a:hover {
    color: var(--accent);
}

.footer-item-list li:last-child {
    margin-bottom: 0;
}

.footer-item-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-bottom {
    margin-top: 1rem;
}

.footer-bottom-nav {
    fill: var(--text);
}

.footer-bottom-nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 -2rem -2rem;
}

.footer-bottom-nav > ul > li {
    margin: 0 0 2rem 2rem;
}

.footer-bottom-nav > ul > li > a {
    display: block;
}

.footer-bottom-nav > ul > li > a > svg {
    display: block;
}

.footer-bottom-nav > ul > li.footer-bottom-social a {
    fill: var(--text);
}

.footer-bottom-nav > ul > li.footer-bottom-social a:hover {
    fill: var(--accent);
}

.location-current {
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.location-current svg {
    margin-right: 0.625rem;
}

.apps-list {
    display: flex;
    align-items: center;
    margin: 0 0 -1rem -1rem;
}

.apps-list li {
    margin: 0 0 1rem 1rem;
}

.apps-list li a {
    display: block;
}

.apps-list li a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.75rem;
    line-height: normal;
    color: #6b6b6b;
}

.footer-nav-secondary {
    font-size: 0.75rem;
}

.footer-nav-secondary ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -2rem -2rem;
}

.footer-nav-secondary ul li {
    margin: 0 0 2rem 2rem;
}

.footer-nav-secondary ul li a {
    display: block;
    color: #6b6b6b;
    text-decoration: none;
}

.footer-nav-secondary ul li a:hover {
    color: var(--text);
}

.footer-dev {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0 1rem;
    z-index: 1;
}

.footer-dev a {
    color: var(--text);
}

@media (min-width: 1200px) {
    .footer-logo {
        margin-bottom: 4rem;
    }

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

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

.btn {
    --btn-ripple-width: 100%;
    --btn-ripple-duration: 0.4s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    min-height: 3rem;
    font-family: var(--font-family), sans-serif;
    font-weight: 600;
    line-height: 1.5;
    color: var(--base);
    fill: currentColor;
    background-color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    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 .btn-loader {
    display: none;
}

.btn > span, .btn > svg {
    position: relative;
    z-index: 1;
}

.btn > svg:first-of-type {
    margin-right: 0.5rem;
}

.btn > svg:last-child {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn .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.btn-with-icon {
    padding-left: 1rem;
}

.btn.btn-w240 {
    min-width: 14rem;
}

.btn.btn-w200 {
    min-width: 12.5rem;
}

.btn.btn-white {
    background-color: var(--base);
    color: var(--text);
}

.btn.btn-white.btn-outline {
    border-color: var(--base);
    color: var(--base);
}

.btn.btn-white.btn-outline .btn-ripple-hover {
    background-color: var(--base);
}

.btn.btn-white.btn-outline:hover {
    color: var(--accent);
}

.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text);
    color: var(--text);
    padding: calc(0.5rem - 2px) 1.5rem;
}

.btn.btn-outline .btn-ripple-hover {
    background-color: var(--text);
}

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

.btn.btn-outline.btn-accent .btn-ripple-hover {
    background-color: var(--accent);
}

.btn.btn-outline.btn-accent:hover {
    color: var(--base);
}

.btn.btn-rounded {
    border-radius: 100px;
}

.btn.btn-branch {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    min-height: auto;
    color: var(--accent);
    background-color: transparent;
    border: 1px solid var(--accent);
    border-radius: 0.5rem;
}

.btn.btn-branch .btn-ripple-hover {
    background-color: var(--accent);
}

.btn.btn-branch:hover {
    color: var(--base);
}

.btn.btn-xs {
    font-size: 0.8125rem;
    min-height: 2rem;
    padding: 0.25rem 1rem;
}

.btn.btn-xs.btn-outline {
    border-width: 1px;
    padding: calc(0.25rem - 1px) 0.75rem;
}

.btn.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 1.25rem;
    min-height: 2.25rem;
}

.btn.btn-sm.btn-outline {
    padding-top: calc(0.375rem - 2px);
    padding-bottom: calc(0.375rem - 2px);
}

.btn.btn-lg {
    font-size: 1.125rem;
    padding-top: 0.84375rem;
    padding-bottom: 0.84375rem;
}

.btn.btn-lg.btn-outline {
    padding-top: calc(0.84375rem - 2px);
    padding-bottom: calc(0.84375rem - 2px);
}

.btn.btn-wide {
    width: 100%;
}

.btn:focus {
    outline: none;
}

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

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

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

.form-item {
    position: relative;
}

.form-item._styled .form-label,
.form-item._styled .form-control {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.form-item._styled .form-control {
    padding-top: 1.125rem;
    padding-bottom: 0.25rem;
}

.form-item._line .form-label,
.form-item._line .form-control {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}

.form-item._line .form-control {
    padding-top: 1.25rem;
    padding-bottom: 0.375rem;
    border-color: var(--base);
    border-bottom-color: var(--border);
    box-shadow: none;
}

.form-item._line .form-control.intl-tel {
    padding-left: 3.5rem;
}

.form-item._line .form-label {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
}

.form-item._line .select .form-label {
    font-size: 0.75rem;
    transform: translate(0, -0.625rem);
    opacity: 1;
    visibility: visible;
}

.form-item._line .select::after {
    right: 0;
    background-image: url("../img/keyboard_arrow_down_24.svg");
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.75rem;
}

.form-item._line._address .form-label,
.form-item._line._address .form-control {
    padding-right: 1.375rem;
}

.form-item._line._email .form-label,
.form-item._line._email .form-control, .form-item._line._password .form-label,
.form-item._line._password .form-control {
    padding-right: 1.75rem;
}

.form-item._line .iti__selected-flag {
    padding: 0.875rem 0 0 0;
}

.form-item._sm .form-label,
.form-item._sm .form-control {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.form-item._sm .select select {
    padding-right: 1.875rem;
}

.form-item._address .form-control {
    background-image: url("../img/map-marker-alt-solid.svg");
    background-repeat: no-repeat;
    background-position: center right 0.25rem;
}

.form-item._email .form-control {
    background-image: url("../img/mail_24.svg");
    background-repeat: no-repeat;
    background-size: 1.125rem;
    background-position: center right 0.25rem;
}

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

.form-item.focus._styled .form-label, .form-item.active._styled .form-label {
    font-size: 0.75rem;
    transform: translate(0, -0.5rem);
    opacity: 1;
    visibility: visible;
}

.form-item.focus._line .form-label, .form-item.active._line .form-label {
    transform: translate(0, -0.625rem);
}

.form-item .iti {
    display: block;
}

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

.form-control {
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    border-color: var(--border);
    background: var(--base);
    outline: none;
    color: var(--text);
    box-shadow: none;
    appearance: none;
}

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

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

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

.select {
    position: relative;
}

.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;
}

textarea {
    height: auto;
    resize: none;
}

.form-control-pw-btn {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    transform: translateY(-50%);
    background-image: url("../img/visibility_off_24.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    z-index: 2;
}

.form-control-pw-btn._visible {
    background-image: url("../img/visibility_24.svg");
}

.input-states-labelled {
    display: block;
    line-height: 1;
}

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

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

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

.counter-container {
    display: flex;
    align-items: center;
}

.counter-container._md .form-control {
    min-width: 2.625rem;
    width: 2.625rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.counter-container._md .counter-btn {
    width: 2.625rem;
    height: 2.625rem;
}

.counter-container .form-control {
    font-weight: 500;
    border-radius: 0;
    min-width: 3rem;
    width: 3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    border-left: none;
    border-right: none;
}

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

.counter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    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;
}

/* Begin switch */
.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.125rem;
    top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--base);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 3px 1px 0 rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.switch-label {
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

/* End switch */
/* Begin ratio */
.radio {
    position: relative;
}

.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: var(--accent);
}

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

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

.radio-input:checked + .radio-label .radio-label-ext {
    color: #cb018a;
}

.radio-label {
    position: relative;
    display: flex;
    font-weight: var(--font-weight);
    line-height: 1.5rem;
    margin: 0;
    padding: 0 0 0 2rem;
    cursor: pointer;
}

.radio-label a {
    text-decoration: none;
}

.radio-label a:hover {
    text-decoration: underline;
}

.radio-label::before, .radio-label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    background-color: #eaedef;
    transition: all 0.2s;
}

.radio-label::after {
    background-color: var(--accent);
    background-image: url("../img/check-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    opacity: 0;
}

.radio-label-ext {
    font-weight: 500;
    color: #bcc2c9;
    margin-left: 0.5rem;
}

/* End ratio */
/* Begin billing */
.billing {
    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;
    max-width: 21.25rem;
}

.billing-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);
}

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

.billing-card-hidden {
    font-weight: bold;
    margin-right: 0.5rem;
}

.billing-card-type {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    transform: translateY(-50%);
}

.billing-row {
    display: flex;
}

.billing-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;
}

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

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

/* End billing */
.form-info-sm {
    font-size: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    color: var(--text-secondary);
    background-color: #f0f2f5;
}

body .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

body .iti__arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../img/keyboard_arrow_down_24.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.25rem;
    border: none;
}

.wpcf7-form br {
    display: none;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form .form-item br {
    display: none;
}

.wpcf7-form .form-item .wpcf7-not-valid-tip {
    color: var(--error);
    font-size: 0.67rem;
    line-height: 1;
    position: absolute;
    right: 5px;
    top: 5px;
    white-space: nowrap;
}

.wpcf7-form .form-item.form-field-checkbox .wpcf7-not-valid-tip {
    top: -0.75rem;
    right: initial;
    left: 0;
}

.wpcf7-form .form-item .wpcf7-form-control-wrap {
    position: static;
}

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

.wpcf7-form .form-btn {
    align-items: center;
}

.wpcf7-form .form-btn + p {
    display: none;
}

.wpcf7-form .form-btn > p {
    display: flex;
    align-items: center;
    margin: 0;
}

.wpcf7-form .form-btn .btn {
    margin-bottom: 0;
}

.form-btn-inner {
    position: relative;
}

.wpcf7 form .wpcf7-response-output {
    position: relative;
    padding: 0.75rem 1rem;
    margin: 1.25rem 0 0 0;
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.375rem;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.wpcf7 form .wpcf7-response-output::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--base);
    pointer-events: none;
    z-index: -1;
}

.wpcf7 form .wpcf7-response-output::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E91C1C;
    opacity: 0.1;
    pointer-events: none;
}

.wpcf7 form.sent .wpcf7-response-output::after {
    background-color: #1CAB55;
}

.wpcf7 .form-field label {
    margin-bottom: 0;
}

.wpcf7-spinner {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    min-width: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0 0 1rem;
    background-color: transparent;
}

.wpcf7-spinner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--text);
    opacity: 0.15;
}

.wpcf7-spinner::before {
    background-color: var(--text);
}

/* === 5. Sections === */
.section.booking-service-section {
    padding-top: 3rem;
}

.booking-service {
    position: relative;
    margin: 0 auto;
}

.booking-service .section-header {
    margin-bottom: 1.5rem;
}

.booking-service .section-header p {
    margin-top: 0.75rem;
}

.bs-steps {
    margin-bottom: 1.5rem;
}

.bs-steps > li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    min-width: 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--text);
    border-radius: 50%;
    margin-right: 1rem;
    opacity: 0.32;
    transition: all 0.2s;
}

.bs-steps > li.passed, .bs-steps > li.active {
    opacity: 1;
}

.bs-steps > li:last-child {
    margin-right: 0;
}

.bs-row {
    position: relative;
    min-height: 480px;
    max-width: 800px;
    margin: 0 auto;
}

.bs-body {
    position: relative;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px 2px rgba(102, 105, 110, 0.16), 0 1px 2px 0 rgba(194, 193, 204, 0.08);
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    overflow: hidden;
}

.bsb-header {
    padding: 0;
    border-bottom: 1px solid var(--border);
}

.bsb-details {
    position: relative;
    font-size: 0.875rem;
    min-height: 4rem;
    border-radius: 4px;
    box-shadow: 0 1px 0 0 var(--border);
    background-color: #f0f2f5;
    border-left: 4px solid #f83187;
    overflow: hidden;
}

.bsbd-date {
    min-height: 4rem;
    box-shadow: 0 1px 0 0 var(--border);
}

.bsbd-date-1 {
    line-height: 1.125rem;
    min-width: 4rem;
    width: 4rem;
    padding-top: 0.25rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.bsbd-date-number {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.125rem;
    margin-bottom: 0.125rem;
}

.bsbd-date-2 {
    font-weight: 500;
    padding: 0 0 0 1rem;
}

.bsbd-date-day {
    font-size: 1rem;
    line-height: 1.5rem;
}

.bsbd-date-time {
    line-height: 1.125rem;
    min-width: 4.75rem;
}

.bsbd-address {
    font-weight: 500;
    padding: 0.75rem 1rem;
    box-shadow: 0 1px 0 0 var(--border);
}

.bsbd-address-icon {
    position: relative;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    background-color: var(--base);
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    overflow: hidden;
}

.bsbd-address-line {
    line-height: 1rem;
}

.bsbd-items {
    padding: 0.75rem 0.875rem 0.75rem 1rem;
    margin: 0 -0.5rem;
}

.bsbd-item {
    padding: 0 0.5rem;
}

.bsbd-item > svg:first-child {
    margin-right: 0.5rem;
}

.bsbd-item-price {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.27px;
}

.bsbd-delete {
    position: relative;
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    background-color: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    margin-left: -0.25rem;
    transition: all 0.2s;
}

.bsbd-delete::before, .bsbd-delete::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 9px;
    height: 1.5px;
    margin-left: -4.5px;
    margin-top: -0.75px;
    background-color: var(--base);
}

.bsbd-delete::before {
    transform: rotate(-45deg);
}

.bsbd-delete::after {
    transform: rotate(45deg);
}

.bsbd-delete:hover {
    background-color: var(--accent);
}

.bsb-forms {
    position: relative;
}

.bsb-form {
    display: none;
}

.bsb-form.active {
    display: block;
}

.bsb-form.animation-in-progress {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.4s, transform 0.4s;
}

.bsb-form.animation-out {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.4s, transform 0.4s;
}

.bsb-form.animation-in {
    opacity: 1;
    transform: none;
}

.bsb-accordion-item {
    position: relative;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.bsb-accordion-item.active .bsb-accordion-trigger::before {
    transform: rotateX(180deg);
}

.bsb-accordion-trigger {
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 1.5rem 1rem 2.5rem;
    cursor: pointer;
}

.bsb-accordion-trigger::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.75rem;
    background-image: url("../img/arrow-drop-down-24-px.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.4s;
}

.bsb-accordion-content {
    display: none;
    padding: 1rem 1.5rem 1rem 2.5rem;
}

.bsbf-info {
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    box-shadow: 0 1px 0 0 #d6dbe0;
    background-color: #f0f2f5;
    padding: 0.625rem;
    margin-bottom: 1.5rem;
}

.bsbfr-row {
    margin-bottom: 0.375rem;
    line-height: 1.25rem;
}

.bsbfr-row:last-child {
    margin-bottom: 0;
}

.bsbfr-row > div:first-child {
    min-width: 3.5rem;
    padding-right: 1rem;
}

.bsbfi-time-hr {
    font-weight: normal;
}

.bsbfd-row {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
}

.bsbfd-row:last-child {
    margin-bottom: 0;
}

.bsbfd-row > div:nth-child(2) {
    margin-left: 1rem;
}

.bsbfd-row-total {
    font-size: 1rem;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.bsb-footer {
    padding: 1.5rem;
}

.bsbf-checkbox {
    margin-top: 1.5rem;
}

.bsbf-checkbox .radio-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding-left: 2.5rem;
}

.bs-sidebar {
    position: relative;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px 2px rgba(102, 105, 110, 0.16), 0 1px 2px 0 rgba(194, 193, 204, 0.08);
    width: 100%;
    background-color: #fff;
    margin-top: 2rem;
    overflow: hidden;
}

.bss-header {
    font-size: 1.125rem;
    font-weight: 500;
    min-height: 4rem;
    padding: 1.125rem 1rem;
}

.bss-header svg {
    margin-right: 1rem;
}

.bss-row {
    padding: 0.8125rem 1rem;
    border-bottom: 1px dashed var(--border);
}

.bss-row:last-child {
    border-bottom: none;
}

.bss-row > div:nth-child(2) {
    margin-left: 1rem;
}

.bss-row-total {
    padding: 1.3125rem 1rem;
    border-top: 1px solid var(--border);
    background-color: #E7FBF2;
}

.bss-row-total:last-child {
    margin-top: -1px;
}

@media (min-width: 576px) {
    .bsb-header {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .bs-steps > li {
        font-size: 1.5rem;
        min-width: 3.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }

    .bsb-header {
        padding: 1.875rem 1.5rem;
    }

    .bsb-accordion-trigger,
  .bsb-accordion-content {
        padding-right: 2.5rem;
    }

    .bsb-footer {
        padding: 1.875rem;
    }

    .bsbf-checkbox {
        margin-top: 1.875rem;
    }

    .bsbd-date {
        box-shadow: none;
    }

    .bsbd-address {
        padding-left: 1.25rem;
        padding-right: 0;
        box-shadow: none;
    }

    .bsbd-address-line {
        min-width: 10rem;
    }

    .bsbd-items {
        padding-left: 1.25rem;
    }
}

@media (min-width: 992px) {
    .bsbd-address-line {
        min-width: 12rem;
    }
}

@media (min-width: 1200px) {
    .bs-row {
        max-width: initial;
        margin: initial;
    }

    .bs-sidebar {
        min-width: 256px;
        max-width: 256px;
        margin-left: 2rem;
        margin-top: 0;
    }

    .bsbd-date-time {
        white-space: nowrap;
    }
}

@media (min-width: 1400px) {
    .bsbd-address-line {
        min-width: 9rem;
    }

    .booking-service {
        position: relative;
        max-width: 800px;
    }

    .bs-sidebar {
        position: absolute;
        top: 0;
        left: 100%;
    }
}
/* === 6. Media === */
@media (min-width: 768px) {
    .fs-18 {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {
    .container-sm {
        max-width: 62.5rem;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 86.5rem;
    }

    .container-md {
        max-width: 78.75rem;
    }

    .container-sm {
        max-width: 62.5rem;
    }
}