.product-cat-categories {
    margin-bottom: 160px;
}
.product-cat-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 18px;
}
.sticky__panel-product-categories {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s;
    transform: translateY(-300px);
    pointer-events: none;
    display: flex;
}
.sticky__panel-product-categories a {
    flex: 1;
    background: #8801DB;
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 136%;
    letter-spacing: 0.18px;
    padding: 13px 31px;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 16px 16px;
    text-decoration: none;
    transition: all 0.5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
    overflow: hidden;
    gap: 8px;
    align-items: center;
}
.sticky__panel-product-categories a.btn__panel--all {
    background: #FF2663;
    justify-content: center;
}
a.btn__panel--all:nth-child(1),a.btn__panel--all:nth-child(2),a.btn__panel--all:nth-child(3),a.btn__panel--all:nth-child(4),a.btn__panel--all:nth-child(6) {
    display: none;
}
.sticky__panel-product-categories a span {
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
    overflow: hidden;
}
.sticky__panel-product-categories a:hover {
    color: #27F5D1;
    background: #6401A1;
}
.sticky__panel-product-categories a.btn__panel--all:hover {
    background: #CC1B4D;
    color: #fff;
}
.sticky__panel-product-categories a svg {
    fill: white;
    transition: all 0.5s;
    flex: 0 0 auto;
}
.sticky__panel-product-categories a:hover svg {
    fill: #27F5D1;
}
.sticky__panel-product-categories.active-sticky {
    display: flex;
    gap: 16px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
    pointer-events: unset;
}
.product-cat-categories__title {
    font-size: 56px;
    text-transform: uppercase;
    margin-bottom: 56px;
}
.child-cat {
    text-decoration: none;
    padding: 32px 32px 0 32px;
    font-size: 36px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.12;
    display: flex;
    border-radius: 8px;
    min-height: 295px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--black);
    z-index: 3;
    overflow: hidden;
}
.child-cat:hover {
    color: var(--accent);
}

.child-cat__title {
    padding-bottom: 32px;
    margin-top: auto;
}
.child-cat--img {
    padding-right: 0;
}
.child-cat__title {
    max-width: 250px;
}
.child-cat__badges {
    position: absolute;
    top: 32px;
    display: flex;
}

