@import"kandy-button.css";
:root {
    --accent-color: #f04848;
    --font-p-color: #A9A9A9;
    --highlight-color: #f04848;
    --font-h1-size: 38px;
    --font-h2-size: 32px;
    --font-h3-size: 26px;
    --font-h4-size: 18px;
    --font-p-large-size: 16px;
    --font-p-standard-size: 14px;
    --font-p-small-size: 12px;
    --font-p-margin-top: 16px
}

@media(min-width:768px) {
    :root {
        --font-h1-size: 58px;
        --font-h2-size: 46px;
        --font-h3-size: 36px;
        --font-h4-size: 24px;
        --font-p-large-size: 18px;
        --font-p-standard-size: 16px;
        --font-p-small-size: 12px;
        --font-p-margin-top: 12px
    }
}

.max-w-container {
    max-width: 1440px;
    margin-inline: auto;
    background-color: var(--body-color)
}

.p-container {
    padding: 56px 16px
}

@media(min-width:768px) {
    .p-container {
        padding: 82px 48px
    }
}

img {
    width: auto;
    height: auto;
    vertical-align: bottom
}

@media screen and (max-width:600px) {
    .SDesktop_only {
        display: none !important
    }
}

@media screen and (min-width:600px) {
    .SMobile_only {
        display: none !important
    }
}

@media screen and (max-width:768px) {
    .Desktop_only {
        display: none !important
    }
}

@media screen and (min-width:768px) {
    .Mobile_only {
        display: none !important
    }
}

@media screen and (max-width:1024px) {
    .LDesktop_only {
        display: none !important
    }
}

@media screen and (min-width:1024px) {
    .LMobile_only {
        display: none !important
    }
}

.text-lg {
    font-size: var(--font-p-large-size);
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0px
}

.text-md {
    font-size: var(--font-p-standard-size);
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0px
}

.text-sm {
    font-size: var(--font-p-small-size);
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0px
}

.heading-xl {
    font-family: Inter, sans-serif;
    font-size: var(--font-h1-size);
    font-weight: 800;
    line-height: 125%;
    letter-spacing: 1.16px;
    margin: 0
}

.heading-lg {
    font-family: Inter, sans-serif;
    font-size: var(--font-h2-size);
    font-weight: 800;
    line-height: 120%;
    letter-spacing: .46px;
    margin: 0
}

.heading-md {
    font-family: Inter, sans-serif;
    font-size: var(--font-h3-size);
    font-weight: 800;
    line-height: 110%;
    letter-spacing: .18px;
    margin: 0
}

.heading-sm {
    font-family: Inter, sans-serif;
    font-size: var(--font-h4-size);
    font-weight: 800;
    line-height: 110%;
    letter-spacing: 0px;
    margin: 0
}

container {
    max-width: 1440px;
    display: block;
    padding: 3.2rem 1rem;
    margin-inline: auto
}

flex,
.section-flex {
    display: flex;
    align-items: center;
    gap: 6px
}

flex-center {
    display: flex;
    justify-content: center;
    align-items: center
}

flex-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

point {
    display: flex;
    align-items: center;
    gap: 6px
}

point img {
    width: 18px
}

point p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    margin-block: 0
}

info-box {
    width: fit-content;
    border-radius: 48px;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 4px 8px
}

@media screen and (min-width:768px) {
    container {
        padding-inline: 2rem
    }
}

@media screen and (min-width:1024px) {
    container {
        padding: 3.2rem 2rem
    }
}

@media screen and (min-width:1280px) {
    container {
        padding: 3.2rem 4rem
    }
}

.modal-overlay {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000;
    z-index: 1;
    transition: background .3s ease-in-out
}

.active>.modal-overlay {
    background: #000c
}

