/* base.css sha256:dcff21949aa15bedbbafc2b5be55fbca316f68a3d50885fb06c2fc438dbec7dd */
.m\:grid, .m\:flex {
    margin-left: max(-15px, var(--column-gap-mobile, var(--column-gap)) / -2);
    margin-right: max(-15px, var(--column-gap-mobile, var(--column-gap)) / -2);
    row-gap: var(--row-gap-mobile, var(--column-gap-mobile, --column-gap))
}

@media screen and (min-width: 768px) {
    .m\:grid, .m\:flex {
        margin-left: min(-7.5px, var(--column-gap-mobile, var(--column-gap)) / -2);
        margin-right: min(-7.5px, var(--column-gap-mobile, var(--column-gap)) / -2)
    }
}

@media screen and (min-width: 1024px) {
    .m\:grid, .m\:flex {
        row-gap: var(--row-gap, var(--column-gap));
        margin-left: calc(var(--column-gap, 0) / -2);
        margin-right: calc(var(--column-gap, 0) / -2)
    }
}

.m\:grid {
    display: grid
}

.m\:display-grid {
    display: grid
}

.m\:flex {
    display: flex
}

.m\:display-flex {
    display: flex
}

.m\:flex-1 {
    flex: 1 1 0%
}

.m\:flex-none {
    flex: none
}

