.ch-price-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

.ch-price-currencies {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ch-price-currency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid #dfe3e8;
    border-radius: 5px;
    background: #fff;
    color: #68717d;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.ch-price-currency strong {
    margin-left: 5px;
    color: #ff3e0c;
    font-weight: 700;
}

.ch-price-order {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ch-price-order__label {
    color: #69717c;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.ch-price-order__options {
    display: flex;
    align-items: stretch;
    gap: 5px;
}

.ch-price-order__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid #d9dde3;
    border-radius: 5px;
    background: #fff;
    color: #4d5560 !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
}

.ch-price-order__option:hover {
    border-color: #ff3e0c;
    color: #ff3e0c !important;
    text-decoration: none !important;
}

.ch-price-order__option.is-active {
    border-color: #ff3e0c;
    background: #fff4f0;
    color: #ff3e0c !important;
}

@media (max-width: 767px) {
    .ch-price-toolbar {
        width: 100%;
        align-items: stretch;
        justify-content: flex-start;
        margin-left: 0;
    }

    .ch-price-order {
        width: 100%;
    }

    .ch-price-order__options {
        width: 100%;
    }

    .ch-price-order__option {
        flex: 1 1 0;
    }
}

.ch-price-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 20px;

    background: rgba(17, 24, 39, 0.46);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .18s ease,
        visibility .18s ease;
}

.ch-price-loader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ch-price-loader__content {
    width: 220px;
    max-width: calc(100vw - 40px);

    padding: 24px 20px 20px;

    background: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 5px;

    text-align: center;

    box-shadow: 0 18px 48px rgba(0, 0, 0, .20);
}

.ch-price-loader__cart {
    width: 72px;
    height: 60px;

    margin: 0 auto 12px;

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

    animation: chCartMove 1.15s ease-in-out infinite;
}

.ch-price-loader__cart svg {
    display: block;
    width: 64px;
    height: 52px;
    overflow: visible;
}

.ch-price-loader__wheel {
    transform-box: fill-box;
    transform-origin: center;

    animation: chCartWheel .65s linear infinite;
}

.ch-price-loader__title {
    margin-bottom: 4px;

    color: #20252c;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;

    white-space: nowrap;
}

.ch-price-loader__text {
    color: #7a818b;

    font-size: 13px;
    line-height: 1.35;

    white-space: nowrap;
}

.ch-price-loader__dots {
    height: 8px;

    margin-top: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ch-price-loader__dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff3e0c;

    animation: chPriceDot 1s ease-in-out infinite;
}

.ch-price-loader__dots span:nth-child(2) {
    animation-delay: .15s;
}

.ch-price-loader__dots span:nth-child(3) {
    animation-delay: .30s;
}

@keyframes chCartMove {
    0%,
    100% {
        transform: translateX(-4px) translateY(0);
    }

    50% {
        transform: translateX(4px) translateY(-2px);
    }
}

@keyframes chCartWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes chPriceDot {
    0%,
    60%,
    100% {
        opacity: .30;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}


@media (max-width: 767.98px) {

    .ch-price-loader {
        padding: 16px;
    }

    .ch-price-loader__content {
        width: 205px;
        padding: 22px 16px 18px;
    }

    .ch-price-loader__cart {
        width: 66px;
        height: 55px;
        margin-bottom: 10px;
    }

    .ch-price-loader__cart svg {
        width: 58px;
        height: 48px;
    }

    .ch-price-loader__title {
        font-size: 15px;
    }

    .ch-price-loader__text {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ch-price-loader__cart,
    .ch-price-loader__wheel,
    .ch-price-loader__dots span {
    }
}