.child-cat__badge {
    color: var(--white);
    line-height: 1.26;
    letter-spacing: var(--letter-spacing-normal);
    font-size: var(--font-body-small);
    padding: 7px 32px;
    border-radius: 8px;
}
.child-cat__badge--new {
    background: #ff9b26;
}
.child-cat__badge--hot {
    background: #ff2663;
}
.child-cat__img {
    display: flex;
    position: absolute;
    z-index: -1;
    right: 0;
    transition: transform 0.5s;
}
.child-cat__img img {
    display: none;
}
.lazyready .child-cat__img img {
    display: block;
}
.child-cat--100 .child-cat__img {
    width: 295px;
    max-width: initial;
    right: 0;
    bottom: 0;
    height: auto;
}
.child-cat--img .child-cat__img {
    display: flex;
    align-items: flex-start;
    padding-right: 15px;
}
.child-cat:hover .child-cat__img {
    transform: scale(1.05);
}
.child-cat__img img {
    width: 100%;
    height: auto;
}
img.child-cat__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    z-index: -2;
    object-fit: cover;
}
.child-cat:not(.child-cat--img, .child-cat--100):hover .child-cat__bg {
    transform: scale(1.03);
}
.location-menu {
    position: absolute;
    left: 0;
    bottom: 52px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    z-index: 1050;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    border-radius: 16px;
    background: rgba(8, 9, 15, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: auto;
    padding: 10px 10px 10px 10px;
    overflow: hidden;
}
.location-menu:hover {
    background: rgba(8, 9, 15, 0.9);
}
.location-menu.active {
    pointer-events: all;
    opacity: 1;
}
.location-menu ul {
    display: flex;
    flex-direction: column;
}
.location-menu ul li a {
    border-bottom: 1px solid rgba(136, 1, 219, 0.16);
    padding: 10px 24px;
    display: block;
    color: #fff;
    text-decoration: none;
}
.location-menu ul li:last-child a {
    border-bottom: none;
}
.sticky__panel-product-categories[data-count="4"] .btn__panel--all {
    display: none;
}


/******************************/

.product-card.product-card-configuration {
    grid-template-columns: unset;
    grid-template-areas:
            "config"
            "price_link";
}
.product-card.product-card-configuration .product-card__price {
    display: flex;
    flex-direction: column;
}
.product-card-configurator__price-info {
    display: flex;
    gap: 120px;
    justify-content: space-between;
    align-items: center;
}
.product-type-configuration .product-card__config {
    grid-area: config;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}
.product-card__config--disabled *  {
    pointer-events: none;
    opacity: 0.64;
}
.product-card__config--disabled .product-card__title,
.product-card__config--disabled .product-card__badge,
.product-card__config--disabled .product-card__badge-container {
    opacity: 1;
}
.product-card__config--disabled .product-card__badge-container * {
    opacity: 1
}
.product-type-configuration .product-card__price_wrap {
    grid-area: price_link;
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    align-items: center;
}
.product-card-configurator__btn-wrapper {
    display: flex;
}
.product-card-configurator__time {
    display: flex;
    align-items: start;
    line-height: 1;
    gap: 7px;
}
.product-card-configurator__time svg {
    flex-shrink: 0;
}
.product-card-configurator__time span {
    margin-top: 0.25em;
    text-transform: uppercase;
}
.product-card.product-card-configuration .product-card__btn {
    grid-area: link;
    flex-basis: 195px;
    display: flex;
    justify-content: center;
}

.product-card__btn--disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.product-options__block {
    display: flex;
    gap: 32px;
    flex-basis: 100%;
}

.range_start,
.range_finish,
.currency_value {
    height: unset;
    border-radius: 16px;
    opacity: 1;
    transition: background-color .2s ease-out, opacity .2s ease-out;
    color: #0B0413;
    border: 2px solid #7949FF;
    background: #FFF;
    font-size: 16px;
    line-height: 128%;
    letter-spacing: 0.16px;
    padding: 16px;
    width: 100%;
}

.product-options__block-title {
    margin-bottom: 16px;
    color: #FFF;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    align-items: flex-end;
}

.product-options__block-item-range .product-options__block-title:after {
    display: none;
}
.inactive {
    pointer-events: none;
    opacity: 0.7;
}
.inactive input {
    pointer-events: none;
}
.range-options__block .product-options__block-title {
    margin-bottom: 4px;
    color: #B2AEBD;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.14px;
    text-transform: none;
}
.product-options__block .product-options__block-heading{
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex: 1;
}
.product-options__block-item {
    flex: 0 0 auto;
    flex-basis: 100%;
}
.product-options__block-item.product-options__block-item-range {
    flex: 0 0 320px;
}
.product-card__config .product-card__badge {
    margin-left: 0;
}
@media screen and (max-width: 1680px) {
    .product-options__block-item.product-options__block-item-range {
        flex: 0 0 260px;
    }
}
@media screen and (max-width: 1430px) {
    .product-options__block-item.product-options__block-item-range {
        flex-basis: calc(50% - 29px);
    }
}
.product-options__block-sep {
    background: #7949FF;
    height: 3px;
    min-width: 27px;
    margin-bottom: 26px;
}
.product-card .irs--round .irs-line,
.product-card .irs--round .irs-bar {
    background-color: #8801db;
    top: 67px;
}
.product-card .irs-grid-pol {
    opacity: 0;
    visibility: hidden;
}
.product-options__block .irs-with-grid .irs-grid {
    display: none;
}
span.showcase__mark {
    position: absolute;
    bottom: -11px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 128%;
    letter-spacing: 0.16px;
}
.product-card .irs--round .irs-handle {
    border: 5px solid #fff;
    background-color: #8801DB;
    width: 18px;
    height: 18px;
    top: 60px;
    cursor: pointer;
}
.product-card .irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
    background-color: #8801DB !important;
}
.product-card .irs--round.irs-with-grid {
    height: 95px;
    flex: 1;
}
.product-options__radio {
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid var(--grey-d);
}