.m\:grid-1-cols {
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

.m\:grid-2-cols {
    grid-template-columns:repeat(2, minmax(0, 1fr))
}

.m\:grid-3-cols {
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

.m\:grid-4-cols {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

.m\:grid-5-cols {
    grid-template-columns:repeat(5, minmax(0, 1fr))
}

.m\:grid-6-cols {
    grid-template-columns:repeat(6, minmax(0, 1fr))
}

.m\:grid-7-cols {
    grid-template-columns:repeat(7, minmax(0, 1fr))
}

.m\:grid-8-cols {
    grid-template-columns:repeat(8, minmax(0, 1fr))
}

.m\:grid-9-cols {
    grid-template-columns:repeat(9, minmax(0, 1fr))
}

.m\:grid-10-cols {
    grid-template-columns:repeat(10, minmax(0, 1fr))
}

.m\:grid-11-cols {
    grid-template-columns:repeat(11, minmax(0, 1fr))
}

.m\:grid-12-cols {
    grid-template-columns:repeat(12, minmax(0, 1fr))
}

.m\:grid-1-rows {
    grid-template-rows:repeat(1, minmax(0, 1fr))
}

.m\:grid-2-rows {
    grid-template-rows:repeat(2, minmax(0, 1fr))
}

.m\:grid-3-rows {
    grid-template-rows:repeat(3, minmax(0, 1fr))
}

.m\:grid-4-rows {
    grid-template-rows:repeat(4, minmax(0, 1fr))
}

.m\:grid-5-rows {
    grid-template-rows:repeat(5, minmax(0, 1fr))
}

.m\:grid-6-rows {
    grid-template-rows:repeat(6, minmax(0, 1fr))
}

.m\:grid-7-rows {
    grid-template-rows:repeat(7, minmax(0, 1fr))
}

.m\:grid-8-rows {
    grid-template-rows:repeat(8, minmax(0, 1fr))
}

.m\:grid-9-rows {
    grid-template-rows:repeat(9, minmax(0, 1fr))
}

.m\:grid-10-rows {
    grid-template-rows:repeat(10, minmax(0, 1fr))
}

.m\:grid-11-rows {
    grid-template-rows:repeat(11, minmax(0, 1fr))
}

.m\:grid-12-rows {
    grid-template-rows:repeat(12, minmax(0, 1fr))
}

.m\:column {
    padding-left: calc(var(--column-gap-mobile, var(--column-gap)) / 2);
    padding-right: calc(var(--column-gap-mobile, var(--column-gap)) / 2)
}

@media screen and (min-width: 768px) {
    .m\:column {
        padding-left: max(7.5px, var(--column-gap-mobile, var(--column-gap)) / 2);
        padding-right: max(7.5px, var(--column-gap-mobile, var(--column-gap)) / 2)
    }
}

@media screen and (min-width: 1024px) {
    .m\:column {
        padding-left: calc(var(--column-gap, 0) / 2);
        padding-right: calc(var(--column-gap, 0) / 2)
    }
}

.m\:block {
    display: block
}

.m\:inline-block {
    display: inline-block
}

.m\:flex {
    display: flex
}

.m\:flex-col {
    flex-direction: column
}

.m\:flex-col-reverse {
    flex-direction: column-reverse
}

.m\:flex-row {
    flex-direction: row
}

.m\:flex-row-reverse {
    flex-direction: row-reverse
}

.m\:flex-wrap {
    flex-wrap: wrap
}

.m\:flex-nowrap {
    flex-wrap: nowrap
}

.m\:inline-flex {
    display: inline-flex
}

.m\:hidden {
    display: none
}

.\!m\:hidden {
    display: none !important
}

.m\:table-cell {
    display: table-cell
}

.m\:items-start {
    align-items: start
}

.m\:items-center {
    align-items: center
}

.m\:items-end {
    align-items: end
}

.m\:items-stretch {
    align-items: stretch
}

.m\:justify-start {
    justify-content: flex-start
}

.m\:justify-center {
    justify-content: center
}

.m\:justify-end {
    justify-content: flex-end
}

.m\:justify-between {
    justify-content: space-between
}

.m\:justify-around {
    justify-content: space-around
}

.m\:text-left {
    text-align: left
}

.m\:text-center {
    text-align: center
}

.m\:text-right {
    text-align: right
}

.m\:text-base {
    font-size: calc(var(--font-base-size, 1rem) * 1px);
    line-height: 1.5rem
}

.m\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.m\:text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.m\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.m\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.m\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.m\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.m\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.m\:text-5xl {
    font-size: 3rem;
    line-height: 1
}

.m\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
}

.m\:text-7xl {
    font-size: 4.5rem;
    line-height: 1
}

.m\:text-8xl {
    font-size: 6rem;
    line-height: 1
}

.m\:text-9xl {
    font-size: 8rem;
    line-height: 1
}

.m\:w-1\/12 {
    width: 8.3333333333%
}

.m\:w-2\/12 {
    width: 16.6666666667%
}

.m\:w-3\/12 {
    width: 25%
}

.m\:w-4\/12 {
    width: 33.3333333333%
}

.m\:w-5\/12 {
    width: 41.6666666667%
}

.m\:w-6\/12 {
    width: 50%
}

.m\:w-7\/12 {
    width: 58.3333333333%
}

.m\:w-8\/12 {
    width: 66.6666666667%
}

.m\:w-9\/12 {
    width: 75%
}

.m\:w-10\/12 {
    width: 83.3333333333%
}

.m\:w-11\/12 {
    width: 91.6666666667%
}

.m\:w-12\/12 {
    width: 100%
}

.m\:w-full {
    width: 100%
}

.m\:h-full {
    height: 100%
}

.m\:w-auto {
    width: auto
}

.m\:w-1\/2 {
    width: 50%
}

.m\:w-1\/3 {
    width: 33.33%
}

.m\:w-1\/4 {
    width: 25%
}

.m\:w-1\/5 {
    width: 20%
}

.m\:w-1\/5 {
    width: 20%
}

.m\:w-2\/5 {
    width: 40%
}

.m\:w-3\/5 {
    width: 60%
}

.m\:w-4\/5 {
    width: 80%
}

.m\:w-5\/5 {
    width: 100%
}

@media (min-width: 640px) {
    .sm\:m\:grid-1-cols {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .sm\:m\:grid-2-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .sm\:m\:grid-3-cols {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .sm\:m\:grid-4-cols {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .sm\:m\:grid-5-cols {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }

    .sm\:m\:grid-6-cols {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .sm\:m\:grid-7-cols {
        grid-template-columns:repeat(7, minmax(0, 1fr))
    }

    .sm\:m\:grid-8-cols {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .sm\:m\:grid-9-cols {
        grid-template-columns:repeat(9, minmax(0, 1fr))
    }

    .sm\:m\:grid-10-cols {
        grid-template-columns:repeat(10, minmax(0, 1fr))
    }

    .sm\:m\:grid-11-cols {
        grid-template-columns:repeat(11, minmax(0, 1fr))
    }

    .sm\:m\:grid-12-cols {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .sm\:m\:grid-1-rows {
        grid-template-rows:repeat(1, minmax(0, 1fr))
    }

    .sm\:m\:grid-2-rows {
        grid-template-rows:repeat(2, minmax(0, 1fr))
    }

    .sm\:m\:grid-3-rows {
        grid-template-rows:repeat(3, minmax(0, 1fr))
    }

    .sm\:m\:grid-4-rows {
        grid-template-rows:repeat(4, minmax(0, 1fr))
    }

    .sm\:m\:grid-5-rows {
        grid-template-rows:repeat(5, minmax(0, 1fr))
    }

    .sm\:m\:grid-6-rows {
        grid-template-rows:repeat(6, minmax(0, 1fr))
    }

    .sm\:m\:grid-7-rows {
        grid-template-rows:repeat(7, minmax(0, 1fr))
    }

    .sm\:m\:grid-8-rows {
        grid-template-rows:repeat(8, minmax(0, 1fr))
    }

    .sm\:m\:grid-9-rows {
        grid-template-rows:repeat(9, minmax(0, 1fr))
    }

    .sm\:m\:grid-10-rows {
        grid-template-rows:repeat(10, minmax(0, 1fr))
    }

    .sm\:m\:grid-11-rows {
        grid-template-rows:repeat(11, minmax(0, 1fr))
    }

    .sm\:m\:grid-12-rows {
        grid-template-rows:repeat(12, minmax(0, 1fr))
    }

    .sm\:m\:w-1\/12 {
        width: 8.3333333333%
    }

    .sm\:m\:w-2\/12 {
        width: 16.6666666667%
    }

    .sm\:m\:w-3\/12 {
        width: 25%
    }

    .sm\:m\:w-4\/12 {
        width: 33.3333333333%
    }

    .sm\:m\:w-5\/12 {
        width: 41.6666666667%
    }

    .sm\:m\:w-6\/12 {
        width: 50%
    }

    .sm\:m\:w-7\/12 {
        width: 58.3333333333%
    }

    .sm\:m\:w-8\/12 {
        width: 66.6666666667%
    }

    .sm\:m\:w-9\/12 {
        width: 75%
    }

    .sm\:m\:w-10\/12 {
        width: 83.3333333333%
    }

    .sm\:m\:w-11\/12 {
        width: 91.6666666667%
    }

    .sm\:m\:w-12\/12 {
        width: 100%
    }

    .sm\:m\:w-1\/2 {
        width: 50%
    }

    .sm\:m\:w-1\/3 {
        width: 33.33%
    }

    .sm\:m\:w-1\/4 {
        width: 25%
    }

    .sm\:m\:w-1\/5 {
        width: 20%
    }

    .sm\:m\:w-full {
        width: 100%
    }

    .sm\:m\:w-auto {
        width: auto
    }

    .sm\:m\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .sm\:m\:mr-auto {
        margin-right: auto
    }

    .sm\:m\:ml-auto {
        margin-left: auto
    }

    .sm\:m\:items-start {
        align-items: start
    }

    .sm\:m\:items-center {
        align-items: center
    }

    .sm\:m\:items-end {
        align-items: end
    }

    .sm\:m\:items-stretch {
        align-items: stretch
    }

    .sm\:m\:flex-col {
        flex-direction: column
    }

    .sm\:m\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .sm\:m\:flex-row {
        flex-direction: row
    }

    .sm\:m\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .sm\:m\:flex-wrap {
        flex-wrap: wrap
    }

    .sm\:m\:flex-nowrap {
        flex-wrap: nowrap
    }

    .sm\:m\:justify-start {
        justify-content: flex-start
    }

    .sm\:m\:justify-center {
        justify-content: center
    }

    .sm\:m\:justify-end {
        justify-content: flex-end
    }

    .sm\:m\:justify-between {
        justify-content: space-between
    }

    .sm\:m\:justify-around {
        justify-content: space-around
    }

    .sm\:m\:text-left {
        text-align: left
    }

    .sm\:m\:text-center {
        text-align: center
    }

    .sm\:m\:text-right {
        text-align: right
    }

    .\!sm\:m\:hidden {
        display: none !important
    }

    .sm\:m\:hidden {
        display: none
    }

    .sm\:m\:block {
        display: block
    }

    .sm\:m\:flex {
        display: flex
    }

    .sm\:m\:grid {
        display: grid
    }

    .sm\:m\:display-flex {
        display: flex
    }

    .sm\:m\:display-grid {
        display: grid
    }

    .sm\:m\:table-cell {
        display: table-cell
    }

    .sm\:m\:text-base {
        font-size: calc(var(--font-base-size, 1rem) * 1px);
        line-height: 1.5rem
    }

    .sm\:m\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:m\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .sm\:m\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .sm\:m\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .sm\:m\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .sm\:m\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .sm\:m\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .sm\:m\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .sm\:m\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .sm\:m\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .sm\:m\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .sm\:m\:text-9xl {
        font-size: 8rem;
        line-height: 1
    }
}

@media (min-width: 768px) {
    .md\:m\:grid-1-cols {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .md\:m\:grid-2-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .md\:m\:grid-3-cols {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .md\:m\:grid-4-cols {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .md\:m\:grid-5-cols {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }

    .md\:m\:grid-6-cols {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .md\:m\:grid-7-cols {
        grid-template-columns:repeat(7, minmax(0, 1fr))
    }

    .md\:m\:grid-8-cols {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .md\:m\:grid-9-cols {
        grid-template-columns:repeat(9, minmax(0, 1fr))
    }

    .md\:m\:grid-10-cols {
        grid-template-columns:repeat(10, minmax(0, 1fr))
    }

    .md\:m\:grid-11-cols {
        grid-template-columns:repeat(11, minmax(0, 1fr))
    }

    .md\:m\:grid-12-cols {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .md\:m\:grid-1-rows {
        grid-template-rows:repeat(1, minmax(0, 1fr))
    }

    .md\:m\:grid-2-rows {
        grid-template-rows:repeat(2, minmax(0, 1fr))
    }

    .md\:m\:grid-3-rows {
        grid-template-rows:repeat(3, minmax(0, 1fr))
    }

    .md\:m\:grid-4-rows {
        grid-template-rows:repeat(4, minmax(0, 1fr))
    }

    .md\:m\:grid-5-rows {
        grid-template-rows:repeat(5, minmax(0, 1fr))
    }

    .md\:m\:grid-6-rows {
        grid-template-rows:repeat(6, minmax(0, 1fr))
    }

    .md\:m\:grid-7-rows {
        grid-template-rows:repeat(7, minmax(0, 1fr))
    }

    .md\:m\:grid-8-rows {
        grid-template-rows:repeat(8, minmax(0, 1fr))
    }

    .md\:m\:grid-9-rows {
        grid-template-rows:repeat(9, minmax(0, 1fr))
    }

    .md\:m\:grid-10-rows {
        grid-template-rows:repeat(10, minmax(0, 1fr))
    }

    .md\:m\:grid-11-rows {
        grid-template-rows:repeat(11, minmax(0, 1fr))
    }

    .md\:m\:grid-12-rows {
        grid-template-rows:repeat(12, minmax(0, 1fr))
    }

    .md\:m\:w-1\/12 {
        width: 8.3333333333%
    }

    .md\:m\:w-2\/12 {
        width: 16.6666666667%
    }

    .md\:m\:w-3\/12 {
        width: 25%
    }

    .md\:m\:w-4\/12 {
        width: 33.3333333333%
    }

    .md\:m\:w-5\/12 {
        width: 41.6666666667%
    }

    .md\:m\:w-6\/12 {
        width: 50%
    }

    .md\:m\:w-7\/12 {
        width: 58.3333333333%
    }

    .md\:m\:w-8\/12 {
        width: 66.6666666667%
    }

    .md\:m\:w-9\/12 {
        width: 75%
    }

    .md\:m\:w-10\/12 {
        width: 83.3333333333%
    }

    .md\:m\:w-11\/12 {
        width: 91.6666666667%
    }

    .md\:m\:w-12\/12 {
        width: 100%
    }

    .md\:m\:w-1\/2 {
        width: 50%
    }

    .md\:m\:w-1\/3 {
        width: 33.33%
    }

    .md\:m\:w-1\/4 {
        width: 25%
    }

    .md\:m\:w-1\/5 {
        width: 20%
    }

    .md\:m\:w-full {
        width: 100%
    }

    .md\:m\:w-auto {
        width: auto
    }

    .md\:m\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .md\:m\:mr-auto {
        margin-right: auto
    }

    .md\:m\:ml-auto {
        margin-left: auto
    }

    .md\:m\:items-start {
        align-items: start
    }

    .md\:m\:items-center {
        align-items: center
    }

    .md\:m\:items-end {
        align-items: end
    }

    .md\:m\:items-stretch {
        align-items: stretch
    }

    .md\:m\:flex-col {
        flex-direction: column
    }

    .md\:m\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .md\:m\:flex-row {
        flex-direction: row
    }

    .md\:m\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .md\:m\:flex-wrap {
        flex-wrap: wrap
    }

    .md\:m\:flex-nowrap {
        flex-wrap: nowrap
    }

    .md\:m\:justify-start {
        justify-content: flex-start
    }

    .md\:m\:justify-center {
        justify-content: center
    }

    .md\:m\:justify-end {
        justify-content: flex-end
    }

    .md\:m\:justify-between {
        justify-content: space-between
    }

    .md\:m\:justify-around {
        justify-content: space-around
    }

    .md\:m\:text-left {
        text-align: left
    }

    .md\:m\:text-center {
        text-align: center
    }

    .md\:m\:text-right {
        text-align: right
    }

    .\!md\:m\:hidden {
        display: none !important
    }

    .md\:m\:hidden {
        display: none
    }

    .md\:m\:block {
        display: block
    }

    .md\:m\:flex {
        display: flex
    }

    .md\:m\:grid {
        display: grid
    }

    .md\:m\:display-flex {
        display: flex
    }

    .md\:m\:display-grid {
        display: grid
    }

    .md\:m\:table-cell {
        display: table-cell
    }

    .md\:m\:text-base {
        font-size: calc(var(--font-base-size, 1rem) * 1px);
        line-height: 1.5rem
    }

    .md\:m\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .md\:m\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .md\:m\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .md\:m\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .md\:m\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .md\:m\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .md\:m\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .md\:m\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .md\:m\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .md\:m\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .md\:m\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .md\:m\:text-9xl {
        font-size: 8rem;
        line-height: 1
    }
}

@media (min-width: 1024px) {
    .lg\:m\:grid-1-cols {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .lg\:m\:grid-2-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .lg\:m\:grid-3-cols {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .lg\:m\:grid-4-cols {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .lg\:m\:grid-5-cols {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }

    .lg\:m\:grid-6-cols {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .lg\:m\:grid-7-cols {
        grid-template-columns:repeat(7, minmax(0, 1fr))
    }

    .lg\:m\:grid-8-cols {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .lg\:m\:grid-9-cols {
        grid-template-columns:repeat(9, minmax(0, 1fr))
    }

    .lg\:m\:grid-10-cols {
        grid-template-columns:repeat(10, minmax(0, 1fr))
    }

    .lg\:m\:grid-11-cols {
        grid-template-columns:repeat(11, minmax(0, 1fr))
    }

    .lg\:m\:grid-12-cols {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .lg\:m\:grid-1-rows {
        grid-template-rows:repeat(1, minmax(0, 1fr))
    }

    .lg\:m\:grid-2-rows {
        grid-template-rows:repeat(2, minmax(0, 1fr))
    }

    .lg\:m\:grid-3-rows {
        grid-template-rows:repeat(3, minmax(0, 1fr))
    }

    .lg\:m\:grid-4-rows {
        grid-template-rows:repeat(4, minmax(0, 1fr))
    }

    .lg\:m\:grid-5-rows {
        grid-template-rows:repeat(5, minmax(0, 1fr))
    }

    .lg\:m\:grid-6-rows {
        grid-template-rows:repeat(6, minmax(0, 1fr))
    }

    .lg\:m\:grid-7-rows {
        grid-template-rows:repeat(7, minmax(0, 1fr))
    }

    .lg\:m\:grid-8-rows {
        grid-template-rows:repeat(8, minmax(0, 1fr))
    }

    .lg\:m\:grid-9-rows {
        grid-template-rows:repeat(9, minmax(0, 1fr))
    }

    .lg\:m\:grid-10-rows {
        grid-template-rows:repeat(10, minmax(0, 1fr))
    }

    .lg\:m\:grid-11-rows {
        grid-template-rows:repeat(11, minmax(0, 1fr))
    }

    .lg\:m\:grid-12-rows {
        grid-template-rows:repeat(12, minmax(0, 1fr))
    }

    .lg\:m\:w-1\/12 {
        width: 8.3333333333%
    }

    .lg\:m\:w-2\/12 {
        width: 16.6666666667%
    }

    .lg\:m\:w-3\/12 {
        width: 25%
    }

    .lg\:m\:w-4\/12 {
        width: 33.3333333333%
    }

    .lg\:m\:w-5\/12 {
        width: 41.6666666667%
    }

    .lg\:m\:w-6\/12 {
        width: 50%
    }

    .lg\:m\:w-7\/12 {
        width: 58.3333333333%
    }

    .lg\:m\:w-8\/12 {
        width: 66.6666666667%
    }

    .lg\:m\:w-9\/12 {
        width: 75%
    }

    .lg\:m\:w-10\/12 {
        width: 83.3333333333%
    }

    .lg\:m\:w-11\/12 {
        width: 91.6666666667%
    }

    .lg\:m\:w-12\/12 {
        width: 100%
    }

    .lg\:m\:w-1\/2 {
        width: 50%
    }

    .lg\:m\:w-1\/3 {
        width: 33.33%
    }

    .lg\:m\:w-1\/4 {
        width: 25%
    }

    .lg\:m\:w-1\/5 {
        width: 20%
    }

    .lg\:m\:w-full {
        width: 100%
    }

    .lg\:m\:w-auto {
        width: auto
    }

    .lg\:m\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .lg\:m\:mr-auto {
        margin-right: auto
    }

    .lg\:m\:ml-auto {
        margin-left: auto
    }

    .lg\:m\:items-start {
        align-items: start
    }

    .lg\:m\:items-center {
        align-items: center
    }

    .lg\:m\:items-end {
        align-items: end
    }

    .lg\:m\:items-stretch {
        align-items: stretch
    }

    .lg\:m\:flex-col {
        flex-direction: column
    }

    .lg\:m\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .lg\:m\:flex-row {
        flex-direction: row
    }

    .lg\:m\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .lg\:m\:flex-wrap {
        flex-wrap: wrap
    }

    .lg\:m\:flex-nowrap {
        flex-wrap: nowrap
    }

    .lg\:m\:justify-start {
        justify-content: flex-start
    }

    .lg\:m\:justify-center {
        justify-content: center
    }

    .lg\:m\:justify-end {
        justify-content: flex-end
    }

    .lg\:m\:justify-between {
        justify-content: space-between
    }

    .lg\:m\:justify-around {
        justify-content: space-around
    }

    .lg\:m\:text-left {
        text-align: left
    }

    .lg\:m\:text-center {
        text-align: center
    }

    .lg\:m\:text-right {
        text-align: right
    }

    .\!lg\:m\:hidden {
        display: none !important
    }

    .lg\:m\:hidden {
        display: none
    }

    .lg\:m\:block {
        display: block
    }

    .lg\:m\:flex {
        display: flex
    }

    .lg\:m\:grid {
        display: grid
    }

    .lg\:m\:display-flex {
        display: flex
    }

    .lg\:m\:display-grid {
        display: grid
    }

    .lg\:m\:table-cell {
        display: table-cell
    }

    .lg\:m\:text-base {
        font-size: calc(var(--font-base-size, 1rem) * 1px);
        line-height: 1.5rem
    }

    .lg\:m\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .lg\:m\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .lg\:m\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .lg\:m\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .lg\:m\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .lg\:m\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .lg\:m\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .lg\:m\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .lg\:m\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .lg\:m\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .lg\:m\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .lg\:m\:text-9xl {
        font-size: 8rem;
        line-height: 1
    }
}

@media (min-width: 1280px) {
    .xl\:m\:grid-1-cols {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .xl\:m\:grid-2-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .xl\:m\:grid-3-cols {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .xl\:m\:grid-4-cols {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .xl\:m\:grid-5-cols {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }

    .xl\:m\:grid-6-cols {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .xl\:m\:grid-7-cols {
        grid-template-columns:repeat(7, minmax(0, 1fr))
    }

    .xl\:m\:grid-8-cols {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .xl\:m\:grid-9-cols {
        grid-template-columns:repeat(9, minmax(0, 1fr))
    }

    .xl\:m\:grid-10-cols {
        grid-template-columns:repeat(10, minmax(0, 1fr))
    }

    .xl\:m\:grid-11-cols {
        grid-template-columns:repeat(11, minmax(0, 1fr))
    }

    .xl\:m\:grid-12-cols {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .xl\:m\:grid-1-rows {
        grid-template-rows:repeat(1, minmax(0, 1fr))
    }

    .xl\:m\:grid-2-rows {
        grid-template-rows:repeat(2, minmax(0, 1fr))
    }

    .xl\:m\:grid-3-rows {
        grid-template-rows:repeat(3, minmax(0, 1fr))
    }

    .xl\:m\:grid-4-rows {
        grid-template-rows:repeat(4, minmax(0, 1fr))
    }

    .xl\:m\:grid-5-rows {
        grid-template-rows:repeat(5, minmax(0, 1fr))
    }

    .xl\:m\:grid-6-rows {
        grid-template-rows:repeat(6, minmax(0, 1fr))
    }

    .xl\:m\:grid-7-rows {
        grid-template-rows:repeat(7, minmax(0, 1fr))
    }

    .xl\:m\:grid-8-rows {
        grid-template-rows:repeat(8, minmax(0, 1fr))
    }

    .xl\:m\:grid-9-rows {
        grid-template-rows:repeat(9, minmax(0, 1fr))
    }

    .xl\:m\:grid-10-rows {
        grid-template-rows:repeat(10, minmax(0, 1fr))
    }

    .xl\:m\:grid-11-rows {
        grid-template-rows:repeat(11, minmax(0, 1fr))
    }

    .xl\:m\:grid-12-rows {
        grid-template-rows:repeat(12, minmax(0, 1fr))
    }

    .xl\:m\:w-1\/12 {
        width: 8.3333333333%
    }

    .xl\:m\:w-2\/12 {
        width: 16.6666666667%
    }

    .xl\:m\:w-3\/12 {
        width: 25%
    }

    .xl\:m\:w-4\/12 {
        width: 33.3333333333%
    }

    .xl\:m\:w-5\/12 {
        width: 41.6666666667%
    }

    .xl\:m\:w-6\/12 {
        width: 50%
    }

    .xl\:m\:w-7\/12 {
        width: 58.3333333333%
    }

    .xl\:m\:w-8\/12 {
        width: 66.6666666667%
    }

    .xl\:m\:w-9\/12 {
        width: 75%
    }

    .xl\:m\:w-10\/12 {
        width: 83.3333333333%
    }

    .xl\:m\:w-11\/12 {
        width: 91.6666666667%
    }

    .xl\:m\:w-12\/12 {
        width: 100%
    }

    .xl\:m\:w-1\/2 {
        width: 50%
    }

    .xl\:m\:w-1\/3 {
        width: 33.33%
    }

    .xl\:m\:w-1\/4 {
        width: 25%
    }

    .xl\:m\:w-1\/5 {
        width: 20%
    }

    .xl\:m\:w-full {
        width: 100%
    }

    .xl\:m\:w-auto {
        width: auto
    }

    .xl\:m\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .xl\:m\:mr-auto {
        margin-right: auto
    }

    .xl\:m\:ml-auto {
        margin-left: auto
    }

    .xl\:m\:items-start {
        align-items: start
    }

    .xl\:m\:items-center {
        align-items: center
    }

    .xl\:m\:items-end {
        align-items: end
    }

    .xl\:m\:items-stretch {
        align-items: stretch
    }

    .xl\:m\:flex-col {
        flex-direction: column
    }

    .xl\:m\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .xl\:m\:flex-row {
        flex-direction: row
    }

    .xl\:m\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .xl\:m\:flex-wrap {
        flex-wrap: wrap
    }

    .xl\:m\:flex-nowrap {
        flex-wrap: nowrap
    }

    .xl\:m\:justify-start {
        justify-content: flex-start
    }

    .xl\:m\:justify-center {
        justify-content: center
    }

    .xl\:m\:justify-end {
        justify-content: flex-end
    }

    .xl\:m\:justify-between {
        justify-content: space-between
    }

    .xl\:m\:justify-around {
        justify-content: space-around
    }

    .xl\:m\:text-left {
        text-align: left
    }

    .xl\:m\:text-center {
        text-align: center
    }

    .xl\:m\:text-right {
        text-align: right
    }

    .\!xl\:m\:hidden {
        display: none !important
    }

    .xl\:m\:hidden {
        display: none
    }

    .xl\:m\:block {
        display: block
    }

    .xl\:m\:flex {
        display: flex
    }

    .xl\:m\:grid {
        display: grid
    }

    .xl\:m\:display-flex {
        display: flex
    }

    .xl\:m\:display-grid {
        display: grid
    }

    .xl\:m\:table-cell {
        display: table-cell
    }

    .xl\:m\:text-base {
        font-size: calc(var(--font-base-size, 1rem) * 1px);
        line-height: 1.5rem
    }

    .xl\:m\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .xl\:m\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .xl\:m\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .xl\:m\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .xl\:m\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .xl\:m\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .xl\:m\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .xl\:m\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .xl\:m\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .xl\:m\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .xl\:m\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .xl\:m\:text-9xl {
        font-size: 8rem;
        line-height: 1
    }
}

@media (min-width: 1536px) {
    .xxl\:m\:grid-1-cols {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .xxl\:m\:grid-2-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .xxl\:m\:grid-3-cols {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .xxl\:m\:grid-4-cols {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .xxl\:m\:grid-5-cols {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }

    .xxl\:m\:grid-6-cols {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .xxl\:m\:grid-7-cols {
        grid-template-columns:repeat(7, minmax(0, 1fr))
    }

    .xxl\:m\:grid-8-cols {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .xxl\:m\:grid-9-cols {
        grid-template-columns:repeat(9, minmax(0, 1fr))
    }

    .xxl\:m\:grid-10-cols {
        grid-template-columns:repeat(10, minmax(0, 1fr))
    }

    .xxl\:m\:grid-11-cols {
        grid-template-columns:repeat(11, minmax(0, 1fr))
    }

    .xxl\:m\:grid-12-cols {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .xxl\:m\:grid-1-rows {
        grid-template-rows:repeat(1, minmax(0, 1fr))
    }

    .xxl\:m\:grid-2-rows {
        grid-template-rows:repeat(2, minmax(0, 1fr))
    }

    .xxl\:m\:grid-3-rows {
        grid-template-rows:repeat(3, minmax(0, 1fr))
    }

    .xxl\:m\:grid-4-rows {
        grid-template-rows:repeat(4, minmax(0, 1fr))
    }

    .xxl\:m\:grid-5-rows {
        grid-template-rows:repeat(5, minmax(0, 1fr))
    }

    .xxl\:m\:grid-6-rows {
        grid-template-rows:repeat(6, minmax(0, 1fr))
    }

    .xxl\:m\:grid-7-rows {
        grid-template-rows:repeat(7, minmax(0, 1fr))
    }

    .xxl\:m\:grid-8-rows {
        grid-template-rows:repeat(8, minmax(0, 1fr))
    }

    .xxl\:m\:grid-9-rows {
        grid-template-rows:repeat(9, minmax(0, 1fr))
    }

    .xxl\:m\:grid-10-rows {
        grid-template-rows:repeat(10, minmax(0, 1fr))
    }

    .xxl\:m\:grid-11-rows {
        grid-template-rows:repeat(11, minmax(0, 1fr))
    }

    .xxl\:m\:grid-12-rows {
        grid-template-rows:repeat(12, minmax(0, 1fr))
    }

    .xxl\:m\:w-1\/12 {
        width: 8.3333333333%
    }

    .xxl\:m\:w-2\/12 {
        width: 16.6666666667%
    }

    .xxl\:m\:w-3\/12 {
        width: 25%
    }

    .xxl\:m\:w-4\/12 {
        width: 33.3333333333%
    }

    .xxl\:m\:w-5\/12 {
        width: 41.6666666667%
    }

    .xxl\:m\:w-6\/12 {
        width: 50%
    }

    .xxl\:m\:w-7\/12 {
        width: 58.3333333333%
    }

    .xxl\:m\:w-8\/12 {
        width: 66.6666666667%
    }

    .xxl\:m\:w-9\/12 {
        width: 75%
    }

    .xxl\:m\:w-10\/12 {
        width: 83.3333333333%
    }

    .xxl\:m\:w-11\/12 {
        width: 91.6666666667%
    }

    .xxl\:m\:w-12\/12 {
        width: 100%
    }

    .xxl\:m\:w-1\/2 {
        width: 50%
    }

    .xxl\:m\:w-1\/3 {
        width: 33.33%
    }

    .xxl\:m\:w-1\/4 {
        width: 25%
    }

    .xxl\:m\:w-1\/5 {
        width: 20%
    }

    .xxl\:m\:w-full {
        width: 100%
    }

    .xxl\:m\:w-auto {
        width: auto
    }

    .xxl\:m\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .xxl\:m\:mr-auto {
        margin-right: auto
    }

    .xxl\:m\:ml-auto {
        margin-left: auto
    }

    .xxl\:m\:items-start {
        align-items: start
    }

    .xxl\:m\:items-center {
        align-items: center
    }

    .xxl\:m\:items-end {
        align-items: end
    }

    .xxl\:m\:items-stretch {
        align-items: stretch
    }

    .xxl\:m\:flex-col {
        flex-direction: column
    }

    .xxl\:m\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .xxl\:m\:flex-row {
        flex-direction: row
    }

    .xxl\:m\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .xxl\:m\:flex-wrap {
        flex-wrap: wrap
    }

    .xxl\:m\:flex-nowrap {
        flex-wrap: nowrap
    }

    .xxl\:m\:justify-start {
        justify-content: flex-start
    }

    .xxl\:m\:justify-center {
        justify-content: center
    }

    .xxl\:m\:justify-end {
        justify-content: flex-end
    }

    .xxl\:m\:justify-between {
        justify-content: space-between
    }

    .xxl\:m\:justify-around {
        justify-content: space-around
    }

    .xxl\:m\:text-left {
        text-align: left
    }

    .xxl\:m\:text-center {
        text-align: center
    }

    .xxl\:m\:text-right {
        text-align: right
    }

    .\!xxl\:m\:hidden {
        display: none !important
    }

    .xxl\:m\:hidden {
        display: none
    }

    .xxl\:m\:block {
        display: block
    }

    .xxl\:m\:flex {
        display: flex
    }

    .xxl\:m\:grid {
        display: grid
    }

    .xxl\:m\:display-flex {
        display: flex
    }

    .xxl\:m\:display-grid {
        display: grid
    }

    .xxl\:m\:table-cell {
        display: table-cell
    }

    .xxl\:m\:text-base {
        font-size: calc(var(--font-base-size, 1rem) * 1px);
        line-height: 1.5rem
    }

    .xxl\:m\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .xxl\:m\:text-xs {
        font-size: .75rem;
        line-height: 1rem
    }

    .xxl\:m\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .xxl\:m\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .xxl\:m\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .xxl\:m\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .xxl\:m\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .xxl\:m\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .xxl\:m\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .xxl\:m\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .xxl\:m\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .xxl\:m\:text-9xl {
        font-size: 8rem;
        line-height: 1
    }
}

@media screen and (max-width: 767px) {
    .m\:hidden-mobile {
        display: none
    }

    .\!m\:hidden-mobile {
        display: none !important
    }
}

*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    text-decoration: underline dotted
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer
}

b, strong {
    font-weight: bolder
}

code, kbd, samp, pre {
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: currentColor;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button;
    appearance: button;
    background-color: rgba(0, 0, 0, 0);
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    appearance: textfied;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol, ul, menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::placeholder, textarea::placeholder {
    opacity: .5;
    color: rgb(var(--color-form-field-text))
}

button, [role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block
}

img, video {
    max-width: 100%;
    height: auto
}

[hidden] {
    display: none !important
}

.rte > *:last-child {
    margin-bottom: 0
}

.rte :where(img,iframe) {
    display: inline-block;
    border-radius: var(--blocks-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black)
}

.rte :where(h1,h2,h3,h4,h5,h6) {
    margin-bottom: .85em;
    margin-top: 1em
}

.rte p {
    margin-bottom: .75em;
    margin-top: .75em
}

.rte p:first-child {
    margin-top: 0
}

.rte p:last-child {
    margin-bottom: 0
}

.rte table {
    table-layout: fixed
}

.rte table:not([class]) {
    border-collapse: collapse;
    border-style: hidden;
    box-shadow: 0 0 0 1px rgba(var(--color-foreground), 0.2)
}

.rte table:not([class]) td, .rte table:not([class]) th {
    padding: .5em;
    border: 1px solid rgba(var(--color-foreground), 0.2)
}

.rte img {
    height: auto;
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem
}

.rte blockquote {
    display: inline-flex;
    font-style: italic;
    color: rgba(var(--color-foreground), 0.75);
    border-left: .2rem solid rgba(var(--color-foreground), 0.2);
    padding-left: 1rem;
    margin: revert
}

.rte blockquote > * {
    margin: -0.5rem 0 -0.5rem 0
}

@media screen and (min-width: 750px) {
    .rte blockquote {
        padding-left: 1.5rem
    }
}

.rte :where(ul,ol) {
    padding-left: 2rem;
    margin-bottom: 1.25em;
    margin-top: 1.25em
}

.rte :where(ul,ol).liststyle-none {
    list-style: none;
    padding: 0
}

.rte ul {
    list-style-type: disc
}

.rte ol {
    list-style-type: decimal
}

.rte ul.list-none {
    list-style: none;
    padding: 0
}

.rte li {
    list-style: inherit;
    line-height: 2
}

.rte li:last-child {
    margin-bottom: 0
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=text], input[type=email], input[type=password], input[type=search], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

select {
    background-color: rgba(0, 0, 0, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--arrow-select-box);
    background-size: 10px;
    background-position-x: calc(100% - 9px);
    padding-right: 25px
}

input:not(.f-quantity__input,.form-field,.f-facets-price--range,.tcustomizer__color-picker--input,.tcustomizer__text-field), textarea:not(.f-quantity__input,.form-field,.f-facets-price--range,.tcustomizer__color-picker--input,.tcustomizer__text-field) {
    border-width: 1px;
    border-style: solid
}

.f-button, .fec-payment-button__button.fec-payment-button__button--unbranded, .spr-button.spr-button-primary {
    outline: none;
    text-align: center;
    padding: 10px 20px;
    white-space: normal;
    transition: var(--f-duration-default, 0.25s) all;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: var(--font-btn-size, 1rem);
    font-weight: var(--font-btn-weight, 500);
    letter-spacing: var(--btn-letter-spacing, 0);
    text-transform: var(--btn-text-transform, "");
    border-radius: var(--btn-border-radius, 0);
    line-height: var(--btn-line-height, "normal")
}

.f-button:hover, .fec-payment-button__button.fec-payment-button__button--unbranded:hover, .spr-button.spr-button-primary:hover {
    cursor: pointer
}

.f-button:focus, .fec-payment-button__button.fec-payment-button__button--unbranded:focus, .spr-button.spr-button-primary:focus, .f-button:hover, .fec-payment-button__button.fec-payment-button__button--unbranded:hover, .spr-button.spr-button-primary:hover {
    border-color: rgb(var(--color-button-hover));
    background-color: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover))
}

.f-button:not(.f-button--link,.f-link-underline,.f-button--blank):hover, .fec-payment-button__button.fec-payment-button__button--unbranded:not(.f-button--link,.f-link-underline,.f-button--blank):hover, .spr-button.spr-button-primary:not(.f-button--link,.f-link-underline,.f-button--blank):hover {
    box-shadow: 0 0 0 .2rem rgb(var(--color-button-hover))
}

.f-button:disabled, .fec-payment-button__button.fec-payment-button__button--unbranded:disabled, .spr-button.spr-button-primary:disabled, .f-button.disabled, .disabled.fec-payment-button__button.fec-payment-button__button--unbranded, .disabled.spr-button.spr-button-primary, .f-button--disabled, .f-button[disabled], [disabled].fec-payment-button__button.fec-payment-button__button--unbranded, [disabled].spr-button.spr-button-primary {
    pointer-events: none;
    opacity: .5
}

.f-button.f-button--small, .f-button--small.fec-payment-button__button.fec-payment-button__button--unbranded, .f-button--small.spr-button.spr-button-primary {
    font-size: 14px;
    line-height: 20px
}

.f-button.f-button--small:not(.f-button--link):not(.f-link-underline), .f-button--small.fec-payment-button__button.fec-payment-button__button--unbranded:not(.f-button--link):not(.f-link-underline), .f-button--small.spr-button.spr-button-primary:not(.f-button--link):not(.f-link-underline) {
    padding-top: 8px;
    padding-bottom: 8px
}

.f-button.f-button--large:not(.f-button--link):not(.f-link-underline), .f-button--large.fec-payment-button__button.fec-payment-button__button--unbranded:not(.f-button--link):not(.f-link-underline), .f-button--large.spr-button.spr-button-primary:not(.f-button--link):not(.f-link-underline) {
    padding-top: 12px;
    padding-bottom: 12px
}

@media screen and (min-width: 1024px) {
    .f-button.f-button--large, .f-button--large.fec-payment-button__button.fec-payment-button__button--unbranded, .f-button--large.spr-button.spr-button-primary {
        font-size: 18px;
        line-height: 28px
    }
}

@media screen and (min-width: 768px) {
    .f-button, .fec-payment-button__button.fec-payment-button__button--unbranded, .spr-button.spr-button-primary {
        padding-left: 30px;
        padding-right: 30px
    }
}

.f-button--primary, .fec-payment-button__button.fec-payment-button__button--unbranded, .spr-button.spr-button-primary {
    background-color: rgb(var(--color-button));
    border-color: rgb(var(--color-button));
    color: rgb(var(--color-button-text))
}

.f-button--primary:focus, .fec-payment-button__button.fec-payment-button__button--unbranded:focus, .spr-button.spr-button-primary:focus, .f-button--primary:hover, .fec-payment-button__button.fec-payment-button__button--unbranded:hover, .spr-button.spr-button-primary:hover {
    background: rgb(var(--color-button-hover));
    border-color: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover))
}

.f-button--link, .f-section__description a, .f-link-underline, .rte a:not(.spr-summary-actions-newreview) {
    padding: 0;
    border-radius: 0;
    border-width: 0;
    position: relative;
    color: inherit
}

.f-button--link:hover, .f-section__description a:hover, .f-link-underline:hover, .rte a:hover:not(.spr-summary-actions-newreview), .f-button--link:focus, .f-section__description a:focus, .f-link-underline:focus, .rte a:focus:not(.spr-summary-actions-newreview) {
    background: none;
    color: inherit
}

.f-button--link:hover::before, .f-section__description a:hover::before, .f-link-underline:hover::before, .rte a:hover:not(.spr-summary-actions-newreview)::before, .f-button--link:focus::before, .f-section__description a:focus::before, .f-link-underline:focus::before, .rte a:focus:not(.spr-summary-actions-newreview)::before {
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1)
}

.f-button--link:hover::after, .f-section__description a:hover::after, .f-link-underline:hover::after, .rte a:hover:not(.spr-summary-actions-newreview)::after, .f-button--link:focus::after, .f-section__description a:focus::after, .f-link-underline:focus::after, .rte a:focus:not(.spr-summary-actions-newreview)::after {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    transition: transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1) .3s, -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1) .3s
}

.f-button--link::before, .f-section__description a::before, .f-link-underline::before, .rte a:not(.spr-summary-actions-newreview)::before, .f-button--link::after, .f-section__description a::after, .f-link-underline::after, .rte a:not(.spr-summary-actions-newreview)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: var(--btn-link-border, 1px);
    background: currentColor;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    transition: transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1) .3s, -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1) .3s
}

.f-button--link::after, .f-section__description a::after, .f-link-underline::after, .rte a:not(.spr-summary-actions-newreview)::after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform var(--f-duration-long, 0.5s) cubic-bezier(0.165, 0.84, 0.44, 1)
}

.f-button--link.f-button--text-with-icon::before, .f-section__description a.f-button--text-with-icon::before, .f-button--text-with-icon.f-link-underline::before, .rte a.f-button--text-with-icon:not(.spr-summary-actions-newreview)::before, .f-button--link.f-button--text-with-icon::after, .f-section__description a.f-button--text-with-icon::after, .f-button--text-with-icon.f-link-underline::after, .rte a.f-button--text-with-icon:not(.spr-summary-actions-newreview)::after {
    width: calc(100% - 25px)
}

.f-button--blank {
    transition: all var(--f-duration-default);
    border: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0)
}

.f-button--blank:hover, .f-button--blank:focus {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(var(--color-foreground), 0.75);
    box-shadow: none
}

.f-button--secondary {
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    border: var(--btn-border-width) solid rgb(var(--color-outline-button));
    color: rgb(var(--color-outline-button))
}

.f-button--secondary.f-button--small {
    padding-top: 7px;
    padding-bottom: 7px
}

.f-button--secondary.f-button--large {
    padding-top: 11px;
    padding-bottom: 11px
}

.f-button--secondary:focus, .f-button--secondary:hover {
    background: rgb(var(--color-button-hover));
    border-color: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover))
}

.f-button--plain {
    border: none !important;
    background: none !important;
    padding: 0;
    box-shadow: none !important
}

.f-button--plain:hover {
    text-decoration: underline !important;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(var(--color-foreground), 0.75);
    transform: translate3d(0, -2px, 0)
}

.f-button--white {
    background: rgba(var(--bg-white), 1);
    color: rgba(var(--text-black), 1)
}

.f-button--white:hover {
    border-color: rgba(0, 0, 0, 0);
    background: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover))
}

.f-button--text-with-icon {
    display: inline-flex;
    align-items: center;
    column-gap: 4px
}

@media screen and (min-width: 1280px) {
    .f-button--icon:hover {
        box-shadow: 0 0 0 .2rem rgb(var(--color-button-hover))
    }
}

.fec-payment-button__button {
    position: relative;
    border-radius: var(--btn-border-radius, 0) !important;
    overflow: hidden
}

.fec-payment-button__button.fec-payment-button__button--unbranded, .spr-button.spr-button-primary {
    white-space: nowrap
}

.fec-payment-button__button.fec-payment-button__button--unbranded:hover:not([disabled]), .spr-button.spr-button-primary:hover:not([disabled]) {
    background: rgb(var(--color-button-hover)) !important
}

.f-section__description a, .f-link-underline, .rte a:not(.spr-summary-actions-newreview) {
    --btn-link-border: 1px
}

.f-section__description a::after, .f-section__description a::before, .f-link-underline::after, .f-link-underline::before, .rte a:not(.spr-summary-actions-newreview)::after, .rte a:not(.spr-summary-actions-newreview)::before {
    bottom: 3px
}

.button[name=checkout] > * {
    pointer-events: none
}

.form-field-group {
    position: relative;
    margin-bottom: 24px
}

.form-field-group:last-child {
    margin-bottom: 0
}

.form-field {
    padding: 6px 12px;
    border: var(--inputs-border-width) solid rgb(var(--color-border));
    border-radius: var(--inputs-radius);
    background-color: rgb(var(--color-form-field));
    color: rgb(var(--color-form-field-text));
    width: 100%;
    outline: none;
    line-height: 2;
    transition: all var(--f-duration-default, 0.25s)
}

.form-field + .form-field {
    margin-top: 15px
}

.form-field:focus {
    border-color: rgb(var(--color-foreground))
}

.form-field--label {
    margin-bottom: 5px;
    display: block
}

.form-field--input__icon {
    padding-left: 48px;
    padding-right: 48px
}

.form-field--input__plain {
    border: none;
    background-color: rgba(0, 0, 0, 0) !important;
    border-bottom: 2px solid #000;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0
}

.form-field--checkbox {
    display: flex;
    align-items: center;
    padding-left: 32px;
    position: relative;
    cursor: pointer
}

.form-field--checkbox input {
    display: none
}

.form-field--checkbox input:checked ~ .form-field--checkbox__icon svg path:last-child {
    display: block
}

.form-field--checkbox__icon {
    position: absolute;
    left: 0
}

.form-field--checkbox__icon path:last-child {
    display: none
}

.form-field--checkbox p {
    margin: 0
}

.form-field--checkbox a {
    text-decoration: underline
}

.form-field--checkbox a:hover {
    color: rgb(var(--color-foreground))
}

.form-field--message {
    align-items: center;
    font-size: 14px;
    line-height: 1;
    margin-top: 10px
}

.form-field--message:not(.m\:hidden) {
    display: flex
}

.form-field--message svg {
    flex-shrink: 0;
    margin-right: 5px
}

.form-field--no-border {
    border: none
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: var(--container-width, 1280px)
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: calc(var(--fluid-container-width, 1620px) + var(--fluid-container-offset) * 2)
}

@media screen and (min-width: 1280px) {
    .container-fluid {
        padding: 0 var(--fluid-container-offset, 60px)
    }
}

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.container-narrow {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.f-section-my {
    margin-top: var(--spacing-sections-desktop);
    margin-bottom: var(--spacing-sections-desktop)
}

@media screen and (max-width: 1535px) {
    .f-section-my {
        margin-top: var(--spacing-sections-laptop);
        margin-bottom: var(--spacing-sections-laptop)
    }
}

@media screen and (max-width: 1279px) {
    .f-section-my {
        margin-top: var(--spacing-sections-tablet);
        margin-bottom: var(--spacing-sections-tablet)
    }
}

@media screen and (max-width: 767px) {
    .f-section-my {
        margin-top: var(--spacing-sections-mobile);
        margin-bottom: var(--spacing-sections-mobile)
    }
}

.f-section-py {
    --section-padding-top-laptop: calc(var(--section-padding-top) * 0.8);
    --section-padding-bottom-laptop: calc(var(--section-padding-bottom) * 0.8);
    --section-padding-top-tablet: calc(var(--section-padding-top) * 0.7);
    --section-padding-bottom-tablet: calc(var(--section-padding-bottom) * 0.7);
    --section-padding-top-mobile: min(var(--section-padding-top), 80px);
    --section-padding-bottom-mobile: min(var(--section-padding-bottom), 80px);
    padding-top: var(--section-padding-top, var(--spacing-sections-desktop));
    padding-bottom: var(--section-padding-bottom, var(--spacing-sections-desktop))
}

@media screen and (max-width: 1535px) {
    .f-section-py {
        padding-top: var(--section-padding-top-laptop, var(--spacing-sections-laptop));
        padding-bottom: var(--section-padding-bottom-laptop, var(--spacing-sections-laptop))
    }
}

@media screen and (max-width: 1279px) {
    .f-section-py {
        padding-top: var(--section-padding-top-tablet, var(--spacing-sections-tablet));
        padding-bottom: var(--section-padding-bottom-tablet, var(--spacing-sections-tablet))
    }
}

@media screen and (max-width: 767px) {
    .f-section-py {
        padding-top: var(--section-padding-top-mobile, var(--spacing-sections-mobile));
        padding-bottom: var(--section-padding-bottom-mobile, var(--spacing-sections-mobile))
    }
}

.m\:color-warning {
    color: rgb(var(--color-warning))
}

.m\:color-success {
    color: rgb(var(--color-success))
}

.m\:font-light {
    font-weight: 300
}

.m\:font-regular {
    font-weight: 400
}

.m\:font-medium {
    font-weight: 500
}

.m\:font-semi-bold {
    font-weight: 600
}

.m\:font-bold {
    font-weight: 700
}

.m\:font-extrabold {
    font-weight: 800
}

.m\:font-black {
    font-weight: 900
}

@media screen and (min-width: 640px) {
    .m\:text-medium {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

@media screen and (min-width: 1024px) {
    .m\:text-medium {
        font-size: 3rem;
        line-height: 1
    }
}

@media screen and (min-width: 640px) {
    .m\:text-large {
        font-size: 3rem;
        line-height: 1
    }
}

@media screen and (min-width: 1024px) {
    .m\:text-large {
        font-size: 4.5rem;
        line-height: 1
    }
}

.m\:text-black {
    color: rgba(var(--text-black), 1)
}

.m\:text-white {
    color: rgba(var(--text-white), 1)
}

.m\:text-inherit {
    color: rgb(var(--color-foreground))
}

.m\:text-color-subtext {
    color: rgb(var(--color-foreground-secondary))
}

.m\:text-color-body {
    color: rgb(var(--color-foreground))
}

.m\:text-color-warning {
    color: rgb(var(--color-warning))
}

.m\:text-color-error {
    color: rgb(var(--color-error))
}

.m\:text-color-success {
    color: rgb(var(--color-success))
}

.m\:color-price-regular {
    color: rgb(var(--color-price-regular))
}

.m\:color-price-sale {
    color: rgb(var(--color-price-sale))
}

.m\:text-heading {
    color: rgb(var(--color-heading))
}

.m\:rounded-full {
    border-radius: var(--rounded-full, 999px)
}

.m\:overflow-hidden {
    overflow: hidden
}

.m\:overflow-clip {
    overflow: clip
}

.m\:gap-2 {
    gap: 8px
}

.m\:gap-4 {
    gap: 16px
}

.m\:list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none
}

.icon__fallback-text, .m\:visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.m\:visually-hidden--inline {
    margin: 0;
    height: 1em
}

.m\:uppercase {
    text-transform: uppercase
}

.m\:capitalize {
    text-transform: capitalize
}

.m\:object-cover {
    object-fit: cover
}

.m\:disabled, [disabled] {
    pointer-events: none;
    opacity: .5
}

[disabled=false], .f-button[disabled=false], [disabled=false].fec-payment-button__button.fec-payment-button__button--unbranded, [disabled=false].spr-button.spr-button-primary {
    pointer-events: auto;
    opacity: 1
}

.m\:relative {
    position: relative
}

.m\:absolute {
    position: absolute
}

.m\:mx-auto {
    margin-left: auto;
    margin-right: auto
}

.m\:mr-auto {
    margin-right: auto
}

.m\:ml-auto {
    margin-left: auto
}

.m\:mt-cascade-1 {
    margin-top: clamp(24px, 2vw, 42px)
}

.m\:mt-cascade-2 {
    margin-top: clamp(32px, 5vw, 50px)
}

.m\:mt-cascade-3 {
    margin-top: clamp(70px, 12vw, 120px)
}

.m\:mt-cascade-4 {
    margin-top: clamp(100px, 16vw, 150px)
}

.m\:mt-cascade-5 {
    margin-top: clamp(160px, 24vw, 230px)
}

@media screen and (max-width: 767px) {
    .m\:mt-cascade-5 {
        margin-top: clamp(70px, 20vw, 160px)
    }
}

.m\:mt-cascade-6 {
    margin-top: clamp(200px, 32vw, 250px)
}

.m\:sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.m\:fade-out {
    opacity: 0;
    pointer-events: none
}

@media screen and (max-width: 1279px) {
    .xl\:m\:hide-br br {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .md\:m\:hide-br br {
        display: none
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-reduce\:transition-none {
        transition-property: none
    }
}

.m\:blocks-radius {
    border-radius: var(--blocks-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black)
}

.m\:blocks-radius-md {
    border-radius: var(--medium-blocks-radius);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black)
}

@media screen and (max-width: 767px) {
    .md\:m\:blocks-radius-none {
        border-radius: 0
    }
}

.order-first {
    order: -999
}

.order-last {
    order: 999
}

.order-none {
    order: 0
}

.invisible {
    visibility: hidden
}

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: all
}

.cursor-pointer {
    cursor: pointer
}

.cursor-auto {
    cursor: auto
}

.m\:whitespace-nowrap {
    white-space: nowrap
}

.m\:sticky-element {
    position: sticky;
    top: calc(var(--f-header-height) + var(--offset-top, 20px))
}

.header-scroll-down:has([data-sticky=on_scroll_up]) .m\:sticky-element, :has([data-sticky=none]) .m\:sticky-element {
    top: var(--offset-top, 20px)
}

@media (min-width: 640px) {
    .sm\:order-first {
        order: -999
    }

    .sm\:order-last {
        order: 999
    }

    .sm\:order-none {
        order: 0
    }
}

@media (min-width: 768px) {
    .md\:order-first {
        order: -999
    }

    .md\:order-last {
        order: 999
    }

    .md\:order-none {
        order: 0
    }
}

@media (min-width: 1024px) {
    .lg\:order-first {
        order: -999
    }

    .lg\:order-last {
        order: 999
    }

    .lg\:order-none {
        order: 0
    }
}

@media (min-width: 1280px) {
    .xl\:order-first {
        order: -999
    }

    .xl\:order-last {
        order: 999
    }

    .xl\:order-none {
        order: 0
    }
}

@media (min-width: 1536px) {
    .xxl\:order-first {
        order: -999
    }

    .xxl\:order-last {
        order: 999
    }

    .xxl\:order-none {
        order: 0
    }
}

html.no-js .no-js-hidden {
    display: none !important
}

a.f-text-link {
    text-decoration: underline
}

a.f-text-link:hover {
    color: rgb(var(--color-foreground))
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

.f-link-absolute {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10
}

sup {
    top: -8px;
    color: #da3f3f
}

.f-hidden-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: block
}

.f-placeholder-svg {
    background-color: rgba(var(--color-foreground), 0.2);
    fill: rgba(var(--color-foreground), 0.4)
}

.f-placeholder-svg--no-border {
    border: none
}

.f-placeholder-wrapper {
    border: 1px solid rgba(51, 50, 50, .2)
}

.f-link-lists--item {
    cursor: pointer;
    line-height: 34px
}

.f-link-lists--item:hover .f-link, .f-link-lists--item.active .f-link {
    color: rgb(var(--color-foreground))
}

.f-link-lists--item:hover .f-link::after, .f-link-lists--item.active .f-link::after {
    width: 100%
}

.f-link-lists--item.active .f-link {
    pointer-events: none
}

.f-link-lists .f-link {
    cursor: pointer;
    position: relative;
    color: rgb(var(--color-foreground-secondary));
    transition: all var(--f-duration-default, 0.25s) ease
}

.f-link-lists .f-link::after {
    content: "";
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    background-color: rgb(var(--color-foreground));
    transition: all var(--f-duration-default, 0.25s) ease
}

.f-link-lists--inline {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    margin: 0 -11px
}

.f-link-lists--inline .f-link-lists--item {
    margin: 0 6px;
    padding: 0 5px
}

.f-link-lists--border .f-link {
    color: rgb(var(--color-foreground-secondary));
    font-weight: 500;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: var(--f-duration-default, 0.25s) all
}

.f-link-lists--border .f-link.active, .f-link-lists--border .f-link:hover {
    color: rgb(var(--color-foreground))
}

.f-link-lists--border li + li .f-link {
    border-top: 1px solid rgb(var(--color-border))
}

.social-media-links {
    display: flex;
    align-items: center;
    column-gap: 24px;
    row-gap: 12px;
    flex-wrap: wrap
}

.social-media-links--item {
    display: flex;
    align-items: center
}

.social-media-links--label {
    padding-left: 10px
}

.f-svg-icon {
    width: 16px;
    height: 16px
}

.f-svg-icon--small {
    width: 12px;
    height: 12px
}

.f-svg-icon--medium-small {
    width: 18px;
    height: 18px
}

.f-svg-icon--medium {
    width: 20px;
    height: 20px
}

.f-svg-icon--large {
    width: 24px;
    height: 24px
}

.f-terms-conditons {
    width: 100%;
    margin-top: 20px
}

.f-countdown {
    display: flex
}

.f-countdown__heading {
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {
    .f-countdown__heading {
        margin-bottom: 40px
    }
}

.f-countdown__button {
    margin-top: 32px
}

@media screen and (min-width: 768px) {
    .f-countdown__button {
        margin-top: 48px
    }
}

.f-countdown-timer {
    transition: opacity var(--f-duration-short, 0.1s) cubic-bezier(0.4, 0, 0.2, 1)
}

.f-cart-icon-bubble {
    position: relative;
    padding: 8px;
    white-space: nowrap;
    cursor: pointer
}

.f-cart-count {
    color: var(--color-cart-wishlist-count);
    font-size: 12px;
    font-weight: 500;
    height: 22px;
    min-width: 22px;
    background-color: var(--bg-cart-wishlist-count);
    position: absolute;
    top: 5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9999px
}

@media screen and (max-width: 1023px) {
    .f-cart-count {
        right: -5px
    }
}

.f-cart-count.m\:hidden {
    display: none
}

.select-items, .f-scrollbar--vertical {
    overflow-y: auto
}

.select-items::-webkit-scrollbar, .f-scrollbar--vertical::-webkit-scrollbar {
    width: var(--sf-scroll-bar-width, 3px)
}

.select-items::-webkit-scrollbar-thumb, .f-scrollbar--vertical::-webkit-scrollbar-thumb {
    background: #ebebeb
}

.select-items::-webkit-scrollbar-thumb:hover, .f-scrollbar--vertical::-webkit-scrollbar-thumb:hover {
    background: #555
}

.f-breadcrumb--wrapper {
    margin: 0 -15px
}

.f-breadcrumb--item {
    padding: 15px;
    font-size: 15px;
    color: inherit;
    white-space: nowrap;
    transition: all var(--f-duration-default, 0.25s) ease
}

.f-breadcrumb--item-current {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none
}

.f-breadcrumb--item:hover {
    color: rgb(var(--color-foreground))
}

.f-breadcrumb--separator svg {
    width: 9px;
    height: 9px
}

.f-collapsible--button, .collapsible--button {
    user-select: none;
    font-weight: 500;
    display: flex;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(var(--color-border));
    transition: all var(--f-duration-default, 0.25s);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.f-collapsible--button span, .collapsible--button span {
    text-transform: initial
}

.f-collapsible--icon, .collapsible--icon {
    transition: transform var(--f-duration-default, 0.25s) ease
}

.f-collapsible--content__inner, .f-collapsible--content-inner, .collapsible--content__inner, .collapsible--content-inner {
    padding: 16px 0
}

.f-collapsible [data-trigger], .collapsible [data-trigger] {
    cursor: pointer;
    position: relative
}

.f-collapsible [data-content], .collapsible [data-content] {
    height: auto;
    overflow: hidden;
    transition: height var(--f-duration-default, 0.25s);
    will-change: height
}

.f-collapsible[data-destroy=true] [data-content], .collapsible[data-destroy=true] [data-content] {
    display: block
}

.f-collapsible[data-destroy=true] .f-facets__block-header, .collapsible[data-destroy=true] .f-facets__block-header {
    pointer-events: none
}

.f-collapsible[open=true] .f-collapsible--icon, .collapsible[open=true] .f-collapsible--icon {
    transform: rotateX(180deg)
}

.f-collapsible[open=true] .f-collapsible--button, .collapsible[open=true] .f-collapsible--button {
    border-bottom-color: rgb(var(--color-foreground))
}

.f-sharing-social label {
    display: block;
    font-weight: 500;
    margin-right: 20px;
    margin-bottom: 14px;

}

.f-sharing-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    transition: all var(--f-duration-default, 0.25s) ease;
    position: relative;
}

.f-sharing-social a + a {
    margin-left: 16px
}

.f-sharing-social a:hover {
    color: rgb(var(--color-foreground-secondary))
}

.f-sharing-social f-share-line:hover {
    color: rgb(var(--color-foreground-secondary))
}

.f-sharing-social f-share-copy:hover {
    color: rgb(var(--color-foreground-secondary))
}

.f-sharing {
    padding: 35px 24px 24px;
    width: 420px;
    background-color: rgba(var(--bg-white), 1)
}

.f-sharing label {
    display: block;
    font-weight: 500;
    margin-bottom: 14px;
    margin-right: 0
}

.f-sharing .f-sharing-social {
    margin-top: 20px
}

.f-sharing .f-sharing-social .line {
    transform: translateY(3px);
}

.f-product-form .f-add-to-cart {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1
}

.f-product-form--input {
    width: 130px
}

@media screen and (min-width: 768px) {
    .f-product-form--input {
        margin-right: 20px
    }

    .f-product-media--layout-7 .f-product-form--input .f-product-option--label {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .f-product-form--input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .f-product-form--input label {
        margin-bottom: 0;
        margin-right: 20px
    }
}

.f-product-form .show-foxkit-preorder .f-product-dynamic-checkout {
    display: none
}

.f-quantity {
    display: flex;
    min-height: 46px;
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--inputs-radius);
    background: rgb(var(--color-form-field));
    color: rgb(var(--color-form-field-text))
}

.f-quantity__button {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center
}

.f-quantity__button svg {
    width: 12px;
    height: 12px
}

.f-quantity__input {
    flex-grow: 1;
    flex-shrink: 1;
    width: 44px;
    appearance: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

.f-modal {
    --f-bg-opacity: 0.3;
    --f-opacity: 0;
    --f-bg-color: 0, 0, 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    padding: 0 20px;
    background-color: rgba(var(--f-bg-color), var(--f-bg-opacity));
    transition-duration: var(--f-duration-short, 0.1s);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    opacity: var(--f-opacity);
    pointer-events: none
}

.f-modal.f-open-modal {
    pointer-events: auto
}

.f-modal--close {
    color: rgb(var(--color-foreground));
    background: rgb(var(--color-background));
    border-radius: 100%;
    z-index: 10;
    position: absolute;
    padding: 8px;
    right: 6px;
    top: 6px;
    transition: all var(--f-duration-default, 0.25s) ease
}

.f-modal--close svg {
    width: 16px;
    height: 16px
}

.f-modal--close:hover {
    background-color: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover));
    transform: rotate(180deg)
}

@media screen and (max-width: 767px) {
    .f-modal--close {
        right: 5px;
        top: 5px
    }
}

.f-modal--content {
    position: relative;
    border-radius: var(--blocks-radius);
    background: rgb(var(--color-background));
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--f-duration-default, 0.25s) ease-in-out
}

.f-open-modal .f-modal--content {
    transform: scale(1);
    opacity: 1
}

.f-modal--content-inner {
}

.f-modal:has(.f-product-quickview) .f-product-media {
    --blocks-radius: 0
}

responsive-image {
    display: inline-block;
    transition-duration: var(--f-duration-long);
    transition-timing-function: ease;
    background-color: var(--bg-card-placeholder);
    transition-property: background-color
}

responsive-image img {
    opacity: 0;
    backface-visibility: hidden;
    transition-property: transform, opacity
}

.no-js responsive-image img {
    opacity: 1
}

responsive-image.f-image-loaded {
    background-color: rgba(0, 0, 0, 0)
}

responsive-image.f-image-loaded.is-product-image-auto:before {
    padding-top: 0;
}

responsive-image.f-image-loaded.is-product-image-auto img {
    position: static !important;
}

responsive-image.f-image-loaded img {
    animation: mZoomFadeSmall var(--f-duration-animate) ease forwards
}

.f-image {
    width: var(--image-width, 100%);
    vertical-align: middle
}

.f-bg-lazy {
    background-image: none !important
}

.f-switcher-dropdown form {
    padding-left: 16px;
    padding-right: 16px
}

.container-full .f-switcher-dropdown:last-child .f-select-custom--options {
    left: auto;
    right: 0
}

@media screen and (max-width: 1279px) {
    .language-and-currency .f-switcher-dropdown:last-child .f-select-custom--options {
        left: auto;
        right: 0
    }
}

f-select-component {
    display: block;
    position: relative
}

f-select-component select {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    display: none
}

.f-select-custom--plain {
    border-bottom: 2px solid rgb(var(--color-foreground))
}

.f-select-custom--plain .f-select-custom--options {
    padding: 20px 25px;
    line-height: inherit
}

.f-select-custom--plain .f-select-custom--trigger .f-select-custom--trigger-icon {
    padding-left: 20px
}

.f-select-custom--custom-width {
    min-width: 250px
}

@media screen and (max-width: 1535px) {
    .f-select-custom--custom-width {
        min-width: 180px
    }
}

@media screen and (max-width: 1279px) {
    .f-select-custom--custom-width {
        min-width: 130px
    }
}

.f-select-custom--options {
    background-color: rgb(var(--color-background));
    border-radius: 5px;
    box-shadow: 0 20px 30px rgba(var(--color-foreground), 0.12);
    color: rgba(var(--color-foreground), 0.75);
    left:0;
    
    line-height: 32px;
    max-height: 60vh;
    overflow-y: scroll;
    min-width: 100%;
    padding: 10px 20px;
    position: absolute;
    transition: all var(--f-duration-default, 0.25s) ease-in-out;
    width: min-content;
    z-index: 80;
    opacity: 0;
    top: calc(100% + 20px);
    visibility: hidden
}

.f-select-custom--options::-webkit-scrollbar {
    width: 3px
}

.f-select-custom--options::-webkit-scrollbar-thumb {
    background: #ebebeb
}

.f-select-custom--options::-webkit-scrollbar-thumb:hover {
    background: #555
}

.f-select-custom--options-top {
    bottom: calc(100% + 20px);
    top: auto
}

.f-select-custom--option {
    color: rgba(var(--color-foreground), 0.75);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
    transition: color var(--f-duration-default, 0.25s) ease;
    white-space: nowrap
}

.f-select-custom--option.isActive, .f-select-custom--option:hover {
    color: rgb(var(--color-foreground))
}

.f-country-switcher .f-select-custom--option {
    display: flex;
    align-items: center;
    gap: 8px
}

.f-select-custom--trigger {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 8px;
    font-weight: inherit;
    justify-content: space-between;
    -webkit-user-select: none;
    user-select: none
}

.f-select-custom--trigger-icon {
    transition: transform var(--f-duration-default, 0.25s) ease-in-out
}

.f-select-custom--trigger-icon svg {
    height: 8px;
    width: 8px
}

.f-select-custom.isActive .f-select-custom--options {
    opacity: 1;
    visibility: visible;
    top: 100%
}

.f-select-custom.isActive .f-select-custom--options-top {
    bottom: 100%;
    top: auto
}

@media screen and (max-width: 1024px) {
    .f-footer--bottom-inner .f-select-custom.isActive .f-select-custom--options-top {
        left: 0;
        right: auto;
        transform: translateX(0);
    }
}

.f-select-custom.isActive .f-select-custom--trigger-icon {
    transform: rotateX(180deg)
}

.f-swiper-overflow .swiper-container, .f-swiper-overflow .f-mixed-layout--mobile-scroll {
    padding-bottom: 5px;
    margin-bottom: -5px
}

@media screen and (min-width: 1024px) {
    .f-swiper-overflow {
        --swiper-container-offset-top: 30px;
        --swiper-container-side-spacing: calc(-1 * var(--column-gap) / 2)
    }

    .f-swiper-overflow .swiper-container {
        padding: var(--swiper-container-offset-top) calc(var(--column-gap, 0px) / 2 - 1px) 60px;
        margin: calc(var(--swiper-container-offset-top) * -1) var(--swiper-container-side-spacing, auto) -60px
    }
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper--equal-height .swiper-slide {
    height: auto
}

.swiper--equal-height .swiper-slide > * {
    height: 100%
}

.swiper-container {
    display: block
}

.swiper-pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    padding: 5px 0;
    pointer-events: auto;
    z-index: 29
}

@media screen and (min-width: 768px) {
    .f-slider-controls--absolute .swiper-pagination {
        margin-top: 40px
    }

    .f-slider-controls--absolute .swiper-pagination--vertical {
        margin-top: 0;
        flex-direction: column
    }
}

.swiper-pagination:empty {
    display: none !important
}

@media screen and (min-width: 768px) {
    .f-slider-control-hover-inside:hover .f-slider-controls--absolute .f-slider-controls__button {
        left: calc(var(--column-gap-mobile, 0px) / 2 + 25px);
        opacity: 1
    }

    .f-slider-control-hover-inside:hover .f-slider-controls--absolute .f-slider-controls__button-next {
        left: auto;
        right: calc(var(--column-gap-mobile, 0px) / 2 + 25px)
    }
}

@media screen and (min-width: 1024px) {
    .f-slider-control-hover-inside:hover .f-slider-controls--absolute .f-slider-controls__button {
        left: calc(var(--column-gap, 0px) / 2 + 25px)
    }

    .f-slider-control-hover-inside:hover .f-slider-controls--absolute .f-slider-controls__button-next {
        left: auto;
        right: calc(var(--column-gap, 0px) / 2 + 25px)
    }
}

.f-slider-controls {
    margin-top: 40px
}

.f-mixed-layout .f-slider-controls {
    padding-left: min(15px, var(--column-gap-mobile, var(--column-gap)) / 2);
    padding-right: min(15px, var(--column-gap-mobile, var(--column-gap)) / 2)
}

@media screen and (min-width: 768px) {
    .f-mixed-layout .f-slider-controls {
        padding-left: max(7.5px, var(--column-gap-mobile, var(--column-gap)) / 2);
        padding-right: max(7.5px, var(--column-gap-mobile, var(--column-gap)) / 2)
    }
}

@media screen and (min-width: 1024px) {
    .f-mixed-layout .f-slider-controls {
        padding-left: calc(var(--column-gap, 0) / 2);
        padding-right: calc(var(--column-gap, 0) / 2)
    }
}

.f-slider-controls.m\:hidden {
    display: none
}

.f-slider-controls__wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin-left: -8px;
    margin-right: -8px
}

.f-slider-controls__button {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgb(var(--color-border));
    border-radius: 9999px;
    padding: 0;
    margin-left: 8px;
    margin-right: 8px;
    z-index: 1;
    transition: all var(--f-duration-default, 0.25s) ease;
    pointer-events: auto;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground))
}

.f-slider-controls__button[disabled] {
    opacity: .5;
    pointer-events: none
}

.f-slider-controls__button:after {
    display: none
}

.f-slider-controls__button:hover {
    border-color: rgb(var(--color-button-hover))
}

.f-slider-controls__button.m\:hidden {
    display: none
}

@media screen and (min-width: 1280px) {
    .f-slider-controls__button:hover {
        background: rgb(var(--color-button-hover));
        color: rgb(var(--color-button-text-hover));
        border-color: rgb(var(--color-button-hover));
        box-shadow: 0 0 0 .2rem rgb(var(--color-button-hover))
    }
}

@media screen and (max-width: 767px) {
    .f-slider-controls__button {
        width: 40px;
        height: 40px
    }
}

.f-slider-controls--absolute {
    margin-top: 0;
    font-size: 0
}

.f-slider-controls--absolute .f-slider-controls__button {
    --button-offset-top: calc(var(--offset-top) + var(--swiper-container-offset-top, 0px));
    position: absolute;
    top: var(--button-offset-top, 50%);
    transform: translateY(-50%);
    left: -80px
}

@media screen and (min-width: 1024px) {
    .f-slider-control-hover-inside .f-slider-controls--absolute .f-slider-controls__button {
        opacity: 0
    }
}

.f-slider-controls--absolute .f-slider-controls__button-next {
    left: auto;
    right: -80px
}

@media screen and (min-width: 768px) {
    .f-slider-controls--absolute .f-slider-controls__button {
        margin-left: 0;
        margin-right: 0
    }

    .f-slider-controls--absolute .swiper-pagination {
        position: absolute;
        width: auto
    }

    .f-slider-controls--absolute[class*=-middle-] .swiper-pagination {
        top: 50%;
        transform: translateY(-50%)
    }

    .f-slider-controls--absolute[class*=-top-] .swiper-pagination {
        top: 0;
        bottom: auto
    }

    .f-slider-controls--absolute[class*=-left] .swiper-pagination {
        left: 0;
        right: auto
    }

    .f-slider-controls--absolute[class*=-right] .swiper-pagination {
        right: 0;
        left: auto
    }

    .f-slider-controls--absolute[class*=-bottom-] .swiper-pagination {
        position: relative
    }
}

@media screen and (max-width: 767px) {
    .f-slider-controls--absolute {
        text-align: center
    }

    .f-slider-controls--absolute .f-slider-controls__button {
        position: static;
        transform: none;
        display: flex;
        flex: 0 0 auto
    }

    .f-slider-controls--absolute .swiper-pagination {
        width: auto
    }
}

.f-slider-controls[class*=-bottom-left] {
    text-align: left
}

.f-slider-controls[class*=-bottom-center] {
    text-align: center
}

.f-slider-controls[class*=-bottom-right] {
    text-align: right
}

.f-slider-controls--full .f-slider-controls__button {
    left: 30px
}

.f-slider-controls--full .f-slider-controls__button-next {
    left: auto;
    right: 30px
}

.f-slider-controls--pagination-fraction .f-slider-controls__wrapper {
    display: inline-flex;
    height: 40px;
    border-radius: 44px;
    border: 1px solid rgb(var(--color-border));
    margin-left: 0;
    margin-right: 0;
    padding: 0 5px
}

.f-slider-controls--pagination-fraction .f-slider-controls__button {
    border: 0;
    color: rgb(var(--color-foreground));
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    width: 30px;
    height: 40px
}

.f-slider-controls--pagination-fraction .f-slider-controls--show-pagination:not(.f-slider-controls--show-nav) .swiper-pagination {
    min-width: 80px
}

.f-slider-controls--pagination-fraction .swiper-pagination, .f-slider-controls--pagination-fraction .f-slider-controls__button {
    margin: 0
}

.f-slider-controls--pagination-fraction .swiper-pagination {
    color: rgb(var(--color-foreground));
    min-width: 34px
}

@media screen and (max-width: 767px) {
    .f-slider-controls {
        max-width: 100vw;
        margin-top: 20px
    }

    .f-slider-controls--md-hidden {
        display: none
    }
}

.f-section__header {
    margin-bottom: var(--f-section-header-spacing-bottom, 60px)
}

@media screen and (max-width: 1279px) {
    .f-section__header {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 767px) {
    .f-section__header {
        margin-bottom: var(--f-section-header-spacing-bottom-mobile, 24px)
    }
}

@media screen and (min-width: 768px) {
    .f-section__header-with-button {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

@media screen and (max-width: 767px) {
    .f-section__header-with-button .f-button, .f-section__header-with-button .fec-payment-button__button.fec-payment-button__button--unbranded, .f-section__header-with-button .spr-button.spr-button-primary {
        margin-top: 12px
    }
}

@media screen and (max-width: 767px) {
    .f-section__heading br {
        display: none
    }
}

.f-section__subheading {
    margin-bottom: 20px;
    color: rgb(var(--color-foreground));
    font-weight: var(--font-weight-header);

}

@media screen and (max-width: 767px) {
    .f-section__subheading {
        margin-bottom: 12px
    }
}

.f-section__description {
    color: rgb(var(--color-foreground-secondary));
    font-size: calc(var(--font-base-size, 16) * 1px);
    margin-top: 16px;
    font-weight: var(--font-weight-header);

}

.f-section__button {
    margin-top: 32px
}

@media screen and (max-width: 767px) {
    .f-section__button {
        margin-top: 24px
    }
}

.f-image-box {
    position: relative;
    overflow: hidden
}

.f-content-box__description {
    color: rgb(var(--color-foreground-secondary))
}

.f-gradient {
    background: rgb(var(--color-background));
    background: var(--gradient-background)
}

.f-image-with-text__content {
    display: flex;
    align-items: center
}

.f-collapsible-section .f-collapsible--content__inner {
    color: rgb(var(--color-foreground));
    line-height: 1.7;
    padding-top: 20px;
    padding-bottom: 40px
}

.f-product-recommendations__wrapper, .f-recently-viewed__wrapper {
    position: relative;
    z-index: 0;
}

.f-product-recommendations__wrapper .f-product-list {
    max-width: 100vw;
}

.f-collection-list-template {
    margin-bottom: 60px
}

@media screen and (min-width: 1024px) {
    .f-collection-list-template {
        margin-bottom: 80px
    }
}

.f-drawer__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    touch-action: none;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: var(--f-duration-default, 0.25s);
    background-color: rgba(0, 0, 0, var(--f-bg-opacity))
}

.f-drawer__content {
    z-index: 50;
    margin-left: auto;
    background-color: rgb(var(--color-background));
    transform: translate3d(var(--f-translate-x, 100%), 0, 0);
    transition-duration: var(--f-duration-default, 0.25s);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

@media screen and (min-width: 768px) {
    .f-drawer__content {
        width: 450px
    }
}

@media screen and (max-width: 767px) {
    .f-drawer__content {
        width: calc(100% - 40px)
    }
}

.f-drawer__header {
    padding: 16px 24px
}

@media screen and (min-width: 768px) {
    .f-drawer__header {
        padding-top: 24px
    }
}

@media screen and (max-width: 767px) {
    .f-drawer__header {
        padding: 16px
    }
}

.f-drawer__body {
    overscroll-behavior: contain;
    padding: 16px 24px
}

@media screen and (max-width: 767px) {
    .f-drawer__body {
        padding: 16px
    }
}

.f-drawer__close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    padding: 8px
}

.f-wishlist-count, .f-compare-count {
    color: var(--color-cart-wishlist-count);
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    background-color: var(--bg-cart-wishlist-count);
    width: 22px;
    height: 22px;
    position: absolute;
    right: -4px;
    top: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    text-align: center
}

.f-mobile-sticky-bar--wishlist .f-wishlist-count, .f-mobile-sticky-bar--wishlist .f-compare-count {
    right: -18px;
    top: -7px
}

.f-wishlist-count.m\:hidden, .f-compare-count.m\:hidden {
    display: none
}

deferred-media {
    display: block
}

.deferred-media > *:not(.zoom):not(.deferred-media__poster-button), .deferred-media model-viewer {
    display: flex;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center
}

.deferred-media__poster {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden
}

.deferred-media__poster-button {
    background-color: rgb(var(--color-button, #f5f5f5));
    border: .1rem solid rgb(var(--color-button, #ddd));
    border-radius: 50%;
    color: rgb(var(--color-button-text, #000));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.4rem;
    width: 4.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: var(--f-duration-default, 0.25s) ease all;
    z-index: 1
}

.deferred-media__poster-button.m\:text-white {
    color: rgba(var(--text-white), 1);
    border-color: rgba(var(--text-white), 1)
}

.deferred-media__poster-button.m\:text-black {
    color: rgba(var(--text-black), 1);
    border-color: rgba(var(--text-black), 1)
}

.deferred-media__poster-button svg {
    color: rgb(var(--color-button-text, #000));
    width: 22px;
    height: 22px
}

.deferred-media[loaded] > .deferred-media__poster {
    display: none
}

.shopify-model-viewer-ui__button.shopify-model-viewer-ui__button--poster {
    background-color: #f5f5f5;
    border: .1rem solid #ddd;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: var(--f-duration-default, 0.25s) ease all;
    z-index: 1
}

.shopify-model-viewer-ui__button.shopify-model-viewer-ui__button--poster svg {
    margin: 0;
    width: 46px;
    height: 46px
}

.shopify-model-viewer-ui__button.shopify-model-viewer-ui__button--poster[hidden] {
    display: none
}

.f-richtext > * + * {
    margin: var(--child-margin-top, 32px) 0 0
}

.f-richtext > * + *:is(.f-richtext__description) {
    margin-top: var(--text-margin-top, 24px)
}

.f-richtext > *:first-child:is(.f-richtext__subtitle) {
    margin-bottom: var(--subheading-margin-bottom, 20px)
}

.f-richtext > *:first-child:is(.f-richtext__subtitle) + * {
    margin-top: 0
}

@media screen and (max-width: 767px) {
    .f-richtext {
        --child-margin-top: 24px;
        --text-margin-top: 12px;
        --subheading-margin-bottom: 12px
    }
}

@media screen and (min-width: 1280px) {
    .f-richtext--large {
        --child-margin-top: 40px;
        --text-margin-top: 32px;
        --subheading-margin-bottom: 24px
    }
}

@media screen and (max-width: 767px) {
    .f-richtext--large {
        --child-margin-top: 24px;
        --text-margin-top: 16px;
        --subheading-margin-bottom: 16px
    }
}

.f-richtext--small {
    --child-margin-top: 20px;
    --text-margin-top: 16px;
    --subheading-margin-bottom: 12px
}

@media screen and (max-width: 767px) {
    .f-richtext--small {
        --child-margin-top: 16px;
        --text-margin-top: 12px;
        --subheading-margin-bottom: 12px
    }
}

@media screen and (max-width: 767px) {
    .responsive-table thead {
        display: none
    }

    .responsive-table th, .responsive-table td {
        float: left;
        clear: left;
        width: 100%;
        text-align: right;
        padding: 10px 0;
        border: 0;
        margin: 0;
        color: rgb(var(--color-foreground-secondary))
    }

    .responsive-table th::before, .responsive-table td::before {
        content: attr(data-label);
        float: left;
        text-align: center;
        font-size: 16px;
        padding-right: 10px;
        font-weight: 500;
        color: rgb(var(--color-foreground))
    }

    .responsive-table__row + .responsive-table__row, tfoot > .responsive-table__row:first-child {
        position: relative;
        margin-top: 10px;
        padding-top: 55px
    }

    .responsive-table__row + .responsive-table__row::after, tfoot > .responsive-table__row:first-child::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 27.5px;
        right: 27.5px;
        border-bottom: 1px solid rgb(var(--color-border))
    }

    tfoot .small-hide {
        display: none
    }
}

.f-parallax {
    pointer-events: none;
    overflow: hidden
}

.f-parallax *:is(img,svg) {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.f-media {
    position: relative
}

.f-media img, .f-media svg {
    inset: 0;
    position: absolute !important;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.template-product {
    padding-bottom: var(--f-sticky-atc-bar-height, 0px)
}

.template-product #MainContent {
    padding-bottom: 60px
}

.f-progress-bar {
    height: var(--progress-bar-size, 5px);
    border-radius: var(--progress-bar-radius, 3px);
    background-color: rgba(var(--color-foreground), 0.075);
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--color-progress-bar)
}

.f-progress-bar::before {
    content: "";
    background-color: currentColor;
    border-radius: inherit;
    display: block;
    height: 100%;
    width: var(--scale-x, 0%);
    transition: width .6s cubic-bezier(0.7, 0, 0.3, 1) .1s
}

.quantity__rules {
    display: flex
}

.quantity__rules:empty {
    display: none
}

.quantity__rules .divider + .divider::before {
    content: "•";
    margin-inline: 6px;
    font-size: 36px;
    font-weight: var(--font-weight-body);
    line-height: 10px;
    vertical-align: middle
}

.quantity__rules-cart .f-spinner-icon {
    justify-content: flex-start
}

.quantity__rules-cart.loading .f-spinner-icon {
    display: inline-flex
}

.quantity__rules-cart.loading .animate-spin {
    display: block
}

.quantity__rules-cart.loading > :not(.f-spinner-icon) {
    opacity: 0
}

.f-quantity-price-breaks {
    row-gap: 16px;
    margin-bottom: 24px
}

.f-quantity-price-breaks__wrapper {
    row-gap: 8px
}

.f-quantity-price-breaks__input .f-product-option--label {
    justify-content: flex-start;
    column-gap: 6px
}

.animate-spin {
    animation: mSpin 1s linear infinite;
    display: none
}

.animate-spin.animate-spin-show {
    display: block
}

.animate-spin circle {
    opacity: .25
}

.animate-spin path {
    opacity: .75
}

.f-animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite
}

.f-spinner-icon {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    align-items: center;
    justify-content: center
}

.f-spinner-loading .f-spinner-button, .f-spinner-loading.f-spinner-button {
    position: relative;
    pointer-events: none
}

.f-spinner-loading .f-spinner-button > *:not(.f-spinner-icon), .f-spinner-loading.f-spinner-button > *:not(.f-spinner-icon) {
    visibility: hidden
}

.f-spinner-loading .f-spinner-button .f-spinner-icon, .f-spinner-loading.f-spinner-button .f-spinner-icon {
    display: flex
}

.f-spinner-loading .f-spinner-button .animate-spin, .f-spinner-loading.f-spinner-button .animate-spin {
    display: block
}

.f-spinner-loading .f-spinner-icon {
    display: flex;
}

.f-spinner-loading .f-spinner-icon .animate-spin {
    display: block
}

@media (prefers-reduced-motion: no-preference) {
    .f-scroll-trigger.animate--fade-in, .f-scroll-trigger.animate--fade-in-up, .f-scroll-trigger.animate--fade-in-left, .f-scroll-trigger.animate--fade-in-right, .f-scroll-trigger.animate--zoom-fade {
        opacity: .01;
        transition-property: opacity, transform
    }

    .f-scroll-trigger.animate--fade-in-up {
        transform: translateY(20px)
    }

    .f-scroll-trigger.animate--fade-in-left {
        transform: translateX(-20px)
    }

    .f-scroll-trigger.animate--fade-in-right {
        transform: translateX(20px)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--zoom-fade {
        opacity: 1;
        transform: translateZ(0)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--zoom-fade .f-image, .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--zoom-fade .f-placeholder-svg {
        animation: var(--f-animation-zoom-fade)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in {
        opacity: 1;
        animation: var(--f-animation-fade-in)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in-up {
        animation: var(--f-animation-fade-in-up);
        animation-delay: calc(var(--animation-order) * 75ms)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in-left {
        animation: var(--f-animation-fade-in-left);
        animation-delay: calc(var(--animation-order) * 75ms)
    }

    [dir=rtl] .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in-left {
        animation: var(--f-animation-fade-in-right-rtl)
    }

    .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in-right {
        animation: var(--f-animation-fade-in-right);
        animation-delay: calc(var(--animation-order) * 75ms)
    }

    [dir=rtl] .f-scroll-trigger:not(.f-scroll-trigger--offscreen).animate--fade-in-right {
        animation: var(--f-animation-fade-in-left-rtl)
    }

    .f-scroll-trigger.f-scroll-trigger--design-mode.animate--fade-in, .f-scroll-trigger.f-scroll-trigger--design-mode.animate--fade-in-up, .f-scroll-trigger.f-scroll-trigger--design-mode.animate--fade-in-left, .f-scroll-trigger.f-scroll-trigger--design-mode.animate--fade-in-right, .f-scroll-trigger:not(.f-scroll-trigger--offscreen).f-scroll-trigger--cancel {
        opacity: 1;
        animation: none;
        transition: none
    }

    @keyframes m-fade-in-left {
        from {
            transform: translateX(var(--f-translate, -20px));
            opacity: .01
        }
        to {
            transform: translateX(0);
            opacity: 1
        }
    }@keyframes m-fade-in-right {
         from {
             transform: translateX(var(--f-translate, 20px));
             opacity: .01
         }
         to {
             transform: translateX(0);
             opacity: 1
         }
     }@keyframes m-fade-in-left-rtl {
          from {
              transform: translateX(var(--f-translate, 20px));
              opacity: .01
          }
          to {
              transform: translateX(0);
              opacity: 1
          }
      }@keyframes m-fade-in-right-rtl {
           from {
               transform: translateX(var(--f-translate, -20px));
               opacity: .01
           }
           to {
               transform: translateX(0);
               opacity: 1
           }
       }@keyframes m-fade-in-up {
            from {
                transform: translateY(var(--f-translate, 20px));
                opacity: .01
            }
            to {
                transform: translateY(0);
                opacity: 1
            }
        }@keyframes m-fade-in {
             from {
                 opacity: .01
             }
             to {
                 opacity: 1
             }
         }@keyframes m-zoom-fade {
              0% {
                  opacity: 0;
                  transform: scale(1.08)
              }
              50% {
                  opacity: 1
              }
              100% {
                  opacity: 1;
                  transform: scale(1)
              }
          }
}

@keyframes mSpin {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: hidden;
        opacity: 0
    }
    to {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        opacity: 1
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: hidden;
        opacity: 0
    }
    to {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes rise-up {
    0% {
        opacity: 0;
        transform: translate3d(0, 35px, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes moPopUp {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes moPopUp {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@-webkit-keyframes moLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-40px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes moLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-40px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes portSliderLine {
    0% {
        transform: scaleX(0);
        transform-origin: left
    }
    100% {
        transform: scaleX(1);
        transform-origin: left
    }
}

@keyframes mZoomFadeSmall {
    0% {
        opacity: 0;
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes scrollText {
    from {
        transform: translate3d(0%, 0, 0)
    }
    to {
        transform: translate3d(-30%, 0, 0)
    }
}

@keyframes sf-scrolling-text-animation {
    from {
        transform: translateX(-20%) translateZ(0)
    }
    to {
        transform: translateX(-120%) translateZ(0)
    }
}

@keyframes sf-scrolling-text-animation-reverse {
    from {
        transform: translateX(20%) translateZ(0)
    }
    to {
        transform: translateX(120%) translateZ(0)
    }
}

@keyframes recipientAnimate {
    0% {
        opacity: 0;
        transform: translateY(-15px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes m-ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes menu_slide_reveal {
    from {
        transform: rotateX(-15deg);
        opacity: 0
    }
    to {
        transform: rotateX(0);
        opacity: 1
    }
}

@keyframes menu_slide_in {
    from {
        transform: translate3d(var(--f-slide-from-val, 0), 0, 0);
        opacity: 0
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes menu_slide_out {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
    to {
        transform: translate3d(var(--f-slide-to-val, 0), 0, 0);
        opacity: 0
    }
}

@keyframes mMoveUpDown {
    0% {
        transform: translateY(8px)
    }
    100% {
        transform: translateY(-8px)
    }
}

@keyframes mMoveUpDownReverse {
    0% {
        transform: translateY(-8px)
    }
    100% {
        transform: translateY(8px)
    }
}

@keyframes dotScale {
    from {
        opacity: .4;
        transform: scale(1)
    }
    to {
        opacity: 0;
        transform: scale(var(--f-scale, 2.5))
    }
}

.f-tooltip {
    border-radius: 9999px;
    cursor: pointer;
    background-color: rgba(var(--bg-white), 1);
    position: relative;
    padding: 5px;
    margin-bottom: 8px;
    padding: 5px
}

.f-tooltip--style-2 {
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0)
}

.f-tooltip--style-2 .f-tooltip-icon--active {
    display: none
}

.f-tooltip--style-1 {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--f-duration-default, 0.25s) ease;
    color: rgba(var(--text-black), 1)
}

.f-tooltip--style-1.f-tooltip--top .f-tooltip__content {
    bottom: calc(120% + 8px)
}

.f-tooltip--style-1.f-tooltip--left .f-tooltip__content {
    right: calc(120% + 8px)
}

.f-tooltip--style-1.f-tooltip--bottom .f-tooltip__content {
    top: calc(120% + 8px)
}

.f-tooltip--style-1.f-tooltip--right .f-tooltip__content {
    left: calc(120% + 8px)
}

@media screen and (min-width: 1280px) {
    .f-tooltip--style-1:hover {
        background: rgb(var(--color-button-hover));
        color: rgb(var(--color-button-text-hover));
        border-color: rgb(var(--color-button-hover)) !important
    }
}

.f-tooltip--top .f-tooltip__content {
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%)
}

.f-tooltip--top .f-tooltip__content:after {
    left: calc(50% - 5px);
    bottom: -3px
}

.f-tooltip--top .f-tooltip__content::before {
    width: 100%;
    height: 8px;
    left: 0;
    top: 100%
}

.f-tooltip--left .f-tooltip__content {
    right: 110%;
    top: 50%;
    transform: translateY(-50%)
}

.f-tooltip--left .f-tooltip__content:after {
    right: -3px;
    top: calc(50% - 5px)
}

.f-tooltip--left .f-tooltip__content::before {
    height: 100%;
    width: 8px;
    top: 0;
    right: 100%
}

.f-tooltip--right .f-tooltip__content {
    left: 110%;
    top: 50%;
    transform: translateY(-50%)
}

.f-tooltip--right .f-tooltip__content:after {
    left: -3px;
    top: calc(50% - 5px)
}

.f-tooltip--right .f-tooltip__content::before {
    height: 100%;
    width: 8px;
    top: 0;
    left: 100%
}

.f-tooltip--bottom .f-tooltip__content {
    top: 110%;
    left: 50%;
    transform: translateX(-50%)
}

.f-tooltip--bottom .f-tooltip__content:after {
    left: calc(50% - 5px);
    top: -3px
}

.f-tooltip--bottom .f-tooltip__content::before {
    width: 100%;
    height: 8px;
    left: 0;
    bottom: 100%
}

.f-tooltip__content {
    visibility: hidden;
    position: absolute;
    z-index: 75;
    min-width: max-content;
    border-radius: .25rem;
    padding: .25rem .75rem;
    font-size: 12px;
    line-height: 1.25rem;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: var(--f-duration-default, 0.25s);
    display: none;
    background: rgb(var(--color-tooltip));
    color: rgb(var(--color-tooltip-text)) !important;

}

.f-tooltip__content:after {
    content: "";
    width: 10px;
    height: 10px;
    background: rgb(var(--color-tooltip));
    position: absolute;
    transform: rotate(45deg);
    z-index: -1
}

.f-tooltip__content::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0)
}

@media screen and (min-width: 1024px) {
    .f-tooltip__content {
        display: block
    }
}

.f-tooltip--icon {
    color: #000
}

.f-tooltip:hover .f-tooltip__content {
    visibility: visible;
    opacity: 1
}

.f-tooltip:hover.f-tooltip--style-1.f-tooltip--top .f-tooltip__content {
    bottom: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--style-1.f-tooltip--left .f-tooltip__content {
    right: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--style-1.f-tooltip--bottom .f-tooltip__content {
    top: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--style-1.f-tooltip--right .f-tooltip__content {
    left: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--bottom .f-tooltip__content {
    top: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--top .f-tooltip__content {
    bottom: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--left .f-tooltip__content {
    right: calc(100% + 8px)
}

.f-tooltip:hover.f-tooltip--right .f-tooltip__content {
    left: calc(100% + 8px)
}

.added-to-wishlist.f-tooltip--style-2 .f-tooltip-icon--active, .added-to-compare.f-tooltip--style-2 .f-tooltip-icon--active {
    display: block
}

.added-to-wishlist.f-tooltip--style-2 .f-tooltip-icon, .added-to-compare.f-tooltip--style-2 .f-tooltip-icon {
    display: none
}

.added-to-wishlist:not(.in-prod-page,.f-tooltip--style-2), .added-to-compare:not(.in-prod-page,.f-tooltip--style-2) {
    background-color: rgb(var(--color-tooltip));
    color: rgb(var(--color-tooltip-text))
}

.added-to-wishlist.in-prod-page, .added-to-compare.in-prod-page {
    color: rgb(var(--color-success))
}

.added-to-wishlist .icon, .added-to-compare .icon {
    background-color: rgba(var(--bg-black), 1);
    color: rgba(var(--text-white), 1)
}

@media screen and (max-width: 767px) {
    .f-wishlist-remove-button {
        position: absolute;
        top: 5px;
        right: 15px;
        z-index: 10
    }
}

.f-mixed-layout {
    margin-left: max(-15px, var(--column-gap-mobile, var(--column-gap)) / -2);
    margin-right: max(-15px, var(--column-gap-mobile, var(--column-gap)) / -2)
}

@media screen and (min-width: 768px) {
    .f-mixed-layout {
        margin-left: min(-7.5px, var(--column-gap-mobile, var(--column-gap)) / -2);
        margin-right: min(-7.5px, var(--column-gap-mobile, var(--column-gap)) / -2)
    }
}

@media screen and (min-width: 1024px) {
    .f-mixed-layout {
        margin-left: calc(var(--column-gap, 0) / -2);
        margin-right: calc(var(--column-gap, 0) / -2)
    }
}

.f-mixed-layout__inner {
    margin-left: 0;
    margin-right: 0
}

@media screen and (max-width: 767px) {
    .f-mixed-layout--mobile-grid .f-mixed-layout__inner {
        width: 100%;
        display: grid;
        grid-template-columns:repeat(var(--grid-columns-mobile, 2), minmax(0, 1fr))
    }

    .f-mixed-layout--mobile-grid .f-mixed-layout__inner .m\:column {
        width: 100%;
        min-width: auto
    }

    .f-mixed-layout--mobile-1-cols {
        --grid-columns-mobile: 1
    }

    .f-mixed-layout--mobile-2-cols {
        --mobile-column-width: 40vw
    }

    .f-mixed-layout--mobile-scroll {
        --page-padding: 15px;
        overflow-y: hidden;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        padding-inline: var(--page-padding);
        margin-inline: calc(var(--page-padding) * -1);
        scroll-padding-inline: var(--page-padding);
        scrollbar-width: none;
        display: grid !important;
        margin-right: -15px;
        margin-left: -15px;
        padding-left: 15px
    }

    .f-mixed-layout--mobile-scroll.\!m\:hidden {
        display: none !important;
    }

    .f-mixed-layout--mobile-scroll .f-mixed-layout__inner {
        --slider-grid: auto / auto-flow var(--mobile-column-width, 66vw);
        display: grid;
        grid:var(--slider-grid);
        column-gap: var(--column-gap-mobile, var(--column-gap));
        margin-inline: 0 !important
    }

    .f-mixed-layout--mobile-scroll .f-mixed-layout__inner > * {
        scroll-snap-align: start;
        padding-inline: 0 !important;
        width: 100%
    }

    .f-mixed-layout--mobile-scroll::-webkit-scrollbar {
        display: none
    }
}

.f-accordion--item-button {
    cursor: pointer;
    position: relative;
    font-weight: 500;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.f-accordion--item-button.f-according {
    pointer-events: none
}

.f-accordion--item-icon {
    transition: transform var(--f-duration-default, 0.25s) ease
}

.f-accordion--item-content {
    transition: opacity var(--f-duration-short, 0.1s), max-height var(--duration, 300ms);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    max-height: var(--content-max-height, 0);
    opacity: 0
}

.f-accordion--item.open .f-accordion--item-icon {
    transform: rotateX(180deg)
}

.f-accordion--item.open .f-accordion--item-content {
    max-height: var(--content-max-height, auto)
}

.f-accordion--item.open .f-accordion--item-content.max-height-set {
    max-height: var(--content-max-height, 0)
}

.f-accordion--item:not(.order-first):last-child {
    
}


.notification {
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 .75rem;
    max-height: 0px;
}


.notification svg {
    min-width: 24px
}

.notification-success.show {
    transition: max-height var(--f-duration-default, 0.25s), padding var(--f-duration-default, 0.25s), opacity var(--f-duration-default, 0.25s) .2s;
    max-height: 100%;
    padding: .5rem .75rem;
    opacity: 1;
    display: block;
}

.notification-error.show {
    transition: max-height var(--f-duration-default, 0.25s), padding var(--f-duration-default, 0.25s), opacity var(--f-duration-default, 0.25s) .2s;
    max-height: 100%;
    padding: .5rem .75rem;
    opacity: 1;
}

.notification.hide {
    transition: max-height var(--f-duration-default, 0.25s) .2s, padding var(--f-duration-default, 0.25s) .2s, opacity var(--f-duration-default, 0.25s);
    opacity: 0;
    padding: 0 .75rem;
    max-height: 0px
}

.notification.success.show {
    transition: max-height var(--f-duration-default, 0.25s), padding var(--f-duration-default, 0.25s), opacity var(--f-duration-default, 0.25s) .2s;
    max-height: 100%;
    padding: .5rem .75rem;
    opacity: 1;
}

.notification.success {
    background-color: rgba(var(--color-success-bg), 0.5);
    color: rgb(var(--color-success))
}

.notification.warning {
    background-color: rgba(var(--color-warning-bg), 0.45);
    color: rgb(var(--color-warning))
}

.notification.warning.show {
    max-height: 100%;
    padding: .5rem .75rem;
    opacity: 1;
}

.notification.error {
    background-color: rgba(var(--color-error-bg), 0.4);
    color: rgb(var(--color-error))
}

.notification.error.show {
    max-height: 100%;
    padding: .5rem .75rem;
    opacity: 1;
    display: flex;
    align-items: center;
}

.notification--sticky {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 999;
    max-height: 100% !important;
    padding: 7.5px 10px !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: var(--f-duration-default, 0.25s) all ease-in-out !important;
    transform: translate3d(calc(100% + 12px), 0, 0) !important
}

.notification--sticky.show {
    transform: translate3d(0, 0, 0) !important
}

.notification--error-message {
    margin-left: 12px
}

.notification__text {
    margin-left: 12px
}

.notification__bg {
    background-color: rgba(255, 255, 255, 0);
    transition: all 1.5s ease;
    border-radius: 4px;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.notification.show .notification__bg {
    background-color: rgba(255, 255, 255, 1);
}

.template-page .f-faqs-section:not(:first-of-type) .f-page-header {
    display: none
}

.template-page #MainContent {
    padding-bottom: 80px
}

@media screen and (max-width: 1279px) {
    .template-page #MainContent {
        padding-bottom: 60px
    }
}

@media screen and (max-width: 767px) {
    .template-page #MainContent {
        padding-bottom: 48px
    }
}

.f-page-header {
    padding-top: 30px;
    padding-bottom: 30px
}

.f-page-header h1 {
    font-size: 26px;
    line-height: 1.333
}

.f-page-header__description {
    color: rgb(var(--color-foreground-secondary));
    margin-top: 8px
}

.f-page-header .f-breadcrumb {
    margin-top: 8px
}

.f-page-header--template-order h1 {
    margin-bottom: 8px
}

.f-page-header--large .f-breadcrumb--item {
    padding-top: 0;
    padding-bottom: 0
}

.f-page-header--large .f-breadcrumb--separator {
    padding-top: 10px;
    padding-bottom: 10px
}

@media screen and (min-width: 1024px) {
    .f-page-header {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .f-page-header h1 {
        font-size: 36px
    }

    .f-page-header--large h1 {
        font-size: 42px
    }
}

.f-wishlist-page-content, .f-compare-page-content {
    --row-gap: 40px;
    --row-gap-mobile: 40px;
    --column-gap: 30px;
    --column-gap-mobile: 16px
}

.f-wishlist-page-content__wrapper, .f-compare-page-content__wrapper {
    opacity: 0
}

.f-wishlist-page-content__wrapper.is-visible, .f-compare-page-content__wrapper.is-visible {
    opacity: 1
}

.f-compare-no-products h3, .f-wishlist-no-products h3 {
    font-size: 20px;
    line-height: 1.4;
    text-align: center
}

.f-wishlist-card {
    position: relative
}

.f-wishlist-card__remove {
    position: absolute;
    top: 13px;
    right: 13px
}

.f-info-box h3 {
    font-size: 18px;
    line-height: 1.444;
    font-weight: 500;
    margin-bottom: 14px
}

.f-info-box__content {
    color: rgb(var(--color-foreground-secondary))
}

.f-contact-form {
    --column-gap: 30px;
    --column-gap-mobile: 16px;
    margin-top: 60px;
    margin-bottom: 60px
}

@media screen and (max-width: 767px) {
    .f-contact-form {
        margin-top: 40px;
        margin-bottom: 40px
    }
}

.f-contact-form .f-row {
    display: flex;
    flex-wrap: wrap
}

@media screen and (max-width: 1279px) {
    .f-contact-form .f-row {
        flex-wrap: wrap-reverse
    }
}

.f-contact-form .form-field form-field--input {
    vertical-align: middle
}

.f-contact-form__heading {
    font-size: 24px;
    line-height: 1.333;
    font-weight: 500;
    margin-bottom: 10px
}

.f-contact-form__description {
    color: rgb(var(--color-foreground-secondary));
    margin-bottom: 40px
}

@media screen and (max-width: 1023px) {
    .f-contact-form__description {
        margin-bottom: 24px
    }
}

.f-contact-form__message {
    margin-bottom: 20px;
}

@media screen and (max-width: 1023px) {
    .f-contact-form__message {
        margin-top: var(--column-gap-mobile)
    }
}

.f-contact-form__save {
    display: flex;
    align-items: start;
    margin-bottom: 30px
}

.f-contact-form__save input {
    width: 14px;
    height: 14px
}


.f-contact-form__main {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: rgb(var(--color-background-secondary));
    height: fit-content;
}

.f-contact-form__info.position-left {
}

@media screen and (min-width: 1280px) {
    .f-contact-form__main {
        padding: 40px;
    }
    .f-contact-form__main.position-right {
        order: 2;
    }
}

@media screen and (min-width: 1280px) {
    .f-contact-form__info.position-right {
        padding-right: 100px
    }
    .f-contact-form__info.position-left {
        padding-left: 100px

    }
    .f-contact-form__info--full {
        padding-right: 0
    }
}

.f-contact-form__info {
    --column-gap: 30px;
    margin-bottom: 10px
}

@media screen and (min-width: 1280px) {
    .f-contact-form__info {
        --column-gap: 0;
        flex-direction: column
    }
}

@media screen and (max-width: 767px) {
    .f-contact-form__info {
        flex-direction: column
    }
}

.f-contact-form .f-info-box {
    margin-bottom: 30px
}

.f-contact-information {
    margin-top: 50px;
    margin-bottom: 50px
}

.f-contact-information .f-row {
    --column-gap: 60px
}

@media screen and (max-width: 1023px) {
    .f-contact-information .f-row {
        --column-gap: 30px
    }
}

@media screen and (max-width: 767px) {
    .f-contact-information .f-row {
        --column-gap: 0;
        --row-gap-mobile: 30px;
        flex-direction: column
    }
}

.f-contact-information h3 {
    margin-bottom: 10px
}

.f-contact-information__text {
    color: rgb(var(--color-foreground-secondary))
}

.f-faqs-section .f-row {
    display: flex;
    flex-direction: column-reverse
}

@media screen and (min-width: 1024px) {
    .f-faqs-section .f-row {
        flex-direction: row
    }
}

.f-faqs-section__menu {
    margin-top: 40px
}

@media screen and (min-width: 1024px) {
    .f-faqs-section__menu {
        padding-right: 60px;
        margin-top: 0
    }
}

@media screen and (min-width: 1280px) {
    .f-faqs-section__menu {
        padding-right: 100px
    }
}

.f-faqs-section__block-content {
    margin-top: 40px;
    margin-bottom: 40px
}

.f-faqs-section__block-content:last-child {
    margin-bottom: 0
}

.f-faqs-section__block-content:first-child {
    margin-top: 0
}

.f-faqs-section .f-collapsible--button {
    font-size: 18px;
    line-height: 1.555;
    padding-top: 16px;
    padding-bottom: 16px
}

.f-faqs-section .f-collapsible--content {
    color: rgb(var(--color-foreground-secondary));
    transition: all var(--f-duration-default, 0.25s)
}

.f-page404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 20px;
}

@media screen and (min-width: 1024px) {
    .f-page404 {
        padding-top: 200px;
        padding-bottom: 200px
    }
}

.f-page404__icon {
    margin-bottom: 16px
}

.f-page404__icon svg {
    width: 64px;
    height: 64px
}

.f-page404 h1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.25
}

@media screen and (min-width: 1024px) {
    .f-page404 h1 {
        font-size: 60px
    }
}

.f-page404 p {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 32px
}

@media screen and (min-width: 1024px) {
    .f-page404 p {
        font-size: 60px
    }
}

.f-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.f-pagination > span {
    width: 40px;
    height: 40px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.f-pagination > span > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.f-pagination > span:not(.deco) {
    border-radius: 999px
}

.f-pagination > span:not(.deco).current, .f-pagination > span:not(.deco):hover {
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background))
}

.f-pagination > span:not(.deco).current {
    width: 44px;
    height: 44px
}

.f-dot-circle .f-dot, .f-dot-circle .swiper-pagination-bullet, .swiper-pagination .f-dot, .swiper-pagination .swiper-pagination-bullet {
    pointer-events: all;
    opacity: 1;
    position: relative;
    cursor: pointer;
    width: var(--swiper-bullet-size, 20px);
    height: var(--swiper-bullet-size, 20px);
    margin: 5px;
    display: inline-block;
    color: var(--swiper-controls-color, --color-body-text)
}

.f-dot-circle .f-dot::before, .f-dot-circle .f-dot:after, .f-dot-circle .swiper-pagination-bullet::before, .f-dot-circle .swiper-pagination-bullet:after, .swiper-pagination .f-dot::before, .swiper-pagination .f-dot:after, .swiper-pagination .swiper-pagination-bullet::before, .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: var(--swiper-bullet-inactive-size, 8px);
    height: var(--swiper-bullet-inactive-size, 8px);
    z-index: 1;
    -webkit-transition: all var(--f-duration-default, 0.25s) cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all var(--f-duration-default, 0.25s) cubic-bezier(0.645, 0.045, 0.355, 1)
}

.f-dot-circle .f-dot::after, .f-dot-circle .swiper-pagination-bullet::after, .swiper-pagination .f-dot::after, .swiper-pagination .swiper-pagination-bullet::after {
    border: var(--swiper-bullet-border-size, 1px) solid rgba(0, 0, 0, 0);
    border-radius: 50%
}

.f-dot-circle .f-dot::before, .f-dot-circle .swiper-pagination-bullet::before, .swiper-pagination .f-dot::before, .swiper-pagination .swiper-pagination-bullet::before {
    background: currentColor
}

.f-dot-circle .f-dot:hover::before, .f-dot-circle .swiper-pagination-bullet:hover::before, .swiper-pagination .f-dot:hover::before, .swiper-pagination .swiper-pagination-bullet:hover::before {
    width: var(--swiper-bullet-hover-size, 10px);
    height: var(--swiper-bullet-hover-size, 10px)
}

.f-dot-circle .f-dot--active::before, .f-dot-circle .f-dot-active::before, .f-dot-circle .swiper-pagination-bullet--active::before, .f-dot-circle .swiper-pagination-bullet-active::before, .swiper-pagination .f-dot--active::before, .swiper-pagination .f-dot-active::before, .swiper-pagination .swiper-pagination-bullet--active::before, .swiper-pagination .swiper-pagination-bullet-active::before {
    opacity: 0
}

.f-dot-circle .f-dot--active::after, .f-dot-circle .f-dot-active::after, .f-dot-circle .swiper-pagination-bullet--active::after, .f-dot-circle .swiper-pagination-bullet-active::after, .swiper-pagination .f-dot--active::after, .swiper-pagination .f-dot-active::after, .swiper-pagination .swiper-pagination-bullet--active::after, .swiper-pagination .swiper-pagination-bullet-active::after {
    border-color: currentColor;
    width: var(--swiper-bullet-active-size, 14px);
    height: var(--swiper-bullet-active-size, 14px)
}

.sf__hover-bg-scale-up .sf__hover-bg-effect {
    backface-visibility: hidden;
    transition: transform var(--f-duration-image) cubic-bezier(0.15, 0.75, 0.5, 1) 0s
}

@media screen and (min-width: 1280px) {
    .sf__hover-bg-scale-up:hover .sf__hover-bg-effect {
        transform: scale(1.1) translateZ(0)
    }
}

@media screen and (min-width: 1280px) {
    .f-hover-box {
        overflow: hidden
    }

    .f-hover-box__wrapper {
        width: 100%;
        border-radius: inherit;
        overflow: hidden
    }

    .f-hover-box--scale-down .f-hover-box__wrapper, .f-hover-box--scale-down .f-image, .f-hover-box--scale-down svg {
        transition: transform var(--f-duration-image) cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
        backface-visibility: hidden;
        transform: scale(1) translateZ(0)
    }

    .f-hover-box--scale-down:hover .f-hover-box__wrapper {
        transform: scale(0.95) translateZ(0)
    }

    .f-hover-box--scale-down:hover .f-image, .f-hover-box--scale-down:hover svg {
        transform: scale(1.15) translateZ(0)
    }

    .f-hover-box--scale-up {
        will-change: transform
    }

    .f-hover-box--scale-up .f-image, .f-hover-box--scale-up svg {
        transition: transform var(--f-duration-image) cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
        backface-visibility: hidden
    }

    .f-hover-box--scale-up:hover .f-image, .f-hover-box--scale-up:hover svg {
        transform: scale(1.08) translateZ(0)
    }

    .f-hover-box--scale-up.f-collection-card__inner {
        overflow: visible
    }

    .f-hover-box--scale-up.f-collection-card__inner .f-image, .f-hover-box--scale-up.f-collection-card__inner svg {
        transition: transform var(--f-duration-image) cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
        transform: scale(1.13) translateZ(0);
        backface-visibility: hidden
    }

    .f-hover-box--scale-up.f-collection-card__inner .f-hover-box__wrapper {
        transition: transform var(--f-duration-image) cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
        backface-visibility: hidden
    }

    .f-hover-box--scale-up.f-collection-card__inner .f-collection-card__image {
        overflow: visible
    }

    .f-hover-box--scale-up.f-collection-card__inner:hover .f-hover-box__wrapper {
        transform: scale(1.08) translateZ(0)
    }

    .f-hover-box--scale-up.f-collection-card__inner:hover .f-image, .f-hover-box--scale-up.f-collection-card__inner:hover svg {
        transform: scale(1) translateZ(0)
    }

    .f-hover-box--zoom-in .f-image, .f-hover-box--zoom-in svg {
        transform: scale(1.06);
        transform-origin: top right;
        will-change: transform;
        transition: transform var(--f-duration-image) ease
    }

    .f-hover-box--zoom-in:hover .f-image, .f-hover-box--zoom-in:hover svg {
        transform: scale(1)
    }
}

.f-product-quickview .f-product-info--wrapper {
    padding-block-start: 20px;
    padding-inline: 30px
}

.f-product-quickview .f-product-info--wrapper .main-product__block-buy_buttons {
    padding-bottom: 25px
}

@media screen and (max-width: 767px) {
    .f-product-quickview .f-product-info--wrapper {
        padding-inline: 15px
    }
}

.f-product-quickview--media .f-product-media--slider__images {
    margin-bottom: 0
}

.f-product-quickview--info {
    max-width: 100%;
    width: 100%;
    
    height: 100%;
}

.f-product-quickview--info .f-product-info--wrapper {
    height: 100%;
}

@media screen and (min-width: 768px) {
    .f-product-quickview--info {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0
    }
}

.f-product-quickview .f-main-product--info {
    position: relative;
}

.f-product-quickview--viewmore {
    text-decoration: underline;
    margin-top: 8px
}

.f-product-quickview--viewmore:hover {
    color: rgb(var(--color-foreground-secondary))
}

@media screen and (max-width: 767px) {
    .f-product-quickview .f-main-product--wrapper {
        flex-direction: column
    }
}

.f-product-option .option-label--selected {
    font-weight: 400
}

.f-product-option .foxkit-sizechart-button--label {
    margin-left: 8px
}

.f-product-option input[type=radio] {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px
}

.f-product-option--label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    line-height: 24px;
    margin-bottom: 12px;
    font-weight: 500
}

.f-product-option--color .f-product-option--content {
    margin: 0 -2px
}

.f-product-option--image .f-product-option--content, .f-product-option--button .f-product-option--content, .f-product-option--default .f-product-option--content {
    margin: 0 -5px
}

.f-product-option--swatch_dropdown select, .f-product-option--dropdown select {
    height: 44px;
    border: 1px solid rgb(var(--color-border));
    border-radius: 4px;
    padding: 0 40px 0 16px;
    cursor: pointer;
    width: 100%
}

.f-product-option--button .f-product-option--node input:checked + label, .f-product-option--button .f-product-option--node__label[data-selected=true] {
    border-color: rgb(var(--color-button-hover));
    background-color: rgb(var(--color-button-hover));
    color: rgb(var(--color-button-text-hover))
}

.f-product-option--button .f-product-option--node__label {
    border: 1px solid rgb(var(--color-border));
    min-width: 35px;
    padding: 10px;
    margin: 5px;
    font-size: 18px;
    border-radius: 5px;
    transition: var(--f-duration-default, 0.25s) all;
    text-transform: capitalize;
    line-height: 1.3;
    font-size: 14px
}

variant-picker .f-product-option--button .f-product-option--node__label {
    font-size: var(--font-base-size);
    min-width: 45px
}

.f-product-option--button .f-product-option--node__label:hover {
    border-color: rgb(var(--color-button-hover))
}

.f-product-option--image .f-product-option--node input:checked + label, .f-product-option--image .f-product-option--node__label[data-selected=true] {
    border-color: rgb(var(--color-button-hover))
}

.f-product-option--image .f-product-option--node__label {
    border: 1px solid rgb(var(--color-border))
}

.f-product-option--image .f-product-option--node__label:hover {
    border-color: rgb(var(--color-button-hover))
}

.f-product-option--node__label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.f-product-option--node__label[data-option-type=default], .f-product-option--node__label[data-option-type=image].has-bg-img, .f-product-option--node__label[data-option-type=color] {
    font-size: 0;
    line-height: 0;
    background-size: cover;
    background-position: center
}

.f-product-option--node__label[data-option-type=image] {
    min-width: 40px;
    height: calc(40px / var(--option-aspect-ratio, 1));
    margin: 5px;
    padding: 5px 10px
}

variant-picker .f-product-option--node__label[data-option-type=image] {
    width: 75px;
    height: calc(75px / var(--option-aspect-ratio, 1))
}

@media screen and (max-width: 639px) {
    variant-picker .f-product-option--node__label[data-option-type=image] {
        width: 45px;
        height: calc(45px / var(--option-aspect-ratio, 1))
    }
}

@media screen and (max-width: 639px) {
    .f-product-option--node__label[data-option-type=image] {
        width: 60px;
        height: calc(60px / var(--option-aspect-ratio, 1))
    }
}

.f-product-option--node__label.option-loading {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8 !important
}

.f-product-option--node__label.option-loading::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    -webkit-animation: shimmer 2s infinite;
    animation: shimmer 2s infinite
}

.f-product-option--node__unavailable .f-product-option--node__label {
    position: relative;
    opacity: .4
}

.f-product-option--node__unavailable .f-product-option--node__label::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom right, transparent calc(50% - 1px), rgb(var(--color-border)) 50%, transparent calc(50% + 1px)) no-repeat;
    z-index: 1
}

.f-product-option--node__unavailable .f-product-option--node__label[data-option-type=color]::before {
    border-radius: 50%
}

.f-product-option--node.f-tooltip {
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0)
}

.f-product-option--swatch {
    display: flex;
    align-items: center;
    justify-content: center
}

.f-product-option--swatch .f-product-option--node__label {
    border-radius: 50%;
    position: relative;
    width: 26px;
    height: 26px;
    box-shadow: 0 0 0px 1px rgba(var(--color-foreground), 0.1);
    transition: box-shadow var(--f-duration-default, 0.25s) ease, transform var(--f-duration-default, 0.25s) ease;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0)
}

variant-picker .f-product-option--swatch .f-product-option--node__label[data-option-type=color], variant-picker .f-product-option--swatch .f-product-option--node__label[data-option-type=swatch_color] {
    width: 40px;
    height: 40px
}

.f-product-option--swatch .f-product-option--node__label[data-option-type=swatch_color] {
    background: var(--swatch-background);
    background-position: var(--swatch-focal-point, 50%);
    background-size: cover
}

@media screen and (max-width: 767px) {
    .f-product-option--swatch .f-product-option--node__label {
        width: 24px;
        height: 24px
    }
}

.f-product-option--swatch input:checked + label, .f-product-option--swatch .f-product-option--node__label[data-selected=true] {
    box-shadow: 0 0 0 1px rgb(var(--color-foreground)), inset 0 0 0 4px rgb(var(--color-background))
}

@media screen and (min-width: 1280px) {
    .f-product-option--swatch:hover .f-product-option--node__label {
        box-shadow: 0 0 0 1px rgb(var(--color-foreground)), 0px 8px 20px rgba(var(--color-foreground), 0.2), inset 0 0 0 4px rgb(var(--color-background));
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.f-product-option--unselect {
    position: relative;
    display: block
}

.f-product-option--unselect::after {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    z-index: -1;
    border: 1px solid rgb(var(--color-error));
    background: rgba(var(--color-error), 0.045);
    border-radius: var(--btn-border-radius)
}

.f-product-option:not(:last-child) {
    margin-bottom: 20px
}

.f-product-tag {
    font-size: 11px;
    text-transform: uppercase;
    line-height: 16px;
    padding: 2px 10px;
    font-weight: 600;
    border-radius: 11px;
    align-items: center
}

.f-product-tag:not(.hidden) {
    display: inline-flex
}

.f-product-tag--discounted span {
    margin-left: 5px
}

.f-product-tag--preorder .foxkit-preorder-badge {
    position: static;
    padding: 0;
    background: rgba(0, 0, 0, 0);
    font-weight: 500;
    font-size: inherit;
    border-radius: 11px
}

.f-product-tag--preorder .foxkit-preorder-badge:not(:first-child) {
    display: none
}

.f-product-tag--soldout {
    width: 54px;
    height: 54px;
    font-size: 10px;
    border-radius: 50%;
    line-height: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: initial;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media screen and (max-width: 767px) {
    .f-product-tag {
        font-size: 10px;
        padding: 2px 8px
    }
}

.f-topbar {
    --f-topbar-height: 40px;
    font-size: 15px;
    height: var(--f-topbar-height);
    max-height: var(--f-topbar-height);
    padding-top: 14px;
    padding-bottom: 14px;
    white-space: nowrap;
    z-index: 99;
    transition: background var(--f-duration-short, 0.1s);
    position: relative;
    display: none
}

.f-topbar--show-divider {
    border-bottom: 1px solid rgb(var(--color-border))
}

.f-topbar.transparent-on-top {
    position: relative
}

.template-index .f-topbar.transparent-on-top {
    color: rgb(var(--header-transparent-text-color, #fff))
}

.f-topbar__right {
    column-gap: 30px
}

.f-topbar__inner {
    cursor: pointer;
    column-gap: 32px
}

.f-topbar__link {
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    transition: color var(--f-duration-default, 0.25s)
}

.f-topbar__link span {
    margin-left: 8px
}





.f-topbar .f-switcher-dropdown form {
    padding: 0
}

.f-topbar .social-media-links a {
    transition: color var(--f-duration-default, 0.25s)
}

.f-topbar .social-media-links a:hover {
    color: rgb(var(--color-foreground))
}

@media screen and (min-width: 1024px) {
    .f-topbar {
        display: flex;
        align-items: center
    }
}

.f-search .f-page-header__title {
    margin-bottom: 24px
}

@media screen and (max-width: 767px) {
    .f-search .f-page-header__title {
        margin-bottom: 16px
    }
}

@media screen and (max-width: 639px) {
    .f-search .f-page-header {
        padding-bottom: 0
    }
}

.f-search .f-search-result.f-search-show-filter {
    margin-top: 24px
}

@media screen and (max-width: 639px) {
    .f-search .f-search-result.f-search-show-filter {
        margin-top: 12px
    }
}

.f-search--form {
    position: relative;
    width: 60%
}

.f-search--form-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.f-search--form-input {
    padding-right: 40px
}

@media screen and (max-width: 1023px) {
    .f-search--form {
        width: 80%
    }
}

@media screen and (max-width: 767px) {
    .f-search--form {
        width: 100%
    }
}

.f-search--empty {
    padding: 64px 0;
    text-align: center
}

.f-search--empty a {
    position: relative;
    color: rgb(var(--color-foreground-secondary))
}

.f-search--empty a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    left: 0;
    background: rgb(var(--color-foreground-secondary));
    transition: all var(--f-duration-default, 0.25s) ease
}

.f-search--empty a:hover {
    color: rgb(var(--color-foreground))
}

.f-search--empty a:hover::after {
    width: 0;
    background: rgb(var(--color-foreground))
}

.f-search-popup {
    --f-bg-opacity: 0.6;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, var(--f-bg-opacity));
    z-index: 100;
    height: 100%;
    overscroll-behavior: contain;
    transition-duration: var(--f-duration-default, 0.25s);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.f-search-popup--wrapper {
    --f-translate-y: -50%;
    --f-durations: var(--f-duration-default, .25s);
    position: relative;
    z-index: 10;
    min-height: 100%;
    padding: 16px 0;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgb(var(--color-background));
    transition-duration: var(--f-durations)
}

@media screen and (min-width: 768px) {
    .f-search-popup--wrapper {
        padding: 32px 0;
        transform: translate3d(0, var(--f-translate-y), 0);
        min-height: 0
    }

    .f-search-popup--wrapper.f-show-search {
        transform: translate3d(0, 0, 0)
    }
}

.f-search-popup--header {
    margin-bottom: 8px
}

.f-search-popup--header h3 {
    font-weight: 500
}

.f-search-popup--header [data-close-search] {
    padding: 8px;
    color: rgb(var(--color-foreground))
}

.f-search-popup .f-logo {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0
}

@media screen and (max-width: 767px) {
    .f-search-popup .f-logo {
        display: none
    }
}

.f-search-popup .f-logo__image {
    padding: 0
}

.f-search-popup .f-logo__image-transparent {
    display: none
}

.f-search-popup .f-cart-count-bubble {
    right: -4px
}

.f-search-popup__search-form {
    position: relative;
    width: 100%
}

@media screen and (min-width: 768px) {
    .f-search-popup__search-form {
        margin: 0 50px
    }
}

@media screen and (min-width: 1536px) {
    .f-search-popup__search-form {
        margin: 0 100px
    }
}

.f-search-popup__result {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    overflow-y: auto;
    background: rgb(var(--color-background));
    max-height: var(--search-result-max-height);
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--inputs-radius);
    left: 50%;
    transform: translateX(-50%)
}

@media screen and (max-width: 1279px) {
    .f-search-popup__result {
        width: 120%
    }
}

@media screen and (max-width: 1023px) {
    .f-search-popup__result {
        width: 90vw
    }
}

@media screen and (max-width: 767px) {
    .f-search-popup__result {
        top: 100%;
        width: calc(100% + 30px);
        border: none
    }
}

.f-search-form {
    height: 46px;
    position: relative;
    border-radius: 6px
}

.f-search-form--button {
    position: absolute;
    padding: 12px 14px;
    top: 1px;
    right: 0
}

.f-searchengines-image-search {
    position: absolute;
    padding: 5px 14px;
    height: 42px;
    display: flex;
    align-items: center;
    top: 1px;
    right: 42px;
    cursor: pointer;

}
.f-searchengines-image-search.loading .f-spinner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-searchengines-image-search.loading  .animate-spin {
    display: block;
    width: 28px;
    height: 28px;
}

.f-search-form--spinner {
    position: absolute;
    visibility: hidden;
    top: 0;
    right: 0;
    padding: 10px 12px
}

.f-search-form--clear {
    position: absolute;
    visibility: hidden;
    cursor: pointer;
    color: rgb(var(--color-foreground-secondary));
    padding: 14px;
    top: 0;
    right: 32px
}

.f-search-form--clear:hover {
    color: rgb(var(--color-foreground))
}

.f-search-popular {
    margin-top: 12px
}

.f-search-popular--label {
    margin-right: 16px;
    color: rgb(var(--color-foreground-secondary))
}

.f-search-popular--item {
    cursor: pointer;
    text-decoration: underline;
    margin-right: 16px;
    white-space: nowrap
}

.f-search-popular--item:hover {
    color: rgb(var(--color-foreground-secondary))
}

.f-search-count-result {
    width: 100%;
    border-top: 1px solid rgb(var(--color-border));
    padding: 15px;
    color: rgb(var(--color-foreground-secondary));
    align-items: center
}

.f-search-count-result [data-more-result-icon] {
    margin-left: 12px;
    transition: all var(--f-duration-default) ease
}

.f-search-count-result [data-query] {
    color: rgb(var(--color-foreground))
}

.f-search-count-result:hover {
    text-decoration: underline
}

.f-search-count-result:hover [data-more-result-icon] {
    transform: translate(5px)
}

.f-search-count-result:hover {
    color: rgb(var(--color-foreground));
    background-color: rgba(var(--color-foreground), 0.04)
}

@media screen and (min-width: 1280px) {
    .f-search-count-result {
        padding: 15px 30px
    }
}

.f-search-result .f-search-item {
    display: flex;
    padding: 4px 15px;
    color: rgb(var(--color-foreground-secondary));
    transition: all var(--f-duration-default) ease
}

@media screen and (min-width: 1280px) {
    .f-search-result .f-search-item {
        padding: 4px 30px
    }
}

.f-search-result .f-search-item--with-thumbnail {
    margin-bottom: 12px
}

.f-search-result .f-search-item--content {
    flex-grow: 1;
    padding-left: 15px
}

.f-search-result .f-search-item--price {
    margin-top: 4px
}

.f-search-result .f-search-item--image {
    flex: 0 0 70px;
    position: relative
}

@media screen and (max-width: 767px) {
    .f-search-result .f-search-item--image {
        flex: 0 0 50px
    }
}

.f-search-result .f-search-item:hover .f-search-item--title {
    text-decoration: underline
}

.f-search-result .f-search-item:hover {
    color: rgb(var(--color-foreground));
    background-color: rgba(var(--color-foreground), 0.04)
}

.f-search-result .f-search-item-page {
    background: var(--bg-card-placeholder);
    padding: 12px;
    position: relative
}

.f-search-result .f-search-item-page--badge {
    font-size: 14px;
    background: #fff;
    border: 1px solid rgb(var(--color-border));
    padding: 2px 10px;
    border-radius: 12px;
    position: absolute;
    bottom: 12px;
    left: 12px
}

.f-search-result .f-search-item-page:hover .f-search-item-page--title {
    text-decoration: underline
}

.f-search-result__products-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.f-search-result--more {
    margin-top: 20px
}

.f-search-result__group-wrapper {
    display: flex
}

@media screen and (max-width: 767px) {
    .f-search-result__group-wrapper {
        flex-direction: column
    }
}

.f-search-result__group {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0
}

.f-search-result__group:first-child {
    flex: 0 0 35%
}

.f-search-result__group:only-child {
    flex-grow: 1
}

.f-search-result__group:nth-child(2) {
    border-left: 1px solid rgba(var(--color-border))
}

@media screen and (max-width: 767px) {
    .f-search-result__group {
        padding-bottom: 0
    }
}

.f-search-result__heading {
    font-weight: 500;
    margin: 0 15px 12px
}

@media screen and (min-width: 1280px) {
    .f-search-result__heading {
        margin: 0 30px 12px
    }
}

@media screen and (max-width: 767px) {
    .f-search-result__heading {
        padding-bottom: 12px;
        border-bottom: 1px solid rgb(var(--color-border))
    }
}

.f-search-result__products-list {
    column-gap: 20px;
    row-gap: 12px
}

.f-search-pagination {
    padding: 60px 0
}

@media screen and (max-width: 767px) {
    .f-search-pagination {
        padding: 30px 0
    }
}

@media (max-width: 767px) {
    .template-search .page-header__breadcrumb {
        display: none
    }
}

.f-product-card {
    position: relative
}

.f-product-card__media {
    overflow: hidden;
    position: relative;
    border-radius: var(--pcard-radius)
}

@media screen and (min-width: 1024px) {
    .f-product-card__media:hover .f-product-card__main-image, .f-product-card__media:hover .f-placeholder-svg {
        transform: scale3d(1.1, 1.1, 1.1) translateZ(0)
    }

    .f-product-card__media:hover .f-countdown-timer {
        opacity: 0;
        transform: translate3d(0, 150%, 0)
    }

    .f-product-card__media:hover .f-product-card__action {
        opacity: 1;
        transform: translateZ(0);
        z-index: 10
    }
}

.f-product-card__main-image, .f-product-card svg {
    transition: opacity .8s ease, transform 1.1s cubic-bezier(0.15, 0.75, 0.5, 1) 0s
}

.f-product-card__hover-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity .8s ease, transform 1.1s cubic-bezier(0.15, 0.75, 0.5, 1) 0s
}

.f-product-card__video {
    pointer-events: none
}

.f-product-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 18px;
    left: 18px
}

@media screen and (max-width: 767px) {
    .f-product-card__tags {
        top: 13px;
        left: 13px
    }
}

.f-product-card__tag-name {
    color: rgba(var(--text-white), 1);
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center
}

.f-product-card__tag-name:empty {
    font-size: 0;
    display: none;
    padding: 0;
    margin: 0
}

.f-product-card .f-countdown-timer {
    color: #ff706b;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    padding: 8px;
    width: 100%;
    transform: translateZ(0);
    transition: all var(--f-duration-default, 0.25s) ease
}

@media screen and (min-width: 1280px) {
    .f-product-card .f-countdown-timer {
        padding: 16px
    }
}

.f-product-card .f-countdown-timer__wrapper {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 3px
}

@media screen and (min-width: 1024px) {
    .f-product-card .f-countdown-timer__wrapper {
        gap: 5px
    }
}

.f-product-card .f-countdown-timer__box {
    background-color: rgba(var(--bg-white), 1);
    padding: 4px;
    border-radius: 6px;
    text-align: center;
    min-width: auto
}

@media screen and (min-width: 1024px) {
    .f-product-card .f-countdown-timer__box {
        padding: 6px
    }
}

@media screen and (min-width: 1280px) {
    .f-product-card .f-countdown-timer__box {
        padding: 8px
    }
}

.f-product-card .f-countdown-timer__digit {
    font-size: 16px;
    line-height: 1.333
}

@media screen and (min-width: 1024px) {
    .f-product-card .f-countdown-timer__digit {
        font-size: 24px
    }
}

@media screen and (max-width: 639px) {
    .f-product-card .f-countdown-timer__digit {
        font-size: 15px
    }
}

.f-product-card .f-countdown-timer__text {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
    text-transform: uppercase
}

@media screen and (max-width: 639px) {
    .f-product-card .f-countdown-timer__text {
        font-size: 11px
    }
}

.f-product-card__addons .f-product-form {
    border-right: none;
    width: 34px;
    height: auto
}

.f-cols-1 .f-product-card__addons .f-product-form {
    width: 45px;
    height: 45px
}

@media screen and (min-width: 1024px) {
    .f-product-card__addons .f-product-form {
        width: 45px;
        height: 45px
    }
}

.f-product-card__action {
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 1;
    gap: 10px 2px
}

@media screen and (max-width: 1023px) {
    .f-product-card__action .f-tooltip--style-1.f-button--icon {
        aspect-ratio: 1
    }
}

@media screen and (min-width: 1024px) {
    .f-product-card__action {
        gap: 10px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        opacity: 0;
        transform: translate3d(0, 150%, 0);
        transition: all var(--f-duration-default, 0.25s) ease
    }
}

.f-product-card__action .f-button--icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 0;
    border: 1px solid rgb(var(--color-border))
}

.f-cols-1 .f-product-card__action .f-button--icon {
    width: 45px;
    height: 45px
}

.f-product-card__action .f-button--icon.added-to-compare, .f-product-card__action .f-button--icon.added-to-wishlist {
    border-color: rgb(var(--color-tooltip))
}

.f-product-card__action .f-button--icon.added-to-compare:hover, .f-product-card__action .f-button--icon.added-to-wishlist:hover {
    box-shadow: 0 0 0 .2rem rgb(var(--color-tooltip));
    border-color: rgb(var(--color-tooltip)) !important
}

@media screen and (min-width: 1024px) {
    .f-product-card__action .f-button--icon {
        width: 45px;
        height: 45px
    }
}

.f-product-card__action svg {
    width: 15px;
    height: 15px
}

@media screen and (min-width: 1280px) {
    .f-product-card__action svg {
        width: 16px;
        height: 16px
    }
}

.f-product-card__action .f-product-card__action-wrapper {
    display: flex
}

@media screen and (min-width: 1024px) {
    .f-product-card__action--top {
        flex-direction: column;
        top: 20px;
        right: 20px;
        left: auto;
        bottom: auto;
        transform: translate3d(150%, 0, 0)
    }
}

.f-product-card__content {
    position: relative
}

.f-product-card__content .f-price--on-sale .f-price__sale {
    justify-content: center
}

.f-product-card__content.m\:text-right .f-price--on-sale .f-price__sale {
    justify-content: flex-end
}

.f-product-card__content.m\:text-left .f-price--on-sale .f-price__sale {
    justify-content: flex-start
}

.f-product-card__info {
    margin-top: 12px
}

@media screen and (min-width: 1024px) {
    .f-product-card__info {
        margin-top: 20px
    }
}

.f-product-card__type {
    color: rgb(var(--color-foreground-secondary));
    font-size: 14px;
    text-transform: uppercase
}

.f-product-card__vendor {
    color: rgb(var(--color-foreground-secondary));
    font-size: 12px;
    line-height: 1.333;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: block
}

.f-product-card__title {
    font-size: calc(var(--font-base-size, 16) * 1px);
    margin-bottom: 5px
}

.f-product-card__name {
    font-weight: 500;
    line-height: 1.5;
    display: block;
    transition: color var(--f-duration-default, 0.25s);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--product-title-line-clamp, unset);
    -webkit-box-orient: vertical
}

.f-product-card__name:hover {
    color: rgb(var(--color-foreground-secondary))
}

.f-product-card__reviews {
    margin-bottom: 10px
}

.f-product-card__reviews:empty, .f-product-card__reviews > div:empty {
    display: none;
    margin-bottom: 0
}

.f-product-card__reviews .spr-badge {
    font-size: 14px
}

.f-product-card__reviews .spr-starrating {
    align-items: center;
    justify-content: unset;
    margin-bottom: 0;
    margin-top: 0
}

.f-product-card__price {
    line-height: 1.5
}

.f-product-card__price .f-price__unit {
    font-size: 85%
}

.f-product-card__inventory {
    margin-top: 12px
}

.f-product-card__content-footer {
    display: none;
    margin-top: 20px
}

.f-product-card__content-footer .f-product-card__atc-button {
    display: none
}

.f-product-card__content-footer:empty {
    padding: 0;
    margin: 0
}

.f-product-card__description {
    color: rgb(var(--color-foreground-secondary));
    margin-bottom: 16px;
    line-height: 1.75
}

.f-product-card__background-expand {
    transform: scale(1, 1) translateY(0px) translateZ(0px);
    display: block;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(var(--color-background));
    border-radius: 5px;
    transition: transform var(--f-duration-long, 0.5s) cubic-bezier(0.2, 0.75, 0.5, 1);
    pointer-events: none;
    z-index: -1;
    top: 0
}

.f-product-card__background-expand:before {
    display: block;
    content: "";
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: center;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity var(--f-duration-long, 0.5s) cubic-bezier(0.2, 0.75, 0.5, 1);
    box-shadow: 0px 10px 15px rgba(var(--color-foreground), 0.07)
}

@media screen and (max-width: 767px) {
    .f-product-card .f-product-option--node__label[data-option-type=image].has-bg-img, .f-product-card .f-product-option--node__label[data-option-type=default].has-bg-img {
        width: 40px;
        height: calc(40px / var(--option-aspect-ratio, 1))
    }

    .f-product-card .f-product-option--node__label[data-option-type=image]:not(.has-bg-img), .f-product-card .f-product-option--node__label[data-option-type=default]:not(.has-bg-img) {
        width: 40px;
        height: calc(40px / var(--option-aspect-ratio, 1));
        font-size: 14px
    }
}

@media screen and (min-width: 1024px) {
    .f-product-card--style-1 .f-product-card__addons .f-product-form:has(.f-product-card__atc-button), .f-product-card--style-1 .f-product-card__addons .f-product-card__atc-button {
        display: none
    }
}

.f-product-card--style-2 .f-product-card__media .f-product-card__action {
    gap: 0
}

@media screen and (max-width: 1023px) {
    .f-product-card--style-2 .f-product-card__media .f-product-card__action {
        top: auto;
        bottom: 20px;
        opacity: 1;
        transform: none;
        transition: none
    }
}

.f-product-card--style-2 .f-product-card__media .f-product-card__action .f-button--icon {
    border-radius: 0;
    box-shadow: none;
    border-width: 0 1px 0 0;
    border-right: 1px solid rgb(var(--color-border))
}

.f-product-card--style-2 .f-product-card__media .f-product-card__action > *:first-child {
    border-radius: 5px 0 0 5px
}

.f-product-card--style-2 .f-product-card__media .f-product-card__action > *:last-child {
    border-right: 0;
    border-radius: 0 5px 5px 0
}

.f-product-card--style-2 .f-product-card__media .f-product-card__action.only-one * {
    border-right: 0;
    border-radius: 5px
}


@media screen and (min-width: 1024px) {
    .f-product-card--style-2:hover {
        z-index: 1
    }

    .f-product-card--style-2:hover .f-product-card__background-expand {
        transform: scale(1.06, 1.05) translateY(0) translateZ(0)
    }

    .f-product-card--style-2:hover .f-product-card__background-expand:before {
        opacity: 1;
        pointer-events: all
    }
}

@media screen and (min-width: 768px) {
    .f-product-card--style-3 .f-product-card__addons .f-wishlist-button {
        display: none
    }
}

.f-product-card--style-3 .f-product-card__action--top {
    top: 15px;
    right: 15px;
    transform: none;
    opacity: 1
}

@media screen and (min-width: 1024px) {
    .f-product-card--style-3:hover {
        z-index: 1
    }

    .f-product-card--style-3:hover .f-product-card__background-expand {
        transform: scale(1.06, 1.05) translateY(0) translateZ(0)
    }

    .f-product-card--style-3:hover .f-product-card__background-expand:before {
        opacity: 1;
        pointer-events: all
    }
}

.f-product-card--style-4 .f-product-card__content .f-product-card__action-wrapper {
    width: 100%;
    margin: 20px auto 0
}

.f-product-card--style-4 .f-product-card__content .f-product-card__action-wrapper .f-button, .f-product-card--style-4 .f-product-card__content .f-product-card__action-wrapper .fec-payment-button__button.fec-payment-button__button--unbranded, .f-product-card--style-4 .f-product-card__content .f-product-card__action-wrapper .spr-button.spr-button-primary {
    width: 100%
}

.f-product-card--style-4 .f-product-card__content-footer .f-product-card__action-wrapper {
    width: auto;
    margin: 0
}

.f-product-card--style-4 .f-product-card__content-footer .f-product-card__action-wrapper .f-button, .f-product-card--style-4 .f-product-card__content-footer .f-product-card__action-wrapper .fec-payment-button__button.fec-payment-button__button--unbranded, .f-product-card--style-4 .f-product-card__content-footer .f-product-card__action-wrapper .spr-button.spr-button-primary {
    width: auto
}

.f-product-card--style-5 .f-product-card__info .f-product-card__action {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    opacity: 1;
    transform: none
}

.f-product-card--style-5 .f-product-card__info .f-wishlist-button {
    border: 1px solid rgb(var(--color-border));
    background-color: rgba(0, 0, 0, 0);
    color: rgb(var(--color-foreground))
}

.f-product-card--style-5 .f-product-card__info .f-wishlist-button.added-to-wishlist {
    color: rgb(var(--color-button-text-hover));
    border-color: rgb(var(--color-button-hover)) !important;
    background-color: rgb(var(--color-button-hover));
    box-shadow: 0 0 0 .2rem rgb(var(--color-button-hover))
}

@media screen and (max-width: 767px) {
    .f-product-card--style-5 .f-product-card__info .f-wishlist-button.added-to-wishlist {
        box-shadow: none
    }
}

@media screen and (min-width: 1024px) {
    .f-product-card--style-5 .f-product-card__info .f-wishlist-button:hover {
        color: rgb(var(--color-button-text-hover));
        border-color: rgb(var(--color-button-hover)) !important;
        background-color: rgb(var(--color-button-hover));
        box-shadow: 0 0 0 .2rem rgb(var(--color-button-hover))
    }
}

.f-product-card--style-5.f-product-card--enable-wishlist .f-product-card__info {
    padding-right: 48px
}

@media screen and (min-width: 1024px) {
    .f-product-card--show-second-img .f-product-card__media:hover .f-product-card__main-image {
        transform: scale3d(1, 1, 1) translateZ(0);
        opacity: 0
    }

    .f-product-card--show-second-img .f-product-card__media:hover .f-product-card__hover-image {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1) translateZ(0)
    }
}

.f-product-card--placeholder .f-product-card__media {
    margin-bottom: 20px
}

@media screen and (min-width: 1024px) {
    .f-product-card--placeholder .f-product-card__media:hover svg {
        transform: scale3d(1.1, 1.1, 1.1) translateZ(0)
    }
}

.f-product-card--placeholder .f-product-card__name {
    margin-bottom: 5px;
    color: rgb(var(--color-heading))
}

.f-product-card--placeholder .f-price {
    color: rgb(var(--color-price-regular))
}

.f-product-card .f-product-option {
    display: flex;
    margin-bottom: 0;
    margin-top: 12px
}

.f-product-card .f-product-option--more-option {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: rgb(var(--color-foreground), 0.75);
    min-width: 30px;
    padding: 6px
}

.f-product-card .f-product-option--more-option .f-tooltip {
    margin: 0;
    padding: 0
}

.f-cols-1 .f-product-card__content {
    text-align: left !important
}

.f-cols-1 .f-product-card--style-2:hover .f-product-card__background-expand {
    transform: scale(1.03, 1.1) translateY(0) translateZ(0)
}

.f-cols-1 .f-product-card--style-3:hover .f-product-card__background-expand {
    transform: scale(1.03, 1.1) translateY(0) translateZ(0)
}

.f-cols-1 .f-product-card--style-4 .f-product-card__content .f-product-card__action-wrapper {
    display: none
}

.f-cols-1 .f-product-card--style-4 .f-product-card__content-footer .f-product-card__action-wrapper {
    display: block
}

@media screen and (min-width: 768px) {
    .f-cols-1 .f-product-card {
        display: flex
    }

    .f-cols-1 .f-product-card__media {
        margin-right: 30px;
        flex-shrink: 0;
        width: 270px;
        max-width: 100%
    }

    .f-cols-1 .f-product-card__content {
        flex: 1 1 0%;
        padding-right: 0 !important
    }

    .f-cols-1 .f-product-card__action {
        display: none
    }

    .f-cols-1 .f-product-card__content-footer {
        display: block
    }

    .f-cols-1 .f-product-card__content-footer .f-product-card__action {
        display: flex;
        justify-content: flex-start;
        position: static;
        transform: none;
        opacity: 1
    }

    .f-cols-1 .f-product-card__content-footer .f-product-card__action-icons {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .f-cols-1 .f-product-card__content-footer .f-product-card__action svg {
        width: 20px;
        height: 20px;
        margin: auto
    }
}

.f-product-sale-progress {
    margin-top: 15px;
    margin-bottom: 15px
}

.f-product-sale-progress__bar {
    height: 8px;
    width: 100%;
    position: relative;
    background: rgba(192, 44, 48, .12);
    border-radius: 2px
}

.f-product-sale-progress__bar > span {
    width: 0;
    background: #ef2d2d;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: var(--f-duration-long, 0.5s) all
}

.f-product-sale-progress__text {
    color: rgb(var(--color-foreground-secondary));
    display: flex;
    justify-content: space-between;
    margin-top: 8px
}

.f-product-sale-progress__text strong {
    color: rgb(var(--color-foreground))
}

.f-product-sale-progress + .f-product-form--wrapper {
    margin-top: 30px
}

[data-enable-flashsale=true] .f-product-card .f-product-option {
    display: none
}

.f-wishlist-button--growave i {
    color: #000
}

.f-wishlist-button--growave:hover i {
    color: #fff !important
}

.f-wishlist-button--growave .faves-count {
    display: none
}

.f-compare-card .f-add-to-cart {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: max-content;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.f-compare-card .f-product-attribute {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(var(--color-border));
    padding-top: 15px;
    padding-bottom: 15px
}

.f-compare-card .f-product-attribute__col-left, .f-compare-card .f-product-attribute__col-right {
    flex: 0 0 50%
}

.f-compare-card .f-product-attribute__col-left {
    color: rgb(var(--color-foreground-secondary))
}

.f-compare-card .f-product-attribute svg {
    flex-shrink: 0
}

@media screen and (min-width: 768px) {
    .f-compare-card .f-product-attribute {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.f-compare-card .f-product-status {
    margin-left: 4px
}

@media screen and (max-width: 767px) {
    .f-compare-card .f-product-card__action .f-button--icon {
        width: 40px;
        height: 40px
    }

    .f-compare-card .f-product-card__action--top {
        display: block;
        transform: translateZ(0);
        top: 10px;
        right: 10px;
        opacity: 1
    }
}

.f-price__sale, .f-price__availability, .f-price .f-price__badge-sale, .f-price .f-price__badge-sold-out, .f-price--on-sale .f-price__regular, .f-price--on-sale .f-price__availability, .f-price--no-compare .f-price__compare {
    display: none
}

.f-price {
    gap: 8px;
    color: rgb(var(--color-foreground))
}

.f-price__unit-wrapper {
    width: 100%
}

.f-price__regular .f-price-item--regular, .f-price__regular .f-price-item--last, .f-price__sale .f-price-item--regular, .f-price__sale .f-price-item--last {
    font-family: var(--font-stack-body)
}

.f-price__regular {
    color: rgb(var(--color-price-regular))
}

.f-price__sale .f-price-item--regular {
    font-size: 87.5%;
    text-decoration: line-through;
    color: rgb(var(--color-foreground-secondary))
}

.f-price__sale .f-price-item--last {
    color: rgb(var(--color-price-sale))
}

.f-price--on-sale .f-price__sale {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 8px;
    align-items: center
}

.f-price--sold-out .f-price__badge-sold-out, .f-price--sold-out .f-price__badges, .f-price--on-sale .f-price__badge-sale, .f-price--on-sale .f-price__badges {
    display: inline-flex
}

.f-price--sold-out .f-price__badge-sold-out .f-product-tag, .f-price--sold-out .f-price__badges .f-product-tag, .f-price--on-sale .f-price__badge-sale .f-product-tag, .f-price--on-sale .f-price__badges .f-product-tag {
    column-gap: 4px
}

.f-country-flags {
    background: -webkit-image-set(url("//cdn.shopify.com/s/files/1/0646/2118/3226/t/6/assets/country-flags.png?v=37230036826556269641671675075") 1x, url("//cdn.shopify.com/s/files/1/0646/2118/3226/t/6/assets/country-flags-2x.png?v=119388446682176363021671675075") 2x) no-repeat top left;
    background: image-set(url("//cdn.shopify.com/s/files/1/0646/2118/3226/t/6/assets/country-flags.png?v=37230036826556269641671675075") 1x, url("//cdn.shopify.com/s/files/1/0646/2118/3226/t/6/assets/country-flags-2x.png?v=119388446682176363021671675075") 2x) no-repeat top left;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block
}

.f-country-flags--AD {
    background-position: 0 0
}

.f-country-flags--AE {
    background-position: -21px 0
}

.f-country-flags--AF {
    background-position: 0 -21px
}

.f-country-flags--African_nion {
    background-position: -21px -21px
}

.f-country-flags--AG {
    background-position: -42px 0
}

.f-country-flags--AI {
    background-position: -42px -21px
}

.f-country-flags--AL {
    background-position: 0 -42px
}

.f-country-flags--AM {
    background-position: -21px -42px
}

.f-country-flags--AMS {
    background-position: -42px -42px
}

.f-country-flags--AO {
    background-position: -63px 0
}

.f-country-flags--AQ {
    background-position: -63px -21px
}

.f-country-flags--AR {
    background-position: -63px -42px
}

.f-country-flags--AS {
    background-position: 0 -63px
}

.f-country-flags--AT {
    background-position: -21px -63px
}

.f-country-flags--AU {
    background-position: -42px -63px
}

.f-country-flags--AW {
    background-position: -63px -63px
}

.f-country-flags--AX {
    background-position: -84px 0
}

.f-country-flags--AZ {
    background-position: -84px -21px
}

.f-country-flags--BA {
    background-position: -84px -42px
}

.f-country-flags--BB {
    background-position: -84px -63px
}

.f-country-flags--BD {
    background-position: 0 -84px
}

.f-country-flags--BE {
    background-position: -21px -84px
}

.f-country-flags--BF {
    background-position: -42px -84px
}

.f-country-flags--BG {
    background-position: -63px -84px
}

.f-country-flags--BH {
    background-position: -84px -84px
}

.f-country-flags--BI {
    background-position: -105px 0
}

.f-country-flags--BJ {
    background-position: -105px -21px
}

.f-country-flags--BL {
    background-position: -105px -42px
}

.f-country-flags--BM {
    background-position: -105px -63px
}

.f-country-flags--BN {
    background-position: -105px -84px
}

.f-country-flags--BO {
    background-position: 0 -105px
}

.f-country-flags--BQ-BO {
    background-position: -21px -105px
}

.f-country-flags--BQ-SA {
    background-position: -42px -105px
}

.f-country-flags--BQ-SE {
    background-position: -63px -105px
}

.f-country-flags--BR {
    background-position: -84px -105px
}

.f-country-flags--BS {
    background-position: -105px -105px
}

.f-country-flags--BT {
    background-position: -126px 0
}

.f-country-flags--BV {
    background-position: -126px -21px
}

.f-country-flags--BW {
    background-position: -126px -42px
}

.f-country-flags--BY {
    background-position: -126px -63px
}

.f-country-flags--BZ {
    background-position: -126px -84px
}

.f-country-flags--CA {
    background-position: -126px -105px
}

.f-country-flags--CC {
    background-position: 0 -126px
}

.f-country-flags--CD {
    background-position: -21px -126px
}

.f-country-flags--CF {
    background-position: -42px -126px
}

.f-country-flags--CG {
    background-position: -63px -126px
}

.f-country-flags--CH {
    background-position: -84px -126px
}

.f-country-flags--CI {
    background-position: -105px -126px
}

.f-country-flags--CK {
    background-position: -126px -126px
}

.f-country-flags--CL {
    background-position: -147px 0
}

.f-country-flags--CM {
    background-position: -147px -21px
}

.f-country-flags--CN {
    background-position: -147px -42px
}

.f-country-flags--CO {
    background-position: -147px -63px
}

.f-country-flags--CR {
    background-position: -147px -84px
}

.f-country-flags--CU {
    background-position: -147px -105px
}

.f-country-flags--CV {
    background-position: -147px -126px
}

.f-country-flags--CW {
    background-position: 0 -147px
}

.f-country-flags--CX {
    background-position: -21px -147px
}

.f-country-flags--CY {
    background-position: -42px -147px
}

.f-country-flags--CZ {
    background-position: -63px -147px
}

.f-country-flags--DE {
    background-position: -84px -147px
}

.f-country-flags--DJ {
    background-position: -105px -147px
}

.f-country-flags--DK {
    background-position: -126px -147px
}

.f-country-flags--DM {
    background-position: -147px -147px
}

.f-country-flags--DO {
    background-position: -168px 0
}

.f-country-flags--DZ {
    background-position: -168px -21px
}

.f-country-flags--EC {
    background-position: -168px -42px
}

.f-country-flags--EE {
    background-position: -168px -63px
}

.f-country-flags--EG {
    background-position: -168px -84px
}

.f-country-flags--EH {
    background-position: -168px -105px
}

.f-country-flags--ER {
    background-position: -168px -126px
}

.f-country-flags--ES {
    background-position: -168px -147px
}

.f-country-flags--ET {
    background-position: 0 -168px
}

.f-country-flags--EUROPE {
    background-position: -21px -168px
}

.f-country-flags--FI {
    background-position: -42px -168px
}

.f-country-flags--FJ {
    background-position: -63px -168px
}

.f-country-flags--FK {
    background-position: -84px -168px
}

.f-country-flags--FM {
    background-position: -105px -168px
}

.f-country-flags--FO {
    background-position: -126px -168px
}

.f-country-flags--FR {
    background-position: -147px -168px
}

.f-country-flags--GA {
    background-position: -168px -168px
}

.f-country-flags--GB {
    background-position: -189px -63px
}

.f-country-flags--GB-NIR {
    background-position: -189px -21px
}

.f-country-flags--GB-SCT {
    background-position: -189px -42px
}

.f-country-flags--GB-UKM {
    background-position: -189px -63px
}

.f-country-flags--GB-WLS {
    background-position: -189px -84px
}

.f-country-flags--GD {
    background-position: -189px -105px
}

.f-country-flags--GE {
    background-position: -189px -126px
}

.f-country-flags--GF {
    background-position: -189px -147px
}

.f-country-flags--GG {
    background-position: -189px -168px
}

.f-country-flags--GH {
    background-position: 0 -189px
}

.f-country-flags--GI {
    background-position: -21px -189px
}

.f-country-flags--GL {
    background-position: -42px -189px
}

.f-country-flags--GM {
    background-position: -63px -189px
}

.f-country-flags--GN {
    background-position: -84px -189px
}

.f-country-flags--GP {
    background-position: -105px -189px
}

.f-country-flags--GP {
    background-position: -126px -189px
}

.f-country-flags--GQ {
    background-position: -147px -189px
}

.f-country-flags--GR {
    background-position: -168px -189px
}

.f-country-flags--GS {
    background-position: -189px -189px
}

.f-country-flags--GT {
    background-position: -210px 0
}

.f-country-flags--GU {
    background-position: -210px -21px
}

.f-country-flags--GW {
    background-position: -210px -42px
}

.f-country-flags--GY {
    background-position: -210px -63px
}

.f-country-flags--HK {
    background-position: -210px -84px
}

.f-country-flags--HM {
    background-position: -210px -105px
}

.f-country-flags--HN {
    background-position: -210px -126px
}

.f-country-flags--HR {
    background-position: -210px -147px
}

.f-country-flags--HT {
    background-position: -210px -168px
}

.f-country-flags--HU {
    background-position: -210px -189px
}

.f-country-flags--ID {
    background-position: 0 -210px
}

.f-country-flags--IE {
    background-position: -21px -210px
}

.f-country-flags--IL {
    background-position: -42px -210px
}

.f-country-flags--IM {
    background-position: -63px -210px
}

.f-country-flags--IN {
    background-position: -84px -210px
}

.f-country-flags--IO {
    background-position: -105px -210px
}

.f-country-flags--IQ {
    background-position: -126px -210px
}

.f-country-flags--IR {
    background-position: -147px -210px
}

.f-country-flags--IS {
    background-position: -168px -210px
}

.f-country-flags--IT {
    background-position: -189px -210px
}

.f-country-flags--JE {
    background-position: -210px -210px
}

.f-country-flags--JM {
    background-position: -231px 0
}

.f-country-flags--JO {
    background-position: -231px -21px
}

.f-country-flags--JP {
    background-position: -231px -42px
}

.f-country-flags--KG {
    background-position: -231px -63px
}

.f-country-flags--KH {
    background-position: -231px -84px
}

.f-country-flags--KI {
    background-position: -231px -105px
}

.f-country-flags--KM {
    background-position: -231px -126px
}

.f-country-flags--KN {
    background-position: -231px -147px
}

.f-country-flags--KN-SK {
    background-position: -231px -168px
}

.f-country-flags--KP {
    background-position: -231px -189px
}

.f-country-flags--KR {
    background-position: -231px -210px
}

.f-country-flags--KW {
    background-position: 0 -231px
}

.f-country-flags--KY {
    background-position: -21px -231px
}

.f-country-flags--KZ {
    background-position: -42px -231px
}

.f-country-flags--LA {
    background-position: -63px -231px
}

.f-country-flags--LB {
    background-position: -84px -231px
}

.f-country-flags--LC {
    background-position: -105px -231px
}

.f-country-flags--LI {
    background-position: -126px -231px
}

.f-country-flags--LK {
    background-position: -147px -231px
}

.f-country-flags--LR {
    background-position: -168px -231px
}

.f-country-flags--LS {
    background-position: -189px -231px
}

.f-country-flags--LT {
    background-position: -210px -231px
}

.f-country-flags--LU {
    background-position: -231px -231px
}

.f-country-flags--LV {
    background-position: -252px 0
}

.f-country-flags--LY {
    background-position: -252px -21px
}

.f-country-flags--MA {
    background-position: -252px -42px
}

.f-country-flags--MC {
    background-position: -252px -63px
}

.f-country-flags--MD {
    background-position: -252px -84px
}

.f-country-flags--ME {
    background-position: -252px -105px
}

.f-country-flags--MF {
    background-position: -252px -126px
}

.f-country-flags--MG {
    background-position: -252px -147px
}

.f-country-flags--MH {
    background-position: -252px -168px
}

.f-country-flags--MK {
    background-position: -252px -189px
}

.f-country-flags--ML {
    background-position: -252px -210px
}

.f-country-flags--MM {
    background-position: -252px -231px
}

.f-country-flags--MN {
    background-position: 0 -252px
}

.f-country-flags--MO {
    background-position: -21px -252px
}

.f-country-flags--MP {
    background-position: -42px -252px
}

.f-country-flags--MQ {
    background-position: -63px -252px
}

.f-country-flags--MQ-UNF {
    background-position: -84px -252px
}

.f-country-flags--MR {
    background-position: -105px -252px
}

.f-country-flags--MS {
    background-position: -126px -252px
}

.f-country-flags--MT {
    background-position: -147px -252px
}

.f-country-flags--MU {
    background-position: -168px -252px
}

.f-country-flags--MV {
    background-position: -189px -252px
}

.f-country-flags--MW {
    background-position: -210px -252px
}

.f-country-flags--MX {
    background-position: -231px -252px
}

.f-country-flags--MY {
    background-position: -252px -252px
}

.f-country-flags--MZ {
    background-position: -273px 0
}

.f-country-flags--NA {
    background-position: -273px -21px
}

.f-country-flags--NC {
    background-position: -273px -42px
}

.f-country-flags--NE {
    background-position: -273px -63px
}

.f-country-flags--NF {
    background-position: -273px -84px
}

.f-country-flags--NG {
    background-position: -273px -105px
}

.f-country-flags--NI {
    background-position: -273px -126px
}

.f-country-flags--NL {
    background-position: -273px -147px
}

.f-country-flags--NO {
    background-position: -273px -168px
}

.f-country-flags--NP {
    background-position: -273px -189px
}

.f-country-flags--NR {
    background-position: -273px -210px
}

.f-country-flags--NU {
    background-position: -273px -231px
}

.f-country-flags--NZ {
    background-position: -273px -252px
}

.f-country-flags--OM {
    background-position: 0 -273px
}

.f-country-flags--PA {
    background-position: -21px -273px
}

.f-country-flags--PE {
    background-position: -42px -273px
}

.f-country-flags--PF {
    background-position: -63px -273px
}

.f-country-flags--PG {
    background-position: -84px -273px
}

.f-country-flags--PH {
    background-position: -105px -273px
}

.f-country-flags--PK {
    background-position: -126px -273px
}

.f-country-flags--PL {
    background-position: -147px -273px
}

.f-country-flags--PM {
    background-position: -168px -273px
}

.f-country-flags--Pm-UNF {
    background-position: -189px -273px
}

.f-country-flags--PN {
    background-position: -210px -273px
}

.f-country-flags--PR {
    background-position: -231px -273px
}

.f-country-flags--PS {
    background-position: -252px -273px
}

.f-country-flags--PT {
    background-position: -273px -273px
}

.f-country-flags--PW {
    background-position: -294px 0
}

.f-country-flags--PY {
    background-position: -294px -21px
}

.f-country-flags--QA {
    background-position: -294px -42px
}

.f-country-flags--RAINBOW {
    background-position: -294px -63px
}

.f-country-flags--RE {
    background-position: -294px -84px
}

.f-country-flags--RO {
    background-position: -294px -105px
}

.f-country-flags--RS {
    background-position: -294px -126px
}

.f-country-flags--RU {
    background-position: -294px -147px
}

.f-country-flags--RW {
    background-position: -294px -168px
}

.f-country-flags--SA {
    background-position: -294px -189px
}

.f-country-flags--SB {
    background-position: -294px -210px
}

.f-country-flags--SC {
    background-position: -294px -231px
}

.f-country-flags--SD {
    background-position: -294px -252px
}

.f-country-flags--SE {
    background-position: -294px -273px
}

.f-country-flags--SG {
    background-position: 0 -294px
}

.f-country-flags--SH {
    background-position: -21px -294px
}

.f-country-flags--SI {
    background-position: -42px -294px
}

.f-country-flags--SJ {
    background-position: -63px -294px
}

.f-country-flags--SK {
    background-position: -84px -294px
}

.f-country-flags--SL {
    background-position: -105px -294px
}

.f-country-flags--SM {
    background-position: -126px -294px
}

.f-country-flags--SN {
    background-position: -147px -294px
}

.f-country-flags--SO {
    background-position: -168px -294px
}

.f-country-flags--SR {
    background-position: -189px -294px
}

.f-country-flags--SS {
    background-position: -210px -294px
}

.f-country-flags--ST {
    background-position: -231px -294px
}

.f-country-flags--SV {
    background-position: -252px -294px
}

.f-country-flags--SX {
    background-position: -273px -294px
}

.f-country-flags--SY {
    background-position: -294px -294px
}

.f-country-flags--SZ {
    background-position: -315px 0
}

.f-country-flags--TC {
    background-position: -315px -21px
}

.f-country-flags--TD {
    background-position: -315px -42px
}

.f-country-flags--TF {
    background-position: -315px -63px
}

.f-country-flags--TG {
    background-position: -315px -84px
}

.f-country-flags--TH {
    background-position: -315px -105px
}

.f-country-flags--TJ {
    background-position: -315px -126px
}

.f-country-flags--TK {
    background-position: -315px -147px
}

.f-country-flags--TL {
    background-position: -315px -168px
}

.f-country-flags--TM {
    background-position: -315px -189px
}

.f-country-flags--TN {
    background-position: -315px -210px
}

.f-country-flags--TO {
    background-position: -315px -231px
}

.f-country-flags--TR {
    background-position: -315px -252px
}

.f-country-flags--TT {
    background-position: -315px -273px
}

.f-country-flags--TV {
    background-position: -315px -294px
}

.f-country-flags--TW {
    background-position: 0 -315px
}

.f-country-flags--TZ {
    background-position: -21px -315px
}

.f-country-flags--UA {
    background-position: -42px -315px
}

.f-country-flags--UG {
    background-position: -63px -315px
}

.f-country-flags--UM {
    background-position: -84px -315px
}

.f-country-flags--Union_f_outh_merican_ations {
    background-position: -105px -315px
}

.f-country-flags--US {
    background-position: -126px -315px
}

.f-country-flags--UY {
    background-position: -147px -315px
}

.f-country-flags--UZ {
    background-position: -168px -315px
}

.f-country-flags--VA {
    background-position: -189px -315px
}

.f-country-flags--VC {
    background-position: -210px -315px
}

.f-country-flags--VE {
    background-position: -231px -315px
}

.f-country-flags--VG {
    background-position: -252px -315px
}

.f-country-flags--VI {
    background-position: -273px -315px
}

.f-country-flags--VN {
    background-position: -294px -315px
}

.f-country-flags--VU {
    background-position: -315px -315px
}

.f-country-flags--WF {
    background-position: -336px 0
}

.f-country-flags--WS {
    background-position: -336px -21px
}

.f-country-flags--XK {
    background-position: -336px -42px
}

.f-country-flags--YE {
    background-position: -336px -63px
}

.f-country-flags--YT-UNF {
    background-position: -336px -84px
}

.f-country-flags--ZA {
    background-position: -336px -105px
}

.f-country-flags--ZM {
    background-position: -336px -126px
}

.f-country-flags--ZW {
    background-position: -336px -147px
}

.f-announcement-bar {
    display: block;
    position: relative;
    border-bottom: var(--border-width, 0) solid rgb(var(--color-border));
    z-index: 99
}

.f-announcement-bar__container {
    position: relative;
    height: 40px;
}

@media screen and (max-width: 639px) {
    .f-announcement-bar__container .f-slider-controls {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .f-announcement-bar__container .f-slider-controls {
        margin-top: 0;
        max-width: none
    }

    .f-announcement-bar__container .f-slider-controls__button {
        position: absolute;
        transform: translateY(-50%)
    }
}

.f-announcement-bar__container .f-slider-controls__button {
    width: 45px;
    height: 40px;
    border: none !important;
    background-color: rgba(0, 0, 0, 0);
    margin: 0
}

.f-announcement-bar__container .f-slider-controls__button:focus, .f-announcement-bar__container .f-slider-controls__button:active, .f-announcement-bar__container .f-slider-controls__button:hover {
    box-shadow: none;
    color: rgb(var(--color-forceground))
}

.f-announcement-bar__container .f-slider-controls__button-prev {
    left: 40px
}

.f-announcement-bar__container .f-slider-controls__button-next {
    right: 40px
}

.f-announcement-bar__content {
    font-size: calc(var(--font-base-size, 16) * 1px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    line-height: 20px;
    max-height: 40px;
    text-align: center
}

@media screen and (max-width: 639px) {
    .f-announcement-bar__content {
        overflow: hidden;
        display: block;
        max-height: initial;
        margin-right: 0
    }
}

.f-announcement-bar__close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    cursor: pointer;
    z-index: 1
}

.f-announcement-bar__item {
    position: relative;
    width: 100%;
    height: 100%
}

.f-announcement-bar__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.f-scrolling-promotion {
    display: flex;
}

.f-promotion {
    flex: 0 0 auto;
    display: flex;
    align-items: center
}

.f-scrolling-promotion {
    display: flex;
    align-items: center;
    overflow: hidden
}

.f-scrolling-promotion--left .f-promotion--animated {
    animation-name: scrolling-left
}

.f-scrolling-promotion--right .f-promotion--animated {
    animation-name: scrolling-right
}

.f-scrolling-promotion:hover .f-promotion--animated, .f-scrolling-promotion--paused .f-promotion--animated {
    animation-play-state: paused
}

.f-scrolling-promotion-section .container-full {
    padding-left: 0;
    padding-right: 0
}

.f-promotion {
    flex: 0 0 auto;
    display: flex;
    align-items: center
}

.f-promotion__item {
    margin: 0 calc(var(--item-gap-mobile) / 2);
    display: flex;
    align-items: center
}

.f-promotion__item img, .f-promotion__item svg {
    max-width: 100%;
    width: auto;
    height: calc(var(--image-height) * .75)
}

@media (min-width: 750px) {
    .f-promotion__item img, .f-promotion__item svg {
        max-width: 100%;
        height: var(--image-height)
    }
}

@media (min-width: 750px) {
    .f-promotion__item {
        margin: 0 calc(var(--item-gap) / 2)
    }
}

.f-promotion__icon {
    display: inline-flex;
    line-height: 0;
    margin-right: 10px;
    --icon-height: 26px
}

.f-promotion__icon--small {
    --icon-height: 20px
}

.f-promotion__icon--large {
    --icon-height: 32px
}

.f-promotion__icon svg, .f-promotion__icon img {
    width: auto;
    height: var(--icon-height);
    max-width: var(--icon-height);
    fill: currentColor
}

.f-promotion__text {
    color: inherit;
    line-height: 1;
    white-space: nowrap;
    font-size: var(--text-size);
    color: rgb(var(--color-foreground))
}

@media screen and (max-width: 767px) {
    .f-promotion__text {
        font-size: calc(var(--text-size) * .75)
    }
}

.f-promotion--animated {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: var(--duration);
    animation-play-state: running;
    width: max-content;
    will-change: transform, width
}

.f-promotion__item-testimonial {
    width: 300px;
    max-width: 50vw
}

.f-promotion-testimonial__icon {
    display: flex;
    column-gap: .3rem;
    margin: 0 0 .8rem
}

.f-promotion-testimonial__image {
    margin: 0 0 2.4rem
}

@media screen and (max-width: 767px) {
    .f-promotion-testimonial__image {
        margin: 0 0 2rem
    }
}

.f-promotion-testimonial__inner-bottom {
    margin-top: .8rem;
    gap: .8rem 1.2rem
}

.f-promotion-testimonial__author {
    font-weight: 700;
    line-height: 1.5;
    margin: 0
}

.f-promotion-testimonial__bio {
    position: relative;
    z-index: 0;
    color: rgb(var(--color-foreground));
    margin: 0;
    line-height: 1.28
}

.f-promotion-testimonial__bio:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 100%;
    background: currentColor
}

@keyframes scrolling-left {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes scrolling-right {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes scrolling-left-rtl {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes scrolling-right-rtl {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

#MainProduct-quick-view__content {
    overflow: hidden;
}
#MainProduct-quick-view__content .f-section-my{
    margin: 0;
}

.buy-it-now-error-wrapper {
    margin-top: 10px;
}

.product-data-empty {
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
}
/* base-2.css sha256:067edc95e6b3a723af13d3061954671a81dccbf87f71c61b30fd244a2b79a3f6 */
.main-content {
    min-height: 60vh;
}


.uppercase:first-letter {
    text-transform: uppercase;
}

i {
    font-style: normal;
}

.ml-0 {
    margin-left: 0
}

.mt-0 {
    margin-top: 0
}

.mb-0 {
    margin-bottom: 0
}

.mr-0 {
    margin-right: 0
}

.pl-0 {
    padding-left: 0
}

.pt-0 {
    padding-top: 0
}

.pb-0 {
    padding-bottom: 0
}

.pr-0 {
    padding-right: 0
}

.line-0 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 0;
    -webkit-box-orient: vertical
}

.ml-5 {
    margin-left: 5px
}

.mt-5 {
    margin-top: 5px
}

.mb-5 {
    margin-bottom: 5px
}

.mr-5 {
    margin-right: 5px
}

.pl-5 {
    padding-left: 5px
}

.pt-5 {
    padding-top: 5px
}

.pb-5 {
    padding-bottom: 5px
}

.pr-5 {
    padding-right: 5px
}

.line-1 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.ml-10 {
    margin-left: 10px
}

.mt-10 {
    margin-top: 10px
}

.mb-10 {
    margin-bottom: 10px
}

.mr-10 {
    margin-right: 10px
}

.pl-10 {
    padding-left: 10px
}

.pt-10 {
    padding-top: 10px
}

.pb-10 {
    padding-bottom: 10px
}

.pr-10 {
    padding-right: 10px
}

.line-2 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.ml-15 {
    margin-left: 15px
}

.mt-15 {
    margin-top: 15px
}

.mb-15 {
    margin-bottom: 15px
}

.mr-15 {
    margin-right: 15px
}

.pl-15 {
    padding-left: 15px
}

.pt-15 {
    padding-top: 15px
}

.pb-15 {
    padding-bottom: 15px
}

.pr-15 {
    padding-right: 15px
}

.line-3 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.ml-20 {
    margin-left: 20px
}

.mt-20 {
    margin-top: 20px
}

.mb-20 {
    margin-bottom: 20px
}

.mr-20 {
    margin-right: 20px
}

.pl-20 {
    padding-left: 20px
}

.pt-20 {
    padding-top: 20px
}

.pb-20 {
    padding-bottom: 20px
}

.pr-20 {
    padding-right: 20px
}

.line-4 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.ml-25 {
    margin-left: 25px
}

.mt-25 {
    margin-top: 25px
}

.mb-25 {
    margin-bottom: 25px
}

.mr-25 {
    margin-right: 25px
}

.pl-25 {
    padding-left: 25px
}

.pt-25 {
    padding-top: 25px
}

.pb-25 {
    padding-bottom: 25px
}

.pr-25 {
    padding-right: 25px
}

.line-5 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical
}

.ml-30 {
    margin-left: 30px
}

.mt-30 {
    margin-top: 30px
}

.mb-30 {
    margin-bottom: 30px
}

.mr-30 {
    margin-right: 30px
}

.pl-30 {
    padding-left: 30px
}

.pt-30 {
    padding-top: 30px
}

.pb-30 {
    padding-bottom: 30px
}

.pr-30 {
    padding-right: 30px
}

.line-6 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical
}

.ml-35 {
    margin-left: 35px
}

.mt-35 {
    margin-top: 35px
}

.mb-35 {
    margin-bottom: 35px
}

.mr-35 {
    margin-right: 35px
}

.pl-35 {
    padding-left: 35px
}

.pt-35 {
    padding-top: 35px
}

.pb-35 {
    padding-bottom: 35px
}

.pr-35 {
    padding-right: 35px
}

.line-7 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical
}

.ml-40 {
    margin-left: 40px
}

.mt-40 {
    margin-top: 40px
}

.mb-40 {
    margin-bottom: 40px
}

.mr-40 {
    margin-right: 40px
}

.pl-40 {
    padding-left: 40px
}

.pt-40 {
    padding-top: 40px
}

.pb-40 {
    padding-bottom: 40px
}

.pr-40 {
    padding-right: 40px
}

.line-8 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical
}

.ml-45 {
    margin-left: 45px
}

.mt-45 {
    margin-top: 45px
}

.mb-45 {
    margin-bottom: 45px
}

.mr-45 {
    margin-right: 45px
}

.pl-45 {
    padding-left: 45px
}

.pt-45 {
    padding-top: 45px
}

.pb-45 {
    padding-bottom: 45px
}

.pr-45 {
    padding-right: 45px
}

.line-9 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical
}

.ml-50 {
    margin-left: 50px
}

.mt-50 {
    margin-top: 50px
}

.mb-50 {
    margin-bottom: 50px
}

.mr-50 {
    margin-right: 50px
}

.pl-50 {
    padding-left: 50px
}

.pt-50 {
    padding-top: 50px
}

.pb-50 {
    padding-bottom: 50px
}

.pr-50 {
    padding-right: 50px
}

.line-10 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical
}

.ml-55 {
    margin-left: 55px
}

.mt-55 {
    margin-top: 55px
}

.mb-55 {
    margin-bottom: 55px
}

.mr-55 {
    margin-right: 55px
}

.pl-55 {
    padding-left: 55px
}

.pt-55 {
    padding-top: 55px
}

.pb-55 {
    padding-bottom: 55px
}

.pr-55 {
    padding-right: 55px
}


.ml-60 {
    margin-left: 60px
}

.mt-60 {
    margin-top: 60px
}

.mb-60 {
    margin-bottom: 60px
}

.mr-60 {
    margin-right: 60px
}

.pl-60 {
    padding-left: 60px
}

.pt-60 {
    padding-top: 60px
}

.pb-60 {
    padding-bottom: 60px
}

.pr-60 {
    padding-right: 60px
}

.line-12 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical
}

.ml-65 {
    margin-left: 65px
}

.mt-65 {
    margin-top: 65px
}

.mb-65 {
    margin-bottom: 65px
}

.mr-65 {
    margin-right: 65px
}

.pl-65 {
    padding-left: 65px
}

.pt-65 {
    padding-top: 65px
}

.pb-65 {
    padding-bottom: 65px
}

.pr-65 {
    padding-right: 65px
}


.ml-70 {
    margin-left: 70px
}

.mt-70 {
    margin-top: 70px
}

.mb-70 {
    margin-bottom: 70px
}

.mr-70 {
    margin-right: 70px
}

.pl-70 {
    padding-left: 70px
}

.pt-70 {
    padding-top: 70px
}

.pb-70 {
    padding-bottom: 70px
}

.pr-70 {
    padding-right: 70px
}


.ml-75 {
    margin-left: 75px
}

.mt-75 {
    margin-top: 75px
}

.mb-75 {
    margin-bottom: 75px
}

.mr-75 {
    margin-right: 75px
}

.pl-75 {
    padding-left: 75px
}

.pt-75 {
    padding-top: 75px
}

.pb-75 {
    padding-bottom: 75px
}

.pr-75 {
    padding-right: 75px
}


.ml-80 {
    margin-left: 80px
}

.mt-80 {
    margin-top: 80px
}

.mb-80 {
    margin-bottom: 80px
}

.mr-80 {
    margin-right: 80px
}

.pl-80 {
    padding-left: 80px
}

.pt-80 {
    padding-top: 80px
}

.pb-80 {
    padding-bottom: 80px
}

.pr-80 {
    padding-right: 80px
}


.ml-85 {
    margin-left: 85px
}

.mt-85 {
    margin-top: 85px
}

.mb-85 {
    margin-bottom: 85px
}

.mr-85 {
    margin-right: 85px
}

.pl-85 {
    padding-left: 85px
}

.pt-85 {
    padding-top: 85px
}

.pb-85 {
    padding-bottom: 85px
}

.pr-85 {
    padding-right: 85px
}


.ml-90 {
    margin-left: 90px
}

.mt-90 {
    margin-top: 90px
}

.mb-90 {
    margin-bottom: 90px
}

.mr-90 {
    margin-right: 90px
}

.pl-90 {
    padding-left: 90px
}

.pt-90 {
    padding-top: 90px
}

.pb-90 {
    padding-bottom: 90px
}

.pr-90 {
    padding-right: 90px
}


.ml-95 {
    margin-left: 95px
}

.mt-95 {
    margin-top: 95px
}

.mb-95 {
    margin-bottom: 95px
}

.mr-95 {
    margin-right: 95px
}

.pl-95 {
    padding-left: 95px
}

.pt-95 {
    padding-top: 95px
}

.pb-95 {
    padding-bottom: 95px
}

.pr-95 {
    padding-right: 95px
}


.ml-100 {
    margin-left: 100px
}

.mt-100 {
    margin-top: 100px
}

.mb-100 {
    margin-bottom: 100px
}

.mr-100 {
    margin-right: 100px
}

.pl-100 {
    padding-left: 100px
}

.pt-100 {
    padding-top: 100px
}

.pb-100 {
    padding-bottom: 100px
}

.pr-100 {
    padding-right: 100px
}


.line {
    display: inline-block;
    white-space: nowrap
}



.f-w-1-12 {
    width: 8.3333333333%;
}

.f-w-2-12 {
    width: 16.6666666667%;
}

.f-w-3-12 {
    width: 25%;
}

.f-w-4-12 {
    width: 33.3333333333%;
}

.f-w-5-12 {
    width: 41.6666666667%;
}

.f-w-6-12 {
    width: 50%;
}

.f-w-7-12 {
    width: 58.3333333333%;
}

.f-w-8-12 {
    width: 66.6666666667%;
}

.f-w-9-12 {
    width: 75%;
}

.f-w-10-12 {
    width: 83.3333333333%;
}

.f-w-11-12 {
    width: 91.6666666667%;
}

.f-w-12-12 {
    width: 100%;
}


.f-w-1-2 {
    width: 50%;
}

.f-w-1-3 {
    width: 33.3333333333%;
}

.f-w-2-3 {
    width: 66.6666666667%;
}

.f-w-1-4 {
    width: 25%;
}

.f-w-3-4 {
    width: 75%;
}

.f-w-1-5 {
    width: 20%;
}

.f-w-2-5 {
    width: 40%;
}

.f-w-3-5 {
    width: 60%;
}

.f-w-4-5 {
    width: 80%;
}

.f-w-5-5 {
    width: 100%;
}


.f-w-full {
    width: 100%;
}

.f-w-auto {
    width: auto;
}

.f-h-full {
    height: 100%;
}

.f-flex {
    display: flex;
}

.f-items-center {
    align-items: center;
}

.f-justify-end {
    justify-content: flex-end
}

.f-image-error {
    
    
}

.f-topbar.transparent-on-top {
    color: rgb(var(--header-transparent-text-color, #fff))
}

.container-full .f-switcher-dropdown:last-child .f-select-custom--options {
    transform: translateZ(0);
}

.f-topbar.transparent-on-top{
    background-color:rgba(22, 53, 99, 0.1);
}
f-inquiry-icon-bubble {
    display: contents;
}

.f-menu-customer .f-menu-customer__language-currency {
    justify-content: space-between;

}

.f-menu-customer .f-select-custom--options {
    left: 0;
    right: auto;
    transform: translateZ(0);

}





body .f-product-card__tag-name {
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 4px 10px;
    border-radius: 40px;
}

.f-icon-box--small {
    border-top: 1px solid rgb(var(--color-border));
}

.f-icon-box--small .f-icon-box__heading {
    line-height: 26px;
    font-size: 18px;
    margin-bottom: 6px;
}

body .f-footer--block .social-media-links {
    gap: 12px;
    margin-top: 16px;
    padding: 5px 0;
    position: relative;
    z-index: 1;
}

body .f-footer--block .social-media-links a {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}



.f-payment-icons--item {
    display: flex;
    align-items: center;
}

.f-payment-icons--item-icon {
    width: 38px;
    height: auto;

}

.swiper-pagination-bullet {

    display: inline-block;
    background: inherit;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

.swiper-pagination-bullet-active {
    background: inherit;
}

.f-image[style*='--cover-img'] img {
    object-fit: cover;
}


.f-image[style*='--contain-img'] img {
    object-fit: contain;
}

.f-image[style*='--none-img'] img {
    object-fit: none;
}

.f-tooltip__content:first-letter {
    text-transform: uppercase;
}

.f-filter-attr-more {
}

.f-filter-attr-more span {
    cursor: pointer;
    text-transform: uppercase;
    color: #0095fc;

}



.f-facets-search-engine--collapse {
    overflow: hidden;
}


.f-facets-search-engine--expand {
    max-height: 100%;
}

.f-collection--wrapper .f-toolbar--sortby {
    min-height: 28px;
}

.f-filter--widget-content-price {
    width: 100%;
}

.f-product-option .f-attributes-options__checkbox {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

.f-product-option--content .f-product-option--checkbox {
    cursor: pointer;
    position: relative;
    display: flex;
    word-break: break-word;
    line-height: 1.5;
    padding: 10px 0;
    align-items: center;
}

.f-product-option--content .f-product-option--checkbox input[type=checkbox] {
    position: absolute;
    opacity: 1;
    width: 1.6rem;
    height: 1.6rem;
    top: .7rem;
    left: .8rem;
    z-index: -1;
    appearance: none;
    display: none;
}

.f-product-option--content .f-product-option--checkbox {
    border: none;
}

.f-product-option--content .f-product-option--checkbox > svg {
    margin-right: 12px;
    flex-shrink: 0;
    opacity: .3;
}

.f-product-option--content .f-product-option--checkbox input[type=checkbox]:checked ~ svg {
    opacity: 1;
}


.f-product-option--content .f-product-option--checkbox svg > path {
    display: none;
}

.f-product-option--content .f-product-option--checkbox input[type=checkbox]:checked ~ svg > path {
    display: block;
}

.f-product-option--button .f-product-option--color {
    background: var(--option-bg-color-value);
    width: var(--option-color-width-value, 50px);
    height: var(--option-color-height-value, 50px);
    padding: 2px;

}

.f-product-option--button .f-product-option--color img {
    border-radius: 5px;
}

.f-product-option--button .f-product-option--node input:checked + .f-product-option--color {
    background: var(--option-bg-color-value);
}

.f-product-option--button .f-product-option--node__upload {
    border-style: dashed;
    width: 75px;
    height: 75px;
    padding: 0;
    position: relative;
}

.f-product-option--button .f-upload-file__icon {
    width: 14px;

}

[style*='--product-aspect-ratio'] {
    
    padding-top: calc(100% / (0.0001 + var(--product-aspect-ratio, 16 / 9)))

}

[style*='--product-aspect-ratio'] img {
    position: absolute;
    left: 0;
    top: 0;
}

.f-press__content.swiper-initialized {
    opacity: 1;
}

responsive-image.f-image-loaded.f-product-aspect-ratio {
    padding-top: 0;
}

responsive-image.f-image-loaded.f-product-aspect-ratio img {
    position: static;
}

.notification.success {
    background-color: rgba(var(--color-success-bg), 0.5); 
    
    background-color: color-mix(in oklch, rgb(var(--color-success-bg)) 50%, white);
    color: rgb(var(--color-success))
}

.form-ask-inquire-captcha {
    width: 160px;
    height: fit-content;
    cursor: pointer;
}

#contact-form-ask .notification--error-message {
    text-align: start;
}

#contact-form-ask .notification.show {
    opacity: 1;
    max-height: 100%;
}

.f-size-chart-box {
}

.f-size-chart-box .dialog__header {
    font-size: 18px;
    border-bottom: 1px solid rgb(var(--color-border));
    padding: 15px;
}

.f-size-chart-box .f-modal--close {
    top: 15px
}

.f-size-chart-box .box-card {
    max-height: calc(95vh - 120px);
    overflow: auto;
    padding: 30px;
}

.f-size-chart-box .card-content-item {
    margin-bottom: 24px;
    color: rgb(var(--color-foreground));
}

.f-size-chart-box .card-content-item .image-slot {
    padding-top: 50px;
    background-color: #F7F8FA;
    width: 100%;
    height: 260px;
    text-align: center;
    color: #D3D3D4;
}

.f-size-chart-box .card-content-item .image-slot .el-icon-picture {
    font-size: 125px;
    color: #cccccc;
}

.f-size-chart-box .table-view {
    margin-bottom: 24px;
}

.f-size-chart-box .table-view .table-header {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    color: rgb(var(--color-foreground));
}

.f-size-chart-box .table-view .table-header .header-title {
    margin-top: 2px;
    display: inline-block;
    line-height: 1.6;
    word-break: break-word;
    padding-right: 20px;
}

.f-size-chart-box .table-view .table-header .size-chart-convert {
    border: 1px solid #000;
    background-color: #ffffff;
    height: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-shrink: 0;
}

.f-size-chart-box .table-view .table-header .size-chart-convert span {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;
}

.f-size-chart-box .table-view .table-header .size-chart-convert .active-size {
    color: #fff;
    background-color: #000;
}

.f-size-chart-box .table-view .edit-table {
    width: 100%;
    overflow: auto;
}

.f-size-chart-box .table-view .edit-table table {
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
}

.f-size-chart-box .table-view .edit-table td {
    padding: 3px 8px;
    font-size: 14px;
    color: #606266;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.f-size-chart-box .table-view .edit-table .td-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 40px;
}

.f-size-chart-box .table-view .table-footer {
    margin-top: 24px;
    font-size: 0.8em;
    color: rgb(var(--color-foreground-secondary));
}

product-product-group .f-product-option--button .f-product-option--node__label {
    font-size: var(--font-base-size);
    min-width: 45px
}

product-product-group .f-product-option--button .f-product-option--node__label[data-option-type="image"] {
    font-size: var(--font-base-size);
    width: 75px;
    height: 75px;
    background-size: cover;
}

.f-product-option--node__label.has-bg-img {
    border-radius: 5px;
}

.f-product-option--node__label[data-option-type=image].has-bg-img {
    background-repeat: no-repeat;
}

.f-product-option--node__label[data-option-type=swatch_color].has-bg-img {
    background-repeat: no-repeat;
}


.product-video-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    background-color: #f5f7f8;
}

.product-video-slide.show {
    opacity: 1;
    z-index: 1;
}

deferred-media {
    

}

variant-picker .f-product-option--swatch.f-color-image-size-small .f-product-option--node__label[data-option-type=color] {
    width: 32px;
    height: 32px;
}

variant-picker .f-product-option--swatch.f-color-image-size-large .f-product-option--node__label[data-option-type=color] {
    width: 45px;
    height: 45px;
}

.f-color-image-tooltip {
    margin-top: 12px;
    display: inline-block;
    font-size: 13px;
    border-radius: 8px;
    padding: 5px 6px;
    line-height: 1.4;
    text-transform: capitalize;
    background: linear-gradient(343deg, #e5ff7875, #d7cbf182);
    color: #00f;
}

.f-prod-list-attr {
    font-weight: 400;
    border-top: 1px solid rgb(var(--color-border));
    border-bottom: 1px solid rgb(var(--color-border));
    padding: 15px 0 15px 20px;

    li {
        list-style: disc;
        line-height: 1.6;
    }
}

.hidden-price-tip-text {
    text-transform: uppercase;
    color: var(--color-text-price-sale);
}

.f-image-comment-list-preview {
    .pswp__img {
        object-fit: scale-down;
    }
}


.check-mode-drag-item-block a {
    pointer-events: none;
}

.fec-payment-button__button .f-spinner-icon {
    display: none;
}

.fec-payment-button__button.f-buy-now-text {
    visibility: visible;
}

.fec-payment-button__button.f-spinner-loading .f-buy-now-text {
    visibility: hidden;
}

.fec-payment-button__button.f-spinner-loading .checkout-navigation__btn-text {
    visibility: hidden;
}

.fec-payment-button__button.f-spinner-loading .f-spinner-icon {
    display: flex;
}

.fec-payment-button__button.f-spinner-loading .f-spinner-icon .animate-spin {
    display: block
}



.checkout-skeleton-custom {
    width: var(--skeleton-width);
    height: var(--skeleton-height);
    border-radius: 4px;
    --skeleton-bg-color: rgba(var(--color-background), 0.6);
    background: rgba(var(--color-background-secondary), 1) linear-gradient(
            to right,
            rgba(var(--color-background-secondary), 1) 0%,
            var(--skeleton-bg-color) 20%,
            rgba(var(--color-background-secondary), 1) 40%,
            rgba(var(--color-background-secondary), 1) 100%
    ) no-repeat;


    
    
    
    
    
    
    


    
    animation: skeleton-gradient 1s linear infinite forwards,
    fadeInUp 0.6s ease forwards;
    opacity: 0; 
    transform: translateY(10px); 

}

@keyframes skeleton-gradient {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.f-accordion--item.open .f-footer--block-content {
    opacity: 1;
}

.f-color-default, .f-color-dark, .f-color-footer, .f-product-card__tag-name, .f-color-badge-hot, .f-color-badge-new, .f-color-badge-sale {
    color: rgb(var(--color-foreground));
    background-color: rgb(var(--color-background));
}

.f-product-card__reviews {
    color: var(--common-star-color, #108474);

}

.f-product-card__reviews .stars-box .f-icon--star {
    margin-right: 3px;
}

.f-product-reviews-box {
    display: flex;
    align-items: center;
    color: var(--common-star-color, #108474);
    margin-left: 0;
}

.f-product-reviews-box .star-rating {
    margin-left: 0;
    margin-right: 0;
}

f-product-reviews {
    display: block;
}

.f-product-reviews-box .f-view-btn {
    cursor: pointer;
    margin-left: 10px;
    text-decoration: underline;
    color: rgb(var(--color-foreground));
}

.f-product-reviews-box .f-star-count {
    margin-left: 3px;
}


f-product-custom-attributes .f-upload-preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

f-product-custom-attributes .f-upload-preview .f-upload-preview__item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

f-product-custom-attributes .f-upload-file__box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

f-product-custom-attributes .f-remove-image {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .3);
    padding: 0 6px;
    color: #fff;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

f-product-custom-attributes .f-upload-preview .f-upload-preview__item:hover .f-remove-image {
    display: flex;
    align-items: center;
    justify-content: center;

}

f-product-custom-attributes .f-upload-preview .f-upload-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#product-custom-attributes .required-text {
    color: rgb(var(--color-error));
    font-size: 14px;
    margin-top: 3px;
}

#product-custom-attributes .upload-status {
    transition: all;
    animation: upload-status-spin 1.6s linear infinite;
}

f-product-custom-attributes .attr-total-price-box {
    margin-top: 20px;
    border-bottom: 1px solid rgb(var(--color-border));
    border-top: 1px dashed rgb(var(--color-border));
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.f-product-option--content-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes upload-status-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.f-upload-preview__file {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-product-image responsive-image {
    margin: 0 auto;
}

.pointer {
    cursor: pointer;
}

.created-code {
    position: relative;
    margin-top: 0 !important;
    margin-left: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    cursor: pointer;
}

.created-code .tip-text {

    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%) translateX(10px); 
    background: #000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}


.created-code:hover .tip-text {

    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}


.created-code .tip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}

f-featured-collection .f-mixed-layout__wrapper {
    max-width: 100vw;
}

.header__account_a {
    display: block;
}

#f-theme .main-product__block-collapsible_tab {
    margin-top: 12px;
}

#f-theme .main-product__block-collapsible_tab + .main-product__block-collapsible_tab {
    margin-top: 0;
}

#f-theme .f-collapsible--button {
    padding-top: 20px;
    padding-bottom: 20px;
}

.f-product-card__description {
    display: none;
}


@media (max-width: 1024px) {
    .container-cart-skeleton .checkout-skeleton-custom {
        width: 20%; 
    }

    
    .container-cart-skeleton .checkout-skeleton-custom:nth-child(n+3) {
        display: none;
    }
}


.attribute-option {
    display: inline-block;
    position: relative;
    top: 1px;
    cursor: pointer;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    color: #6C757D;
    border: 1px solid #DEE2E6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.attribute-option:hover {
    opacity: 0.85;
}

.attribute-option .chose-options-button {
    padding: 4px 10px;
    min-height: 33px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;

}

.attribute-option .chose-options-button .placeholder-text {
    display: inline-block;
}

.attribute-option.las-theme-option {
    top: 0;
}

.attribute-option.ell-theme-option {
    top: -2px;
}

.attribute-option.grey-theme-option {
    background: #363636;
}

.attribute-option.grey-theme-option .placeholder-text {
    color: var(--color_title);
}

.attribute-option.error-border {
    border: 1px solid red; 
}

.buy-item-select .attribute-option {
    color: #6C757D;
    text-transform: capitalize;
}

f-upload-img-snippet .upload-icon .icon.loading {
    display: block;
    animation: upload-status-spin 1.6s linear infinite;
}



.customer-vip-price-box {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.customer-vip-price-box .customer-vip-price {
    font-weight: 400;
    background: #FF875E;
    border-radius: 4px;
    font-size: 13px;
    color: #FFFFFF;
    
    font-family: Lato, sans-serif;
    display: inline-block;
    padding: 3px 5px;
    margin-left: 7px;
    line-height: 1;
}

@media (max-width: 769px) {
    .customer-vip-price-box .customer-vip-price {
        font-size: 12px;
    }
}

.f-product-option--select-wrapper.product-select {
    position: relative;
}

.f-product-option--select-wrapper.product-select .f-product-option--select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.f-cart-item__price-discounted .f-price {
    gap: 0;
}

.f-cart-item__price-discounted .rebate-original-price .f-price__regular {
    color: rgb(var(--color-price-sale));
}

.f-wap-show {
    display: none !important;
}

.f-pc-show {
    display: block !important;
}

@media (max-width: 769px) {
    .f-wap-show {
        display: block !important;
    }

    .f-pc-show {
        display: none !important;
    }
}

.relative {
    position: relative;
}


.f-form-ask-question__wrapper {
    padding: 24px;
    text-align: center
}

.f-form-ask-question__title {
    margin-bottom: 18px;
    font-size: 36px;
    color: rgb(var(--color-foreground))
}

.f-form-ask-question__desc {
    margin-bottom: 24px;
    font-size: 14px;
    color: rgb(var(--color-foreground))
}

.f-form-ask-question__note {
    font-style: italic;
    margin-bottom: 12px
}

.f-form-ask-question__footer {
    text-align: start;
}

.f-form-ask-question__wrapper .table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(var(--color-foreground));
    background-color: rgb(var(--color-background-secondary));
    height: 50px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
}

.f-form-ask-question__wrapper .table-header.active svg {
    transform: rotate(180deg);
}

.f-inquire-style .table-body {
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
}

.f-inquire-style .table-body.down {
    height: 100%;
}

.f-inquire-style .table-body.down .product-item {
    border-bottom: 1px solid rgb(var(--color-border));
}

.f-inquire-style .table-body .product-item {
    border-bottom: 1px solid rgb(var(--color-border));
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 20px;
    width: 100%;
    padding: 20px;
}

.f-inquire-style .table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    color: rgb(var(--color-foreground));
    background-color: rgb(var(--color-background-secondary));
    height: 50px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
}

.f-inquire-style .table-header.active svg {
    transform: rotate(180deg);
}

.f-inquire-style .table-header svg {
    transition: all .3s ease;
}

.f-inquire-style .preview_box {
    position: relative;
}

.f-inquire-style .preview_box .down-attr {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
}

.f-inquire-style .preview_box:not(.down) .add-item-info:nth-child(n+4) {
    display: none;
}

.f-inquire-style .preview_box .down-attr i {
    transition: all .3s ease;
}

.f-inquire-style .preview_box.down .down-attr i {
    transform: rotate(180deg);
}

.f-inquire-style .add-item-info {
    margin-bottom: 10px;
}

.f-inquire-style .attr-name {
    font-size: 12px;
    opacity: .7;
    margin-bottom: 4px;
}

.f-inquire-style .attr-val {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
}

.f-inquire-style .attr-price {
    opacity: .7;
}

.f-inquire-style .remove {
    margin-top: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.f-inquire-style .remove svg {
    flex-shrink: 0;
}

.f-inquire-style .empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.f-inquire-style .empty-icon {
    margin-bottom: 20px;
    opacity: .5;
}

.f-inquire-style .empty-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.f-inquire-style .empty-desc {
    font-size: 14px;
    opacity: .7;
}

@media (max-width: 769px) {

    .f-inquire-style .table-body .product-item {
        padding: 0 0 10px 0;
    }

    .f-inquire-style .table-header {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
    }

}


.f-inquire-style .table-box {
    display: flex;
    align-items: center;
    text-align: start;
}

.f-inquire-style .table-box .c-product {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    text-align: start;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product {
        padding-right: 0;
    }
}

.f-inquire-style .table-box .c-product .flex {
    flex: 1;
}

.f-inquire-style .table-box .c-product .img-border {
    overflow: hidden;
    flex-shrink: 0;
}

.f-inquire-style .table-box .c-product .img-border.pc {
    display: block;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product .img-border.pc {
        display: none;
    }
}

.f-inquire-style .table-box .c-product .img-border.wap {
    display: none;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product .img-border.wap {
        display: block;
    }
}

.f-inquire-style .table-box .c-product .info-box {
    flex: 1;
    padding-left: 1.5rem;
    position: relative;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product .info-box {
        padding-left: 15px;
        padding-right: 45px;
    }
}

.f-inquire-style .table-box .c-product .info-box .title {
    font-size: 16px;
    color: #000;
    width: 100%;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product .info-box .title {
        font-size: 14px;
    }
}

.f-inquire-style .table-box .c-product .info-box .variant {
    margin-top: 10px;
    font-size: 14px;
}

.f-inquire-style .table-box .c-product .info-box .remove {
    cursor: pointer;
    font-size: 18px;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border-radius: 500px;
    background: #f5f5f8;
    color: #636363;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease-in-out;
    transition-property: color, background-color;
}

@media (max-width: 769px) {
    .f-inquire-style .table-box .c-product .info-box .remove {
        background-color: #ffffff;
        position: absolute;
        right: 0;
        top: 50%;
        margin: 0 !important;
        transform: translateY(-50%);
    }
}

.f-inquire-style .preview_box.down {
    height: 26px;
    overflow: hidden;
}

.f-inquire-style .preview_box .down-attr {
    margin-top: 3px;
    display: inline-block;
    color: #333333;
    margin-bottom: 5px;
    text-decoration: underline;
    text-decoration-color: #999999;
    text-underline-offset: 3px;
    cursor: pointer;
}

.f-inquire-style .preview_box .add-item-info {
    display: flex;
    align-items: flex-start;
}

.f-inquire-style .preview_box .add-item-info .attr-name {
    flex-shrink: 0;
}

.f-inquire-style .preview_box .add-item-info .attr-name:after {
    content: '：';
}

.f-inquire-style .preview_box .add-item-info .attr-val-box {
    flex: 1;
}

.f-inquire-style .preview_box .add-item-info .attr-val {
    word-break: break-all;
    width: auto;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.f-inquire-style .preview_box .attr-price {
    color: #e4393c;
}

.f-inquire-style .custom-tooltip-item-size-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.f-inquire-style .custom-tooltip-item-size-box .size-trigger {
    cursor: pointer;
}

.f-inquire-style .custom-tooltip-item-size-box .size-trigger .el-icon-arrow-right {
    transition: transform 0.3s ease;
}

.f-inquire-style .custom-tooltip-item-size {
    display: none;
    margin-top: 5px;
}

.f-inquire-style .custom-tooltip-item-size p {
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 3px;
}

.f-inquire-style .uppercase {
    text-transform: uppercase;
}

.f-inquire-style .pointer {
    cursor: pointer;
}

.f-inquire-style .flex {
    display: flex;
}

.f-inquire-style .line-8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.f-inquire-style .mt-2-rem {
    margin-top: 2rem;
}

@media (max-width: 769px) {
    .f-inquire-style .mt-2-rem {
        margin-top: 0;
    }
}

.f-inquire-style .top {
    align-items: flex-start;
}

.f-inquire-style .empty-product {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

.f-primary-bg-color {
    background-color: rgb(var(--color-button));
}

.f-primary-color {
    color: rgb(var(--color-button));
}
.f-border-line{
    border-bottom: 1px solid rgba(var(--color-border), 0.5);
}
.f-select-custom--trigger-text{
    white-space: nowrap;
}
.f-collection-tag-filter-ul:has(.f-facet--color) {
    padding-top: 24px;
    overflow: auto;
}
.f-collection-tag-filter-ul .f-tooltip__content{
    padding: .25rem .35rem;
    font-size: 10px;
    line-height: 1;
    bottom: calc(100% + 4px)!important;
}
/* reliabulkbag-mobile-contact.css sha256:d208f3cfaca7396ecd8d1cdbcae35aa0ff79751091dc03ca3c2b0852935eed6a */

@media (max-width: 769px) {
  sidebar-contact-information:is(.h5-position-right-bottom, .h5-position-left-bottom) > .sidebar {
    display: none;
    top: auto;
    bottom: 60px;
    transition: none;
  }
  sidebar-contact-information:is(.h5-position-right-bottom, .h5-position-left-bottom) > .sidebar.active {
    display: block;
    bottom: 60px;
  }
  sidebar-contact-information:is(.h5-position-right-bottom, .h5-position-left-bottom) > .icon-plus {
    background: #0C7A86;
    border-color: #0C7A86;
    box-shadow: 0 4px 16px rgb(18 48 74 / 18%);
  }
  sidebar-contact-information :is(.icon-plus, a.item):focus-visible {
    outline: 3px solid #12304A;
    outline-offset: 3px;
  }
}

/* reliabulkbag-home-polish.css sha256:879de7287c90b283d04ddafbfddaee2f733b013384c72a330791c78bcc080b07 */

body { --rb-ink:#153248; --rb-muted:#526675; --rb-line:#dce5eb; --rb-teal:#147d87; }
body .f-header__desktop, body .f-header__mobile { border-bottom:1px solid #e4ebef; }
body .f-topbar__inner { min-height:34px; padding-block:6px; font-size:12px; line-height:20px; }
body .f-topbar__left { width:auto; flex:1; gap:24px; }
body .f-topbar__center { width:auto; flex:none; font-size:12px; letter-spacing:.035em; }
body .f-topbar__right:empty { display:none; }
body .f-topbar__link { font-size:12px; margin:0; }
body .f-topbar .f-svg-icon { width:13px; height:13px; }
body .f-header__desktop .f-header__inner { min-height:86px; gap:28px; }
body .f-header__desktop.logo-left-menu-center .f-header__left { width:auto; flex:0 0 auto; }
body .f-header__desktop.logo-left-menu-center .f-header__center { flex:1 1 auto; width:auto; justify-content:flex-end; }
body .f-header__desktop.logo-left-menu-center .f-header__right { width:auto; flex:0 0 auto; }
body .f-header__desktop .f-logo { width:auto; }
body .f-header__desktop .f-logo strong { color:var(--rb-ink); font-size:25px; line-height:1; letter-spacing:-1px; font-weight:750; }
body .f-header__menu .f-menu { gap:5px; }
body .f-header__menu .f-menu__link--main { font-size:14px; font-weight:600; padding:14px 12px; white-space:nowrap; }
body .f-header__menu .rb-nav-parent-link { padding-right:3px; }
body .f-header__menu .rb-nav-arrow-button { padding:14px 9px 14px 5px; }
body .f-header__menu .rb-nav-arrow-button span,
body .f-header__menu .rb-nav-chevron { display:inline-block; width:6px; height:6px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; font-size:0; transform:rotate(45deg) translateY(-2px); }
body .f-header__menu .rb-nav-chevron { margin-left:10px; }
body .f-header__menu .f-menu__item:last-child > .f-menu__link--main { background:var(--rb-ink); color:white; border-radius:3px; padding:12px 19px; margin-left:12px; }
body .f-header__menu .f-menu__item:last-child > .f-menu__link--main:hover { background:var(--rb-teal); }
body .f-header__menu .f-menu__item:last-child > .f-menu__link--main:after { display:none; }
body .f-header__menu .f-mega-menu { background:#fff; color:var(--rb-ink); border:1px solid var(--rb-line); border-radius:3px; box-shadow:0 16px 40px #15324816; }
body .f-header__menu .f-mega-menu__column { background:#fff; color:var(--rb-ink); border:1px solid var(--rb-line); border-radius:3px; box-shadow:0 16px 40px #15324816; }
body .f-header__menu .f-sub-menu .f-menu__link { color:var(--rb-ink); font-size:14px; line-height:1.5; padding-top:12px; padding-bottom:12px; }
body .f-header__menu .f-menu > li:nth-child(3) > .f-mega-menu { width:300px; }
body .f-header__menu .f-sub-menu .f-menu__link:hover { color:var(--rb-teal); background:#f3f7f9; }
body .f-header__menu .rb-nav-child-button { top:2px; }
body .f-header__menu button:focus-visible, body .f-header__menu a:focus-visible { outline:2px solid var(--rb-teal); outline-offset:3px; }

body.template-home .f-section__heading { color:var(--rb-ink); font-size:clamp(28px,2.6vw,38px); line-height:1.18; letter-spacing:-.025em; text-wrap:balance; }
body.template-home .f-section__subheading { font-size:11px; line-height:1.5; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--rb-teal); }
body.template-home .f-section__header { margin-bottom:32px; }
body.template-home .f-section__description { max-width:740px; font-size:15px; line-height:1.75; color:var(--rb-muted); margin-top:14px; }
body.template-home .f-section__header.m\:text-center .f-section__description { margin-inline:auto; }
body.template-home .f-button { font-weight:600; border-radius:3px; }
body.template-home .f-slide__subtitle { font-size:12px; letter-spacing:.13em; text-transform:uppercase; }
body.template-home .rb-home-intro .f-custom-content__container > .f-gradient { display:grid; grid-template-columns:1fr 1.1fr; gap:8%; align-items:start; }
body.template-home .rb-home-intro .f-section__header { margin:0; }
body.template-home .rb-home-intro .f-section__heading { max-width:18ch; }
body.template-home .rb-home-intro .f-richtext__description { margin-top:0; color:var(--rb-muted); font-size:16px; line-height:1.85; }
body.template-home .rb-home-intro .f-richtext__button { margin-top:22px; }
body.template-home .rb-home-intro .f-custom-content__wrapper { margin:0; }
body.template-home .rb-home-intro .f-custom-content__block { padding:0; }
body.template-home .rb-home-categories { border-top:1px solid #eaf0f3; }
body.template-home .rb-home-categories .f-collection-card { height:100%; }
body.template-home .rb-home-categories .f-collection-card__image { border:1px solid var(--rb-line); background:#f7f9fa; border-radius:3px; }
body.template-home .rb-home-categories .f-collection-card__title { font-size:17px; font-weight:600; line-height:1.4; color:var(--rb-ink); }
body.template-home .rb-home-products { background:#f4f7f9; }
body.template-home .rb-home-products .f-featured-collection { background:transparent; }
body.template-home .rb-home-products .f-product-card { height:100%; background:#fff; border:1px solid var(--rb-line); border-radius:3px; overflow:hidden; }
body.template-home .rb-home-products .f-product-card__media { padding:12px; }
body.template-home .rb-home-products .f-product-card__content { padding:16px 18px 20px; border-top:1px solid #edf1f4; }
body.template-home .rb-home-products .f-product-card__title { margin:0; min-height:3em; }
body.template-home .rb-home-products .f-product-card__name { color:var(--rb-ink); font-size:15px; line-height:1.5; font-weight:600; -webkit-line-clamp:unset; display:block; }
body.template-home .rb-home-products .f-product-card__price:has(f-product-prices:empty) { display:none; }
body.template-home .rb-home-spec .f-image-with-text__inner { align-items:center; }
body.template-home .rb-home-spec .f-content-box__heading { color:var(--rb-ink); font-size:28px; line-height:1.25; letter-spacing:-.02em; }
body.template-home .rb-home-spec .f-content-box__description { color:var(--rb-muted); font-size:15px; line-height:1.75; }
body.template-home .rb-home-spec .f-image-with-text__image-first, body.template-home .rb-home-spec .f-image-with-text__image-second { border:1px solid var(--rb-line); border-radius:3px; }
body.template-home .rb-home-spec .tab-labels { gap:18px; }
body.template-home .rb-home-spec .tab-labels [data-tab-label] { font-size:13px; line-height:1.5; padding-bottom:12px; font-weight:600; }
body.template-home .rb-home-applications .f-services-style__wrapper,
body.template-home .rb-home-guides .f-services-style__wrapper { border:1px solid var(--rb-line); border-radius:3px; height:100%; overflow:hidden; }
body.template-home .rb-home-applications .f-services-style__image,
body.template-home .rb-home-guides .f-services-style__image { height:220px; background:#fff; }
body.template-home .rb-home-applications .f-services-style__image responsive-image,
body.template-home .rb-home-guides .f-services-style__image responsive-image { height:100%; padding-bottom:0; }
body.template-home .rb-home-applications .f-services-style__image img,
body.template-home .rb-home-guides .f-services-style__image img { object-fit:contain; padding:14px; }
body.template-home .rb-home-applications .f-services-style__content,
body.template-home .rb-home-guides .f-services-style__content { padding:24px; align-items:stretch; }
body.template-home .rb-home-applications .f-services-style__content-inner,
body.template-home .rb-home-guides .f-services-style__content-inner { display:flex; flex-direction:column; width:100%; height:100%; }
body.template-home .rb-home-applications .f-card__title,
body.template-home .rb-home-guides .f-card__title { font-size:21px; line-height:1.3; color:var(--rb-ink); letter-spacing:-.02em; }
body.template-home .rb-home-applications .f-card__description,
body.template-home .rb-home-guides .f-card__description { color:var(--rb-muted); font-size:14px; line-height:1.75; margin-top:12px; }
body.template-home .rb-home-applications .f-card__button,
body.template-home .rb-home-guides .f-card__button { font-size:13px; font-weight:600; color:var(--rb-teal); margin-top:auto; padding-top:20px; }
body.template-home .rb-home-enquiry .f-section__heading { color:#fff; }
body.template-home .rb-home-enquiry .f-section__subheading { color:#88d4d8; }
body.template-home .rb-home-enquiry .f-section__description { color:#d5e1e9; }
body.template-home .rb-home-enquiry .f-section__header { max-width:850px; margin:0 auto 36px; }
body.template-home .rb-home-enquiry .f-custom-content__wrapper { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; margin:0; }
body.template-home .rb-home-enquiry .f-custom-content__block { width:auto; padding:0; align-items:stretch; }
body.template-home .rb-home-enquiry .f-custom-content__block-inner { border:1px solid #496276; border-top:2px solid #53b5bf; background:#ffffff05; padding:28px; }
body.template-home .rb-home-enquiry .f-richtext { display:flex; flex-direction:column; height:100%; }
body.template-home .rb-home-enquiry .f-richtext__subtitle { color:#88d4d8; font-size:11px; letter-spacing:.12em; font-weight:700; margin:0 0 20px; }
body.template-home .rb-home-enquiry .f-richtext__title { font-size:24px; line-height:1.3; letter-spacing:-.02em; margin:0; color:white; }
body.template-home .rb-home-enquiry .f-richtext__description { font-size:14px; line-height:1.8; margin-top:16px; color:#d5e1e9; }
body.template-home .rb-home-enquiry .f-richtext__button { margin-top:auto; padding-top:24px; }
body.template-home .rb-home-enquiry .f-button { background:#fff; border-color:#fff; color:var(--rb-ink); }
body.template-home .rb-home-enquiry .f-button:hover { background:#d8f0f1; border-color:#d8f0f1; }
body.template-home .rb-home-faq .f-collapsible__content-wrapper { display:grid; grid-template-columns:.7fr 1.3fr; gap:7%; }
body.template-home .rb-home-faq .f-section__heading { max-width:17ch; }
body.template-home .rb-home-faq .f-collapsible--button { font-size:17px; line-height:1.5; padding-block:20px; color:var(--rb-ink); }
body.template-home .rb-home-faq .f-collapsible--content { color:var(--rb-muted); font-size:15px; line-height:1.75; }
body.template-home .rb-home-contact .f-contact-content-box { align-items:flex-start; gap:7%; display:flex; }
body.template-home .rb-home-contact .f-contact-form__main { width:52%; flex:0 0 52%; padding:36px; background:#f3f7f9; border:1px solid var(--rb-line); border-radius:3px; }
body.template-home .rb-home-contact .f-contact-2-form__info { width:41%; flex:0 0 41%; padding:8px 0 0; }
body.template-home .rb-home-contact .f-contact-form__heading { font-size:28px; color:var(--rb-ink); line-height:1.25; letter-spacing:-.025em; }
body.template-home .rb-home-contact .f-contact-form__description { color:var(--rb-muted); font-size:14px; line-height:1.75; margin-top:14px; }
body.template-home .rb-home-contact .f-info-box__subtitle { color:var(--rb-teal); font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
body.template-home .rb-home-contact .f-info-box__title { font-size:36px; line-height:1.2; letter-spacing:-.025em; color:var(--rb-ink); }
body.template-home .rb-home-contact .f-info-box__description { color:var(--rb-muted); font-size:15px; line-height:1.75; max-width:38ch; }
body.template-home .rb-home-contact .f-info-box-frid { margin-top:30px; display:grid; grid-template-columns:1fr 1fr; gap:24px; }
body.template-home .rb-home-contact .f-info-box--style-2 { display:block; grid-column:auto; grid-row:auto; margin:0; padding:18px 0 0; border-top:1px solid var(--rb-line); border-left:0; }
body.template-home .rb-home-contact .f-info-box-frid > .f-info-box:before,
body.template-home .rb-home-contact .f-info-box-frid > .f-info-box:after { display:none; }
body.template-home .rb-home-contact .f-info-box__step-title,
body.template-home .rb-home-contact .f-info-box__content { grid-column:auto; grid-row:auto; }
body.template-home .rb-home-contact .f-info-box__step { display:none; }
body.template-home .rb-home-contact .f-info-box__step-title { color:var(--rb-muted); font-size:12px; letter-spacing:.02em; font-weight:600; padding:0; margin:0 0 6px; }
body.template-home .rb-home-contact .f-info-box__content { font-size:14px; line-height:1.65; margin:0; padding:0; overflow-wrap:anywhere; color:var(--rb-ink); }
body.template-home .rb-home-contact .form-field { border:1px solid #cbd8e0; background:white; border-radius:2px; font-size:14px; }
body.template-home .rb-home-contact .form-field:focus { border-color:var(--rb-teal); outline:2px solid #147d8730; }
body.template-home .rb-home-contact .f-contact-submit { width:100%; min-height:46px; }
body.template-home .rb-home-contact .rb-form-label { display:block; font-size:12px; font-weight:600; color:var(--rb-ink); margin-bottom:7px; }
body.template-home .rb-home-contact .f-contact-form__form-fields { margin-top:0; }
body.template-home .rb-home-contact .notification:empty,
body.template-home .rb-home-contact .notification:has(ul:empty) { margin-bottom:0; }
body.template-home .rb-home-spec [role=tab]:focus-visible { outline:2px solid var(--rb-teal); outline-offset:3px; }
body .f-footer--middle { border-top:1px solid #314d61; }
body .f-footer--block-title { font-size:16px; font-weight:600; letter-spacing:0; }
body .f-footer--block-custom_text .f-footer--block-title { font-size:24px; letter-spacing:-.8px; }
body .f-footer--block-content { font-size:13px; line-height:1.85; color:#d7e3eb; }
body .f-footer--block-content p { margin-bottom:12px; }
body .f-footer--bottom { border-top:1px solid #314d61; }
body .f-footer__copyright { font-size:12px; color:#bccdd9; }

@media(min-width:1024px) and (max-width:1279px) {
  body .f-header__desktop .f-header__inner { gap:16px; }
  body .f-header__desktop .f-logo strong { font-size:22px; }
  body .f-header__menu .f-menu { gap:0; }
  body .f-header__menu .f-menu__link--main { font-size:12px; padding-inline:9px; }
  body .f-header__menu .f-menu__item:last-child > .f-menu__link--main { margin-left:4px; padding-inline:14px; }
}
@media(min-width:1024px) {
  body.template-home .rb-home-products [data-products-container] { grid-template-columns:repeat(4,minmax(0,1fr)); }
  body.template-home .rb-home-products .f-product-card__main-image responsive-image { height:240px; }
  body.template-home .rb-home-products .f-product-card__main-image img { object-fit:contain; }
}
@media(max-width:1023px) {
  body .f-menu-mobile__item > button.f-menu-mobile__link { padding-left:16px; padding-right:50px; width:100%; text-align:left; }
  body .f-menu-customer__wrapper { display:none; }
  body .f-header__mobile .f-logo strong { color:var(--rb-ink); font-size:22px; letter-spacing:-.7px; }
  body .f-header__mobile { background:#fff; color:var(--rb-ink); min-height:70px; }
  body.template-home .rb-home-intro .f-custom-content__container > .f-gradient { gap:36px; }
  body.template-home .rb-home-enquiry .f-custom-content__wrapper { gap:14px; }
  body.template-home .rb-home-enquiry .f-custom-content__block-inner { padding:22px; }
  body.template-home .rb-home-enquiry .f-richtext__title { font-size:21px; }
  body.template-home .rb-home-contact .f-info-box-frid { grid-template-columns:1fr; gap:18px; }
}
@media(max-width:767px) {
  body.template-home sidebar-contact-information.h5-position-right-bottom { bottom:20px; right:14px; top:auto; }
  body.template-home .f-section__header { margin-bottom:24px; text-align:left; }
  body.template-home .f-section__heading { font-size:28px; line-height:1.22; }
  body.template-home .f-section__description { font-size:14px; line-height:1.75; }
  body.template-home .rb-home-intro .f-custom-content__container > .f-gradient { grid-template-columns:1fr; gap:24px; }
  body.template-home .rb-home-intro .f-section__heading { max-width:22ch; }
  body.template-home .rb-home-intro .f-richtext__description { font-size:15px; }
  body.template-home .rb-home-categories .f-collection-card__title { font-size:15px; }
  body.template-home .rb-home-products .f-product-card__media { padding:6px; }
  body.template-home .rb-home-products .f-product-card__content { padding:12px; }
  body.template-home .rb-home-products .f-product-card__title { min-height:0; }
  body.template-home .rb-home-products .f-product-card__name { font-size:13px; line-height:1.5; }
  body.template-home .rb-home-spec .f-content-box__heading { font-size:23px; }
  body.template-home .rb-home-spec .tab-labels { display:flex; gap:12px; }
  body.template-home .rb-home-spec .tab-labels [data-tab-label] { white-space:normal; flex:1; font-size:12px; }
  body.template-home .rb-home-applications .f-services-style__image,
  body.template-home .rb-home-guides .f-services-style__image { height:200px; }
  body.template-home .rb-home-applications .f-services-style__content,
  body.template-home .rb-home-guides .f-services-style__content { padding:22px; }
  body.template-home .rb-home-enquiry .f-custom-content__wrapper { grid-template-columns:1fr; gap:16px; }
  body.template-home .rb-home-enquiry .f-richtext__subtitle { margin-bottom:14px; }
  body.template-home .rb-home-enquiry .f-richtext__title { font-size:23px; }
  body.template-home .rb-home-enquiry .f-richtext__button { padding-top:22px; }
  body.template-home .rb-home-enquiry .f-section__header { margin-bottom:28px; }
  body.template-home .rb-home-faq .f-collapsible__content-wrapper { display:block; }
  body.template-home .rb-home-faq .f-section__heading { max-width:22ch; }
  body.template-home .rb-home-faq .f-collapsible--button { font-size:16px; }
  body.template-home .rb-home-contact .f-contact-content-box { flex-direction:column; gap:32px; }
  body.template-home .rb-home-contact .f-contact-form__main { width:100%; flex:auto; padding:24px 20px; order:2; }
  body.template-home .rb-home-contact .f-contact-2-form__info { width:100%; flex:auto; padding:0; order:1; }
  body.template-home .rb-home-contact .f-info-box__title { font-size:28px; }
  body.template-home .rb-home-contact .f-contact-form__heading { font-size:25px; }
  body.template-home .rb-home-contact .f-info-box-frid { grid-template-columns:1fr 1fr; gap:20px; }
  body .f-footer--block-custom_html .f-footer--block-content { padding-right:30px; }
}


body .rb-company-name{font-weight:600;line-height:1.65;color:inherit}
body .rb-company-name--hero{color:#147d87;font-size:15px;margin:18px 0 0;letter-spacing:.01em}
body .rb-contact-line{display:flex;align-items:flex-start;gap:9px}
body .rb-contact-line .rb-contact-icon{display:block;flex:0 0 18px;width:18px;height:18px;margin-top:3px;color:#147d87}
body .rb-contact-line>span{min-width:0;overflow-wrap:anywhere}
body .f-footer .rb-contact-icon{color:#91cfd5}
body .rb-contact-line a,body .rb-home-contact .f-info-box__content a,body .rbp-contact-form a{ text-underline-offset:4px;text-decoration-thickness:1px;text-decoration-skip-ink:auto }
body .f-footer__copyright{display:block;line-height:1.7}


@media(max-width:540px){body.template-home .rb-home-contact .f-info-box-frid{grid-template-columns:minmax(0,1fr);gap:0}body.template-home .rb-home-contact .f-info-box{width:100%;padding:16px 0}body.template-home .rb-home-contact .rb-contact-line{margin-bottom:0}}

/* reliabulkbag-hero.css sha256:f0dae169c630463624de64b7a56ee7301563330ce276b6870964d9cbbee9c6b5 */

body.template-home #f-slider-slider-JolOQidEiQ .f-slide__content {
  width: min(52%, 640px);
  max-width: 52%;
}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper { padding-block: 36px; }
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title {
  color: #12304a;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description {
  max-width: 49ch;
  color: #203341;
  font-size: 17px;
  line-height: 1.55;
}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__subtitle { color: #0c7a86; font-weight: 600; }
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button { gap: 12px; }
@media (min-width: 768px) and (max-width: 1023px) {
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper { padding-block: 20px; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description { font-size: 14px; line-height: 1.45; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__content { --f-richtext-margin: 14px; }
}
@media (max-width: 767px) {
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide { display: flex; flex-direction: column-reverse; background: #f3f6f8; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper { position: relative; inset: auto; height: auto; padding: 30px 20px 26px; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__content { width: 100%; max-width: 100%; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title { font-size: 32px; line-height: 1.12; max-width: 22ch; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__subtitle { font-size: 13px; line-height: 1.5; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description { font-size: 15px; line-height: 1.55; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button { gap: 10px; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button .f-button { font-size: 14px; line-height: 20px; padding: 12px 16px; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__media { height: 340px; min-height: 0; padding: 0; flex: none; width: 100%; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__media::before { display: none; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg { inset: 0; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg picture { display: block; width: 100%; height: 100%; }
  body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
}

/* reliabulkbag-mobile-ui.css sha256:38946ea2079d965ea26bfb7692fb120054d46a8132066d15082b014a64a80fd7 */

body{--rb-ui-font:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;--rb-ink:#143247;--rb-muted:#526675;--rb-line:#dce5e9;--rb-teal:#137b83}
body.template-home,body .f-header,body .f-footer,body .f-topbar{font-family:var(--rb-ui-font)}
body.template-home :is(h1,h2,h3,h4,h5,h6,button,input,textarea,label),body :is(.f-header,.f-footer) :is(h1,h2,h3,h4,button,a){font-family:var(--rb-ui-font)}
body.template-home :is(p,a,.rte,.f-richtext__subtitle,.f-section__description){font-family:var(--rb-ui-font)}
body.template-home :is(h1,h2,h3){font-weight:600;letter-spacing:-.035em;text-wrap:balance}
body.template-home :is(p,.rte){text-wrap:pretty}
body.template-home .f-section__heading{font-size:clamp(30px,2.8vw,40px);line-height:1.15;font-weight:600;letter-spacing:-.035em}
body.template-home .f-section__subheading{font-size:11px;font-weight:650;letter-spacing:.14em;margin-bottom:12px}
body.template-home .f-section__description{font-size:16px;font-weight:400;line-height:1.7;margin-top:16px;max-width:680px}
body.template-home .f-button{font-size:14px;line-height:20px;font-weight:600;min-height:46px;border-radius:5px;padding:13px 22px;box-shadow:none}
body.template-home .f-button--primary{background:#137b83;border-color:#137b83;color:#fff}
body.template-home .f-button--primary:hover{background:#0b626b;border-color:#0b626b}
body.template-home .f-button--link{padding-inline:0;border-radius:0}
body.template-home :is(a,button,input,textarea,label[role=tab]):focus-visible{outline:2px solid #137b83;outline-offset:4px}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title{font-weight:600;font-size:clamp(36px,4vw,58px);line-height:1.06;letter-spacing:-.045em}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description{font-size:17px;line-height:1.65;max-width:46ch;font-weight:400}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__subtitle{font-size:11px;letter-spacing:.14em}
body.template-home .rb-home-intro .f-richtext__description{line-height:1.75;font-size:16px}
body.template-home .rb-home-intro .f-richtext__button{margin-top:18px}
body.template-home .rb-home-intro .f-button{background:transparent;color:var(--rb-teal);border-width:0 0 1px;border-color:#a7bdc4;border-radius:0;padding:8px 0;min-height:40px}
body.template-home .rb-home-categories .f-collection-card__image{border:0;border-radius:6px;background:#f3f6f7;overflow:hidden}
body.template-home .rb-home-categories .f-collection-card__image img{object-fit:contain;background:#fff}
body.template-home .rb-home-categories .f-collection-card__title{font-size:17px;font-weight:600;line-height:1.4;letter-spacing:-.02em}
body.template-home .rb-home-products{background:#f2f5f7}
body.template-home .rb-home-products .f-product-card{border-color:#e2e8ec;border-radius:7px;box-shadow:none}
body.template-home .rb-home-products .f-product-card__content{padding:18px;border-top:1px solid #eef2f4}
body.template-home .rb-home-products .f-product-card__title,body.template-home .rb-home-products .f-product-card__title a{font-size:15px;line-height:1.55;font-weight:500;letter-spacing:-.01em;text-wrap:pretty;color:var(--rb-ink)}
body.template-home .rb-home-products .f-product-card__title{min-height:4.65em}
body.template-home .rb-home-products .f-product-card__main-image img{object-fit:contain}
body.template-home .rb-home-products .f-product-card__addons button{border:1px solid #e2e8ec;box-shadow:none;border-radius:5px}
body.template-home .rb-home-spec .f-content-box__heading{font-size:28px;font-weight:600;line-height:1.2}
body.template-home .rb-home-spec .f-content-box__description{font-size:15px;font-weight:400;line-height:1.7}
body.template-home .rb-home-spec .tab-labels{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;align-items:stretch;background:#f1f5f6;border-radius:5px;overflow:hidden}
body.template-home .rb-home-spec .tab-labels [data-tab-label]{width:auto;min-width:0;padding:14px 9px;display:flex;justify-content:center;align-items:center;text-align:center;font-size:13px;font-weight:600;line-height:1.35;white-space:normal;min-height:56px;flex:none;border:0;border-bottom:2px solid transparent;margin:0}
body.template-home .rb-home-spec .tab-labels [data-tab-label].active{color:var(--rb-teal);background:#e3eeef;border-bottom-color:var(--rb-teal)}
body.template-home .rb-home-spec .tab-panels{padding-top:22px}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__wrapper{border-color:#dce5e9;border-radius:7px;box-shadow:none}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__image{height:210px}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__title{font-weight:600;font-size:21px;line-height:1.3;letter-spacing:-.025em}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__description{font-size:14px;font-weight:400;line-height:1.7}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__button{font-size:13px;font-weight:600;min-height:44px;display:flex;align-items:center;padding-top:16px}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__aside{margin-bottom:0}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__button{width:100%}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__button .icon{margin-left:auto}
body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__button .icon-first{opacity:1;transform:none}
body.template-home .rb-home-enquiry .f-custom-content__block-inner{border:0;border-top:1px solid #527b89;background:transparent;padding:26px 0 0}
body.template-home .rb-home-enquiry .f-richtext__title{font-size:24px;font-weight:600;line-height:1.25}
body.template-home .rb-home-enquiry .f-richtext__description{font-weight:400;line-height:1.75}
body.template-home .rb-home-enquiry .f-button{background:#fff;border-color:#fff;color:var(--rb-ink)}
body.template-home .rb-home-faq .f-collapsible--button{font-weight:600}
body.template-home .rb-home-contact :is(.f-info-box__title,.f-contact-form__heading){font-weight:600;line-height:1.15;letter-spacing:-.035em}
body.template-home .rb-home-contact .f-contact-form__main{border-radius:8px;background:#f4f7f8;border-color:#e3e9ec}
body.template-home .rb-home-contact .form-field{font-family:var(--rb-ui-font);font-size:16px;line-height:1.5;min-height:48px;border-radius:4px;border-color:#cddade;box-shadow:none}
body.template-home .rb-home-contact .rb-form-label{font-size:13px;font-weight:500}
body.template-home .rb-home-contact .f-contact-form__description{font-size:15px;font-weight:400}
body.template-home .rb-home-contact .f-info-box__description{margin-top:20px;margin-bottom:0}
body.template-home .rb-home-products [data-products-container]{margin:0}
body.template-home .rb-home-products [data-products-container]>.m\:column{padding:0;width:100%;margin:0}
body .f-header__desktop .f-logo strong,body .f-header__mobile .f-logo strong{font-family:var(--rb-ui-font);font-weight:700;letter-spacing:-1px}
body .f-header__menu .f-menu__link--main{font-weight:500}
body .f-footer--block-content{font-family:var(--rb-ui-font);font-size:14px;line-height:1.75}
body .f-footer--block-title{font-family:var(--rb-ui-font);font-weight:600}
body .f-footer__copyright{font-family:var(--rb-ui-font);line-height:1.7}
@media(min-width:768px){
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__wrapper{grid-template-rows:210px minmax(0,1fr);align-items:stretch}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__content{align-self:stretch;height:100%}
}
@media(min-width:1024px){
 body.template-home :is(.container,.container-fluid){max-width:1400px;margin-inline:auto}
 body.template-home .rb-home-products .f-product-card__main-image responsive-image{height:230px;padding-bottom:0}
 body.template-home .rb-home-enquiry .f-custom-content__wrapper{gap:40px}
 body.template-home .rb-home-contact .f-info-box__description{max-width:43ch}
}
@media(min-width:768px) and (max-width:1023px){
 body.template-home :is(.container,.container-fluid){padding-inline:32px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper{padding-inline:32px}
 body.template-home .rb-home-categories .f-mixed-layout__inner{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;margin:0}
 body.template-home .rb-home-categories .f-mixed-layout__inner>.m\:column{padding:0;width:100%}
 body.template-home .rb-home-categories .f-collection-card__title{font-size:14px;line-height:1.4}
 body.template-home .rb-home-products [data-products-container]{grid-template-columns:repeat(3,minmax(0,1fr))}
 body.template-home .rb-home-contact .f-contact-content-box{gap:32px}
 body.template-home .rb-home-contact .f-contact-form__main{padding:24px;width:52%;flex:1}
 body.template-home .rb-home-contact .f-contact-2-form__info{width:44%;flex:1}
 body.template-home .rb-home-enquiry .f-custom-content__wrapper{gap:24px}
}
@media(max-width:1023px){
 body sidebar-contact-information.sidebar-contact-information.h5-position-right-bottom{position:fixed;top:auto;bottom:20px;left:auto;right:18px;width:48px;height:48px;transform:none}
 body sidebar-contact-information.h5-position-right-bottom>.sidebar{display:none;position:absolute;top:auto;bottom:62px;right:0;left:auto;transform:none;transition:none}
 body sidebar-contact-information.h5-position-right-bottom>.sidebar.active{display:block;top:auto;bottom:62px}
 body sidebar-contact-information.h5-position-right-bottom>.icon-plus{display:flex;position:static;top:auto;right:auto;bottom:auto;left:auto;transform:none;align-items:center;justify-content:center;width:48px;height:48px;margin:0;background:#137b83;border-color:#137b83;color:#fff;box-shadow:0 4px 16px #15324820}
 body .f-header__mobile{min-height:68px;background:white}
 body .f-header__mobile .f-logo strong{font-size:23px}
 body .f-header__mobile button{min-width:44px;min-height:44px}
 body .f-menu-drawer__navigation{padding:14px 22px}
 body .f-menu-mobile__item{border-bottom:1px solid #e6edef}
 body .f-menu-mobile__link{font-family:var(--rb-ui-font);font-size:17px;font-weight:500;line-height:1.5;min-height:60px;padding:17px 8px;color:var(--rb-ink)}
 body .f-menu-mobile__item>button.f-menu-mobile__link{padding:17px 48px 17px 8px}
 body .f-menu-mobile__toggle-button{width:48px;min-height:60px;right:0;top:0}
 body .f-menu-mobile__back-button{font-family:var(--rb-ui-font);font-size:16px;font-weight:600;min-height:58px;background:#f1f6f7;color:var(--rb-teal)}
 body .f-submenu-mobile{padding:8px 22px}
 body .f-submenu-mobile .f-menu-mobile__link{font-size:15px;min-height:56px}
 body .f-menu-drawer__navigation>.f-menu-mobile__item:last-child{border:0;margin-top:20px}
 body .f-menu-drawer__navigation>.f-menu-mobile__item:last-child>a{background:var(--rb-ink);color:#fff;text-align:center;border-radius:5px;min-height:48px;padding:13px 18px}
}
@media(max-width:767px){
 body.template-home{--rb-gutter:22px}
 body.template-home :is(.container,.container-fluid){padding-left:var(--rb-gutter);padding-right:var(--rb-gutter)}
 body.template-home .f-section__header{margin-bottom:26px;text-align:left}
 body.template-home .f-section__heading{font-size:30px;line-height:1.15;letter-spacing:-.04em;text-wrap:balance}
 body.template-home .f-section__subheading{font-size:10px;line-height:1.5;letter-spacing:.14em;margin-bottom:12px}
 body.template-home .f-section__description{font-size:15px;line-height:1.65;font-weight:400;margin-top:14px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide{background:#f1f5f7}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper{padding:38px 24px 26px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__content{--f-richtext-margin:18px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title{font-size:38px;line-height:1.07;letter-spacing:-.045em;max-width:19ch;margin-top:16px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__subtitle{font-size:10px;line-height:1.5;letter-spacing:.13em}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description{font-size:15px;line-height:1.65;margin-top:18px;color:#475f6f}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:24px;width:100%}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button .f-button{width:100%;font-size:13px;padding:12px 8px;min-height:46px;white-space:nowrap}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__media{height:290px;margin:0 0 24px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg img{object-fit:contain;max-width:100%}
 body.template-home .rb-home-intro .f-custom-content__container>.f-gradient{gap:18px}
 body.template-home .rb-home-intro .f-section__heading{max-width:20ch}
 body.template-home .rb-home-intro .f-richtext__description{font-size:15px;line-height:1.7}
 body.template-home .rb-home-intro .f-richtext__button{margin-top:12px}
 body.template-home .rb-home-categories .f-mixed-layout__inner{grid-template-columns:minmax(0,1fr);gap:0}
 body.template-home .rb-home-categories .f-mixed-layout__inner>.m\:column{padding:0;width:100%}
 body.template-home .rb-home-categories .f-collection-card{height:auto;width:100%}
 body.template-home .rb-home-categories .f-collection-card__inner{display:grid;grid-template-columns:76px 1fr;align-items:center;gap:20px;padding:14px 0;border-bottom:1px solid var(--rb-line)}
 body.template-home .rb-home-categories .f-collection-card__image{width:76px;height:76px;border:1px solid #e6ecef;border-radius:5px;background:white}
 body.template-home .rb-home-categories :is(.f-hover-box__wrapper,responsive-image){width:100%;height:100%;padding:0}
 body.template-home .rb-home-categories .f-collection-card__image img{object-fit:contain;width:100%;height:100%;padding:4px}
 body.template-home .rb-home-categories .f-collection-card__info{margin:0;padding:0}
 body.template-home .rb-home-categories .f-collection-card__title{font-size:18px;line-height:1.3;margin:0}
 body.template-home .rb-home-categories .f-collection-card__link{padding-block:16px}
 body.template-home .rb-home-products [data-products-container]{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
 body.template-home .rb-home-products .f-product-card__media{padding:8px}
 body.template-home .rb-home-products .f-product-card__main-image responsive-image{height:158px;padding-bottom:0}
 body.template-home .rb-home-products .f-product-card__content{padding:13px 12px 16px}
 body.template-home .rb-home-products .f-product-card__title,body.template-home .rb-home-products .f-product-card__title a{font-size:13px;line-height:1.5;letter-spacing:0;font-weight:500}
 body.template-home .rb-home-products .f-product-card__title{min-height:0}
 body.template-home .rb-home-products .f-product-quickview-button{display:none}
 body.template-home .rb-home-products .f-product-card__addons{right:8px;bottom:8px;left:auto;top:auto;transform:none;gap:0}
 body.template-home .rb-home-products .f-product-inquire-button{width:44px;height:44px;min-width:44px;min-height:44px;border-radius:5px;background:#fff;color:#17364b}
 body.template-home .rb-home-spec .f-image-with-text__inner{row-gap:24px}
 body.template-home .rb-home-spec .f-image-with-text__image-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0;align-items:stretch}
 body.template-home .rb-home-spec :is(.f-image-with-text__image-first,.f-image-with-text__image-second){width:100%;max-width:100%;position:relative;top:auto;left:auto;right:auto;bottom:auto;transform:none;margin:0;border:1px solid #e2eaed;border-radius:5px}
 body.template-home .rb-home-spec .f-image-with-text__image-wrapper responsive-image{height:170px;padding-bottom:0}
 body.template-home .rb-home-spec .f-image-with-text__image-wrapper img{object-fit:contain;padding:8px;background:#fff}
 body.template-home .rb-home-spec .f-content-box__heading{font-size:24px;line-height:1.25;margin:0}
 body.template-home .rb-home-spec .f-content-box__description{font-size:15px;line-height:1.65;margin-top:16px}
 body.template-home .rb-home-spec .tab-labels{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:22px}
 body.template-home .rb-home-spec .tab-labels [data-tab-label]{font-size:12px;min-height:64px;padding:12px 6px;flex:none}
 body.template-home .rb-home-spec .tab-panels{padding-top:4px}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__wrapper{display:grid;grid-template-columns:64px minmax(0,1fr);gap:8px 14px;padding:16px;background:#fff;align-items:center}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__image{grid-column:1;grid-row:1;height:68px;width:64px;background:#f5f7f8;border-radius:4px;overflow:hidden}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-services-style__image img{padding:3px;object-fit:contain}
 body.template-home :is(.rb-home-applications,.rb-home-guides) :is(.f-services-style__content,.f-services-style__content-inner){display:contents}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__title{grid-column:2;grid-row:1;align-self:center;font-size:19px;font-weight:600;line-height:1.25;margin:0;text-wrap:balance}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__description{grid-column:1/-1;grid-row:2;margin:0;font-size:14px;line-height:1.65;font-weight:400}
 body.template-home :is(.rb-home-applications,.rb-home-guides) .f-card__button{grid-column:1/-1;grid-row:3;margin:0;padding:8px 0 0;min-height:44px;font-size:13px;justify-content:space-between;border-top:1px solid #edf1f3}
 body.template-home .rb-home-enquiry .f-section__header{margin-bottom:30px}
 body.template-home .rb-home-enquiry .f-custom-content__wrapper{gap:24px}
 body.template-home .rb-home-enquiry .f-custom-content__block-inner{padding:20px 0 0;border-top:1px solid #527b89}
 body.template-home .rb-home-enquiry .f-richtext__subtitle{margin-bottom:10px;font-size:10px}
 body.template-home .rb-home-enquiry .f-richtext__title{font-size:24px;line-height:1.2}
 body.template-home .rb-home-enquiry .f-richtext__description{margin-top:12px;font-size:14px;line-height:1.7}
 body.template-home .rb-home-enquiry .f-richtext__button{padding-top:20px}
 body.template-home .rb-home-faq .f-collapsible--button{font-size:16px;line-height:1.45;font-weight:500;padding-block:20px;padding-right:30px}
 body.template-home .rb-home-faq .f-collapsible--content{font-size:14px;line-height:1.7}
 body.template-home .rb-home-contact .f-contact-content-box{gap:36px}
 body.template-home .rb-home-contact .f-info-box__title{font-size:30px;line-height:1.15}
 body.template-home .rb-home-contact .f-info-box__description{font-size:15px;line-height:1.65;max-width:100%}
 body.template-home .rb-home-contact .f-info-box-frid{grid-template-columns:minmax(0,1fr);gap:0;margin-top:24px}
 body.template-home .rb-home-contact .f-info-box--style-2{display:grid;grid-template-columns:78px minmax(0,1fr);align-items:center;gap:8px;padding:15px 0}
 body.template-home .rb-home-contact .f-info-box__step-title{font-size:12px;margin:0;padding:0}
 body.template-home .rb-home-contact .f-info-box__content{font-size:14px;line-height:1.5}
 body.template-home .rb-home-contact .rb-contact-line{margin:0;gap:8px}
 body.template-home .rb-home-contact .rb-contact-icon{margin-top:2px}
 body.template-home .rb-home-contact .f-contact-form__main{padding:24px 20px}
 body.template-home .rb-home-contact .f-contact-form__heading{font-size:26px;line-height:1.2}
 body.template-home .rb-home-contact .f-contact-form__description{font-size:14px;line-height:1.65}
 body.template-home .rb-home-contact textarea.form-field{height:132px;min-height:132px;resize:vertical}
 body.template-home .rb-home-contact .f-contact-submit{font-size:14px;min-height:48px}
 body .f-footer--block-title{font-size:16px;letter-spacing:-.015em}
 body .f-footer--block-custom_text .f-footer--block-title{font-size:24px}
 body .f-footer--block-content{font-size:14px;line-height:1.8}
 body .f-footer--block-custom_html .f-footer--block-content{padding-right:0}
 body .f-footer .rb-contact-line{gap:10px;margin-bottom:12px}
 body .f-footer__copyright{font-size:12px;color:#c4d3dc;padding-right:58px}
}
@media(max-width:359px){
 body.template-home{--rb-gutter:18px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper{padding-inline:20px}
 body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title{font-size:34px}
 body.template-home .rb-home-contact .f-info-box--style-2{grid-template-columns:1fr;gap:7px}
 body.template-home .rb-home-products .f-product-card__main-image responsive-image{height:140px}
}
@media(prefers-reduced-motion:reduce){body.template-home *{scroll-behavior:auto;transition-duration:0s!important}}

body.template-home .f-section__subheading{color:#126573}body.template-home .rb-home-guides .f-card__button{color:#0b606a}
body.template-home .rb-static-hero :is(.swiper-wrapper,.swiper-slide){opacity:1!important;visibility:visible!important;transform:none!important;transition:none!important}
body.template-home .rb-static-hero .swiper-slide{width:100%!important}
body.template-home .rb-static-hero :is(.f-slide__content,.f-slide__title,.f-slide__subtitle,.f-slide__description,.f-slide__button){opacity:1!important;visibility:visible!important;transform:none!important;animation:none!important;transition:none!important}
body.template-home .rb-home-spec .tab-labels [data-tab-label]{color:#143247;background:transparent;cursor:pointer}
body.template-home .rb-home-spec .tab-labels [data-tab-label].active{color:#0b5963;background:#e3eeef;border-bottom-color:#0b5963}

@media(min-width:1024px){body.template-home .f-header__menu .rb-nav-arrow-button{min-width:28px;min-height:44px;padding:10px 5px;margin-left:4px}body.template-home .f-header__menu .rb-nav-arrow-button .rb-nav-chevron{margin-left:0}}
/* Mobile hero: full-width studio visual before copy. */
body.template-home .rb-home-contact .rb-contact-line a{text-decoration-line:underline;text-decoration-thickness:1px;text-underline-offset:6px;text-decoration-skip-ink:auto;line-height:1.65}
@media(max-width:767px){
body.template-home #f-slider-slider-JolOQidEiQ .f-slide{display:flex;flex-direction:column;background:#f1f5f7;height:auto;min-height:0}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__media{position:relative;order:0;flex:none;width:100%;height:auto;min-height:0;aspect-ratio:3/2;margin:0;overflow:hidden}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__media:before{display:none}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg{position:relative;width:100%;height:100%;inset:auto}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg picture{display:block;width:100%;height:100%}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__bg img{display:block;width:100%;max-width:none;height:100%;object-fit:cover;object-position:center;margin:0}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper{order:1;position:relative;inset:auto;transform:none;width:100%;height:auto;padding:26px 24px 32px}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__content{width:100%;max-width:none;margin:0}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title{font-size:34px;line-height:1.12;letter-spacing:-.04em;margin:0;max-width:20ch}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__description{margin-top:16px;font-size:15px;line-height:1.65}
body.template-home #f-slider-slider-JolOQidEiQ .f-slide__button{margin-top:22px}
}
@media(max-width:359px){body.template-home #f-slider-slider-JolOQidEiQ .f-slide__wrapper{padding:24px 20px 28px}body.template-home #f-slider-slider-JolOQidEiQ .f-slide__title{font-size:31px}}