.main-cta {
    --cta-accent: var(--accent-color);
    --cta-light: white;
    --cta-dark: #252525;
    min-width: 240px;
    width: fit-content;
    display: block;
    border-radius: 6px;
    border: 2px solid var(--cta-dark);
    background-color: var(--cta-light);
    color: var(--cta-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    padding: 14px 24px;
    margin-inline: auto;
    cursor: pointer;
    transition: all .3s ease
}

.main-cta:hover,
.main-cta.dark {
    background-color: var(--cta-dark);
    border-color: var(--cta-light);
    color: var(--cta-light)
}

.main-cta.dark:hover {
    background-color: var(--cta-light);
    border-color: var(--cta-dark);
    color: #000
}

.main-cta.accent {
    background-color: var(--cta-accent);
    border-color: var(--cta-accent);
    color: var(--cta-light)
}

.main-cta.accent:hover {
    background-color: var(--cta-light);
    border-color: var(--cta-accent);
    color: var(--cta-accent)
}

@media screen and (min-width:768px) {
    .main-cta {
        min-width: 260px;
        font-size: 18px
    }
}

.heading-wrapper.start-mb,
.heading-wrapper.start-mb>*,
.heading-wrapper>.start-mb {
    justify-content: flex-start;
    text-align: start
}

.heading-wrapper.center-mb,
.heading-wrapper.center-mb>*,
.heading-wrapper>.center-mb {
    justify-content: center;
    text-align: center
}

.heading-wrapper.end-mb,
.heading-wrapper.end-mb>*,
.heading-wrapper>.end-mb {
    justify-content: flex-end;
    text-align: end
}

.heading-wrapper {
    position: relative;
    padding-bottom: 40px
}

.heading-title {
    font-weight: 900;
    font-size: var(--font-h2-size);
    line-height: 1.1;
    margin-block: 0
}

.heading-title span {
    color: var(--highlight-color)
}

h1.heading-title {
    font-size: var(--font-h1-size)
}

.heading-title-logo {
    display: flex;
    align-items: center;
    gap: 16px
}

.heading-title-logo img {
    max-height: 32px
}

.heading-sub-text {
    color: #5b6854;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    margin-top: var(--font-p-margin-top)
}

.heading-text {
    color: var(--font-p-color);
    font-size: var(--font-p-large-size);
    font-weight: 400;
    line-height: 1.3;
    margin-top: var(--font-p-margin-top)
}

.heading-shop-all {
    color: #505050;
    position: absolute;
    top: 40px;
    right: 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    text-decoration: underline;
    padding-top: 4px
}

.heading-shop-all:hover {
    color: #000
}

.heading-properties {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-block: 12px
}

.heading-properties.grid-properties {
    grid-template-columns: repeat(2, 1fr)
}

.heading-property {
    display: flex;
    align-items: center;
    gap: 8px
}

.heading-property img {
    width: 22px;
    height: 22px
}

.heading-property p {
    font-size: 16px;
    line-height: normal;
    margin: 0
}

@media(min-width:1024px) {
    .heading-wrapper.start,
    .heading-wrapper.start>*,
    .heading-wrapper>.start {
        justify-content: flex-start;
        text-align: start
    }
    .heading-wrapper.center,
    .heading-wrapper.center>*,
    .heading-wrapper>.center {
        justify-content: center;
        text-align: center
    }
    .heading-wrapper.end,
    .heading-wrapper.end>*,
    .heading-wrapper>.end {
        justify-content: flex-end;
        text-align: end
    }
    .heading-wrapper {
        padding-bottom: 56px
    }
    .heading-shop-all {
        font-size: 15px;
        line-height: 23px;
        top: 60px;
        right: 30px;
        padding-top: 8px
    }
    .heading-property p {
        font-size: 16px
    }
}

.tp-ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    margin-bottom: 8px
}

.tp-ratings p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    margin-block: 0
}

.tp-ratings a {
    color: #000;
    text-decoration-color: #000
}

.tp-ratings div {
    max-width: 80px
}

.tp-ratings img {
    max-height: 14px;
    width: 100%;
    vertical-align: top
}

.tp-ratings div:nth-child(2) {
    max-width: 66px
}

.tp-ratings div,
.tp-ratings div:nth-child(2) img {
    max-height: 16px
}

@media screen and (min-width:1024px) {
    .tp-ratings p {
        font-size: 16px
    }
    .tp-ratings div {
        max-width: 116px
    }
    .tp-ratings img {
        max-height: 22px
    }
    .tp-ratings div:nth-child(2) {
        max-width: 90px
    }
    .tp-ratings div,
    .tp-ratings div:nth-child(2) img {
        max-height: 24px
    }
}

/*# sourceMappingURL=/cdn/shop/t/4/assets/custom_global.css.map?v=155004334410444492621747376162 */