@media (min-width: 721px) {
    .product-options__radio:has(input:checked) {
        border: 1px solid var(--primary);
    }
}

.product-options__radio--select-all {
    order: -1;
}

@media (max-width: 720px) {
    .product-options__radio--select-all {
        margin-bottom: 8px;
    }
    .product-options__radio--mid, .product-options__radio--radio {
        border-top: none;
        border-bottom: 1px solid var(--grey-d);
        border-left: 1px solid var(--grey-d);
        border-right: 1px solid var(--grey-d);
        border-radius: 0;
    }
    .product-options__radio--first, .product-options__radio--radio:first-child {
        border: 1px solid var(--grey-d);
        border-radius: 8px 8px 0 0;
    }
    .product-options__radio--last, .product-options__radio--radio:last-child {
        border-top: none;
        border-bottom: 1px solid var(--grey-d);
        border-left: 1px solid var(--grey-d);
        border-right: 1px solid var(--grey-d);
        border-radius: 0 0 8px 8px;
    }
}

.product-options__radio input {
    position: absolute;
    left: -9999px;
}
.product-options-inputCustom {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.product-options__radios-items .product-options-inputCustom {
    width: 24px;
    height: 24px;
}
.product-options-inputCustom:before {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyQUVCRCIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNSAzaDE0YzEuMSAwIDIgLjkgMiAydjE0YzAgMS4xLS45IDItMiAySDVjLTEuMSAwLTItLjktMi0yVjVjMC0xLjEuOS0yIDItMlptMTQgMTZWNUg1djE0aDE0WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");
    opacity: 1;
}
.product-options-inputCustom::after {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzI3RjVEMSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNSAzaDE0YTIgMiAwIDAgMSAyIDJ2MTRhMiAyIDAgMCAxLTIgMkg1YTIgMiAwIDAgMS0yLTJWNWEyIDIgMCAwIDEgMi0yWm0wIDguOTk4IDUgNSA5LTktMS40MS0xLjQyLTcuNTkgNy41OS0zLjU5LTMuNThMNSAxMS45OThaIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");
    opacity: 0;
}
.product-options__radios-items .product-options-inputCustom:before {
    background: url(/wp-content/themes/boost/assets/img/icon/radio.svg);
    opacity: 1;
}
.product-options__radios-items .product-options-inputCustom::after {
    background: url(/wp-content/themes/boost/assets/img/icon/radio-active.svg);
    opacity: 0;
}

.product-options-inputCustom:after, .product-options-inputCustom:before {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 98%;
    height: 100%;
    transition: opacity 0.2s;
    cursor: pointer;
}

.product-options-item {
    cursor: pointer;
    flex: 1;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    padding: 18px 16px 18px 52px;
    align-items: center;
}
.product-options-item input:checked + .product-options-inputCustom:before {
    opacity: 0;
}
.product-options-item input:checked + .product-options-inputCustom:after {
    opacity: 1;
}
.base-tooltip {
    background: #8801DB;
    border-radius: 50%;
}
.tooltip__trigger {

    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0413;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 106%;
    letter-spacing: 0.11px;
}
.base-tooltip:hover {
    background: #27f5d1;
}
span.product-options__option-price {
    color: #fff;
    transition: all 0.25s;
    margin-left: 24px;
    white-space: nowrap;
}
span.product-options-item__left {
    color: #fff;
}

span.base-tooltip__message {
    position: absolute;
    width: 290px;
    bottom: calc(100% + 7px);
    padding: 12px 16px;
    right: -145px;
    border-radius: 8px;
    background: #27F5D1;
    color: #0B0413;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
    letter-spacing: 0.14px;
}
span.base-tooltip__message:before {
    content: '';
    border: 9px solid transparent;
    border-top: 9px solid #27F5D1;
    top: calc(100% - 3px);
    position: absolute;
    right: 145px;

}
.product-options__radios-items, .product-options__checkboxes-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 960px) {
    .product-options__radios-items, .product-options__checkboxes-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px) {
    .product-options__radios-items, .product-options__checkboxes-items {
        grid-template-columns: 1fr;
        gap:0;
    }
}

span.base-tooltip.info-tooltip.product-options__option-tooltip {
    margin-left: 8px;
    position: relative;
    margin-top: -1px;
}
span.product-options-item__left_wrap {
    display: flex;
    align-items: self-start;
}
.irs-handle.from:before, .irs-handle.to:before, .irs-handle.single:before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: calc(100% + 15px);
    left: -22.5px;
    border-radius: 8px;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: contain;
}

/******************************/
.custom-dropdown {
    display: none;
    position: absolute;
    border-radius: 16px;
    border: 2px solid #7949FF;
    background: #FFF;
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    scrollbar-gutter: stable both-edges;
}
.custom-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown::-webkit-scrollbar-thumb {
    background-color: #7949FF;
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.custom-dropdown::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
}
.custom-dropdown {
    clip-path: inset(0 0 0 0 round 16px);
}

.custom-dropdown li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    cursor: pointer;
    min-height: 40px;
}

.custom-dropdown span {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0B0413;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.16px;
}

.custom-dropdown img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.custom-dropdown li:hover {
    background: #f0f0f0;
}
.input-container {
    display: flex;
    align-items: center;
    position: relative;
}

.input-container img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: absolute;
    right: 5px;
}
.select_range-options__block .product-options__block-item input {
    padding-right: 40px;
}
/******************************/



@media (max-width: 1350px) {
    .product-card__config {
        margin-bottom: 22px;
    }
}
@media (max-width: 1199px) {
    .sticky__panel-product-categories[data-count="5"] .btn__panel--game:nth-child(n+3),
    .sticky__panel-product-categories[data-count="4"] .btn__panel--game:nth-child(n+3),
    .sticky__panel-product-categories[data-count="3"] .btn__panel--game:nth-child(n+4)
    {
        display: none;
    }
    .sticky__panel-product-categories[data-count="4"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="5"] .btn__panel--all
    {
        display: flex;
    }
}
@media (max-width: 1024px) {
    .product-cat-categories {
        padding-top: 62px;
    }
}
@media (max-width: 1023px) {
    .sticky__panel-product-categories .btn__panel--game:nth-child(n+3)
    {
        display: none;
    }
    .sticky__panel-product-categories[data-count="3"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="4"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="5"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="6"] .btn__panel--all
    {
        display: flex;
    }

}
@media (max-width: 991px) {

    .product-options__block {
        flex-wrap: wrap;
        gap: 8px;
    }
    .product-options__block .product-options__block-heading {
        flex-basis: 100%;
    }
}
@media (max-width: 767px) {
    .sticky__panel-product-categories .btn__panel--game:nth-child(n+2)
    {
        display: none;
    }
    .sticky__panel-product-categories[data-count="2"] .btn__panel--game:nth-child(2)
    {
        display: flex;
    }
    .sticky__panel-product-categories[data-count="3"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="4"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="5"] .btn__panel--all,
    .sticky__panel-product-categories[data-count="6"] .btn__panel--all
    {
        display: flex;
    }
}
@media (max-width: 680px) {
    .product-options__radio, .product-options__checkboxes-items .product-options__radio {
        flex-basis: 100%;
    }
    .product-type-configuration .product-card__price_wrap {
        flex-wrap: wrap;
        gap: 16px
    }
    .product-card.product-card-configuration .product-card__btn {
        flex-basis: 100%;
    }
    .product-type-configuration .product-card__config {
        row-gap: 24px
    }
    .product-card-configurator__price-info {
        width: 100%;
        gap: 32px;
        justify-content: space-between;
    }
}
@media (max-width: 550px) {
    .sticky__panel-product-categories .btn__panel--game
    {
        display: none !important;
    }
    .sticky__panel-product-categories[data-count="1"] .btn__panel--game,
    .sticky__panel-product-categories .btn__panel--all
    {
        display: flex !important;
    }
    .sticky__panel-product-categories[data-count="1"] .btn__panel--all
    {
        display: none;
    }
    .product-card .showcase__mark, .product-options__block-sep {
        display: none;
    }
    .product-options__block-heading {
        flex-wrap: wrap;
    }
    .product-options__block-item.product-options__block-item-range {
        flex-basis: 100%
    }
    .product-options__block-item.product-options__block-item-range label {
        display: block;
        position: relative;
    }
    /* .product-options__block-item input {
        padding-right: 50px;
    } */
    .product-options__block-item.product-options__block-item-range label:after {
        content: '';
        position: absolute;
        right: 10px;
        bottom: calc(50% - 18px);
        width: 35px;
        height: 35px;
        background-size: 100%;
    }
    .product-card.product-card-configuration {
        padding: 16px;
    }
    .input-container img {
        right: 7px;
        top: 8px;
    }
}
@media (max-width: 420px) {
    .product-cat-categories__grid {
        grid-template-columns: 1fr;
    }
    .child-cat--100 .child-cat__img {
        right: -35%;
    }
    .child-cat {
        font-size: 30px;
        padding: 25px 25px 0 25px;
    }
    .product-card__price > span.woocommerce-Price-amount > bdi {
        font-size: 26px;
    }
}


.product-options__block-item .currency_value::-webkit-inner-spin-button,
.product-options__block-item .currency_value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.currency-options__block .currency_block_image {
    width: 485px;
    height: 260px;
    position: absolute;
    top: 10px;
    left: auto;
    right: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.product-options__block.currency-options__block {
    width: calc(100% - 485px);
    flex-basis: auto;
    gap: 24px;
}
.product-options__block.currency-options__block .product-options__block-heading {
    flex: none;
    width: 260px;
}
.product-options__block.currency-options__block .product-options__block-title {
    margin-bottom: 8px;
    color: #AEB6BD;
    font-size: 16px;
}

.product-options__block.currency-options__block .currency_range_subtotal {
    display: none;
}
.product-options__block.currency-options__block label {
    position: relative;
}
.product-options__block.currency-options__block .currency_value-name {
    position: absolute;
    top: 0px;
    right: 16px;
    color: #AEB6BD;
    font-size: 16px;
    pointer-events: none;
}
@media (max-width: 600px) {
    .product-options__block.currency-options__block .currency_value-name {
        display: none;
    }
}
@media (max-width: 1440px) {
    .product-options__block.currency-options__block {
        gap: 16px;
    }
    .currency-options__block .currency_block_image {
        width: 400px;
        height: 260px;
    }
    .product-options__block.currency-options__block {
        width: calc(100% - 400px);
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        width: 220px;
    }
}
@media (max-width: 1280px) {
    .product-options__block.currency-options__block {
        gap: 24px;
    }
    .currency-options__block .currency_block_image {
        width: 400px;
        height: 260px;
    }
    .product-options__block.currency-options__block {
        width: calc(100% - 300px);
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        width: 180px;
    }
}
@media (max-width: 1024px) {
    .product-options__block.currency-options__block {
        gap: 24px;
    }
    .currency-options__block .currency_block_image {
        width: 360px;
        height: 260px;
    }
    .product-options__block.currency-options__block {
        width: calc(100% - 250px);
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        width: 180px;
    }
}
@media (max-width: 900px) {
    .product-options__block.currency-options__block {
        gap: 16px;
        flex-wrap: wrap;
        width: 100%;
    }
    .currency-options__block .currency_block_image {
        top: 36px;
        width: 375px;
        height: 220px;
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        width: 100%;
        padding-right: 375px;
    }
}
@media (max-width: 768px) {
    .currency-options__block .currency_block_image {
        right: -50px;
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        width: 100%;
        padding-right: 250px;
    }
}
@media (max-width: 600px) {
    .currency-options__block .currency_block_image {
        position: relative;
        width: 100%;
        height: 170px;
        right: 0;
        top: 0;
    }
    .product-options__block.currency-options__block .currency_range_subtotal {
        display: block;
        position: absolute;
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        padding: 16px;
    }
    .currency-options__block .irs {
        display: none;
    }
    .product-options__block.currency-options__block .product-options__block-heading {
        padding-right: 0px;
        position: relative;
    }
    .product-options__block.currency-options__block label {
        position: relative;
    }
    .product-options__block.currency-options__block label:after {
        content: '';
        position: absolute;
        right: 10px;
        bottom: calc(50% - 18px);
        width: 35px;
        height: 35px;
        background-size: 100%;
    }
}


.range-options__block--image .range_block_image {
    width: 680px;
    height: 320px;
    position: absolute;
    top: 24px;
    left: auto;
    right: 32px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
.range-options__block--image {
    flex-basis: 0;
    width: calc(100% - 700px);
    min-width: calc(100% - 700px);
    flex-wrap: wrap;
}

.range-options__block--image .product-options__block-heading {
    display: grid;
    grid-template-columns: 1fr 27px 1fr auto;
    flex-basis: 100%;
}
.range-options__block--image .product-options__block-item-range {
    flex: none;
}
.range-options__block--image.select_range-options__block .range_subtotal,
.range-options__block--image.range-options__block .range_subtotal {
    display: inline-block;
    text-align: right;
    font-size: 16px;
    min-width: 90px;
    padding: 16px 8px;
    margin-left: auto;
}

.range-options__block--image .range_start::-webkit-inner-spin-button,
.range-options__block--image .range_start::-webkit-outer-spin-button,
.range-options__block--image .range_finish::-webkit-inner-spin-button,
.range-options__block--image .range_finish::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 1600px) {
    .range-options__block--image .range_block_image {
        width: 650px;
    }
    .range-options__block--image {
        width: calc(100% - 600px);
        min-width: calc(100% - 600px);
    }
    .range-options__block--image .product-options__block-item-range {
        flex: none;
        flex-grow: 100;
        width: auto;
    }
    .range-options__block--image .product-options__block-item input {
        padding-right: 16px;
    }
}
@media (max-width: 1440px) {
    .range-options__block--image .range_block_image {
        width: 40%;
    }
    .range-options__block--image {
        width: 60%;
        min-width: 60%;
    }
    .range-options__block--image.select_range-options__block .range_subtotal,
    .range-options__block--image.range-options__block .range_subtotal {
        min-width: 80px;
    }
    .range-options__block--image .product-options__block-item-range {
        flex: none;
        flex-grow: 100;
        width: auto;
    }
    .range-options__block--image .product-options__block-item input {
        padding-right: 40px;
    }
}
@media (max-width: 1280px) {
    .range-options__block--image .range_block_image {
        width: 440px;
        left: 70%;
        right: auto;
        height: 220px;
    }
    .range-options__block--image {
        width: 70%;
        min-width: 70%;
    }
}
@media (max-width: 1024px) {
    .range-options__block--image .range_block_image {
        width: 440px;
        left: 60%;
        right: auto;
        height: 220px;
    }
    .range-options__block--image .product-options__block-heading {
        display: grid;
        grid-template-columns: 1fr 10px 1fr auto;
        flex-basis: 100%;
        padding-right: 35%;
    }
    .range-options__block--image .product-options__block-sep {
        min-width: 12px;
    }
    .range-options__block--image {
        width: 100%;
        min-width: 100%;
    }
}
@media (max-width: 840px) {
    .range-options__block--image .range_block_image {
        width: 376px;
        left: 60%;
        right: auto;
        height: 186px;
    }
    .range-options__block--image .product-options__block-heading {
        display: grid;
        grid-template-columns: 1fr 10px 1fr auto;
        flex-basis: 100%;
        padding-right: 30%;
    }
}

@media (max-width: 720px) {
    .range-options__block--image .product-options__block-sep {
        display: none;
    }
    .range-options__block--image .product-options__block-heading {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding-right: 0;
        flex-basis: 100%;
    }
    .range-options__block--image .range_block_image {
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        top: 12px;
    }
    .range-options__block--image.select_range-options__block .range_subtotal,
    .range-options__block--image.range-options__block .range_subtotal {
        padding: 0;
    }
}
@media (max-width: 550px) {
    .range-options__block--image .range_block_image {
       height: 155px;
    }

    .range-options__block--image .irs {
        display: none;
    }
    .range-options__block--image .range_block_image {
        top: 0;
    }
}

.range__disabled input {
    opacity: 0.5;
    pointer-events: none;
}