
.basket__clear {
    background-color: transparent;
    border: none;
    padding: 0;

    font-size: 13px;
    line-height: 1;
    color: #424242;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.basket__clear svg {
    margin-right: 8px;
    vertical-align: middle;
    fill: var(--color-primary);
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

@media (hover: hover) {
    .basket__clear:hover {
        color: #FF7517;
    }
    .basket__clear:hover svg {
        fill: #FF7517;
    }
}

.basket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 65px;
}

.basket__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 21px;
}

.basket__header h1 {
    margin-bottom: 0;
}

.basket__summary {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 330px;
}

.basket__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 40px;
}

.basket__good {
    padding-top: 30px;
    padding-bottom: 30px;

    border-bottom: 1px dashed #D9D9D9;
}

.basket__goods {
    border-top: 1px dashed #D9D9D9;
}

.good {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.good__img {
    margin-right: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.good__img img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.good__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.good__main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.good__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 27.26%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.good__name {
    margin-bottom: 6px;

    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #424242;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

@media (hover: hover) {
    .good__name:hover {
        color: #FF7517;
    }
}

.good__code {
    font-size: 13px;
    line-height: 18px;
}

.good__code b {
    font-weight: 600;
}

.good__availability {
    width: 19.47%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: auto;
    font-size: 14px;
    line-height: 20px;
}

.good__availability::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    vertical-align: middle;
    margin-right: 3px;

    border-radius: 50%;
}

.good__availability--true::before {
    background: #00B407;
}
.good__availability--false::before {
    background: #f44336;
}

.good__actions {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.actions__button {
    width: 34px;
    height: 34px;
    padding: 13px;

    color: #ACACAC;

    border-radius: 50%;
    border: none;
    background-color: #F5F5F5;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    cursor: pointer;
}

.actions__button[disabled] {
    color: #d5d5d5;
    background-color: #fafafa;
    cursor: not-allowed;
}

@media (hover: hover) {
    .actions__button:not([disabled]):hover {
        color: #ffffff;
        background-color: var(--color-primary);
    }
}

.actions__button svg {
    display: block;
    width: 8px;
    height: 8px;
    fill: none;
    stroke: currentColor;
}

.actions__input {
    width: 45px;
    margin: 0 4px;
    padding: 0 10px;

    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;

    border: none;
}

.good__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 23.26%;
    text-align: right;
}

.good__price {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.65;
    white-space: nowrap;
}
.good__price-old {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #808080;
    text-decoration: line-through;
    white-space: nowrap;
}

.good__price span {
    font-size: 0.73em;
}

.good__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.good__favorite--btn {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    white-space: nowrap;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.good__favorite--btn svg {
    margin-right: 5px;
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.good__favorite--btn svg {
    fill: var(--color-primary);
}
.good__favorite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 112px;
}
.basket .good__img {
    width: 96px;
}

.good__favorite,
.good__remove {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    white-space: nowrap;

    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.good__favorite.active {
    color: var(--color-primary);
}

.good__favorite .active,
.good__favorite.active .default {
    display: none;
}

.good__favorite.active .active {
    display: inline;
}

.good__favorite svg,
.good__remove svg {
    margin-right: 5px;
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.good__favorite svg {
    stroke: var(--color-primary);
    fill: none;
}

.good__favorite.active svg {
    fill:var(--color-primary);
}

.good__remove {
    margin-left: 28px;
    color: #ACACAC;
}

.good__remove svg {
    fill: currentColor;
}

.summary {
    padding: 24px 28px;

    font-size: 14px;
    line-height: 1.43;

    background: #F5F5F5;
    border-radius: 2px;
}

.summary__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 17px;
    padding-bottom: 14px;

    border-bottom: 1px solid #dddddd;
}

.summary__title {
    margin: 0;

    font-weight: 600;
    font-size: 22px;
    line-height: 1.64;
    color: #454545
}

.summary__quant {
    color: #ACACAC;
}

.summary__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 14px;
}

.summary__row b {
    margin-left: 4px;
    font-size: 16px;
    line-height: 1.25;
    text-align: right;
}

.summary__promocode {
    margin-bottom: 10px;
}

.summary__link {
    font-size: 14px;
    line-height: 20px;
}

.summary__goods {
    padding-bottom: 3px;
    margin-bottom: 21px;

    border-bottom: 1px solid #dddddd;
}

.summary__good {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkout__summary .summary__good .good__img {
    margin-right: 11px;
    width: 70px;
    height: 70px;
}
.checkout__summary .summary__good .good__img img {
    width: 70px;
    height: 70px;
    max-height: 70px;
    object-fit: contain;
}
.summary__good .good__img {
    margin-right: 11px;
}
.summary__good .good__img img {
    width: 70px;
    height: 70px;
    max-height: 70px;
    object-fit: contain;
}

.summary__good .good__name {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    margin-top: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
}

.summary__good .good__name,
.summary__good .good__name:hover {
    color: #424242;
}
.summary__good .good__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: 10px;
    margin-top: 8px;

    text-align: right;
}

.summary__good .good__price {
    margin-bottom: 1px;

    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.summary__good .good__quant {
    font-size: 14px;
    line-height: 19px;
    color: #ACACAC;
}

.checkout__summary .summary__row--summary {
    padding-top: 13px;
    margin-top: 25px;

    border-top: 1px solid #dddddd;
}

.promocode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.promocode__label {
    width: 100%;
    margin-bottom: 2px;

    font-size: 12px;
    line-height: 20px;
    color: #454545;
}

.promocode__input {
    width: calc(100% - 42px);
    height: 42px;
    padding: 11px 17px;

    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid white;
}

.promocode__input::-webkit-input-placeholder {
    color: #d9d9d9;
}

.promocode__input::-moz-placeholder {
    color: #d9d9d9;
}

.promocode__input:-ms-input-placeholder {
    color: #d9d9d9;
}

.promocode__input::-ms-input-placeholder {
    color: #d9d9d9;
}

.promocode__input::placeholder {
    color: #d9d9d9;
}

.promocode__button {
    width: 42px;
    height: 42px;
    padding: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.6601 9.82922C15.6475 9.84179 15.6347 9.85396 15.6216 9.86573L9.95125 15.5361C9.56072 15.9266 8.92756 15.9266 8.53703 15.5361C8.14651 15.1456 8.14651 14.5124 8.53703 14.1219L12.6599 9.99906L2 9.99906C1.44772 9.99906 1 9.55135 1 8.99906C1 8.44678 1.44772 7.99906 2 7.99906L12.4157 7.99906L8.53782 4.12117C8.1473 3.73064 8.1473 3.09748 8.53782 2.70696C8.92835 2.31643 9.56151 2.31643 9.95203 2.70696L15.6426 8.39751L15.6593 8.41384C15.706 8.46054 15.7471 8.5107 15.7826 8.56351C16.0451 8.95242 16.0042 9.48505 15.6601 9.82922Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.promocode__result {
    display: none;
    width: 100%;
    margin-top: 4px;

    font-size: 12px;
    line-height: 1.5;
    color: var(--color-primary);
}

.promocode__input.promocode--success ~ .promocode__result,
.promocode__input.promocode--error ~ .promocode__result {
    display: block;
}

.promocode__input.promocode--error {
    border-color: var(--color-primary);
}


.summary__row--summary {
    margin-bottom: 20px;
    /* -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; */

    font-weight: 600;
}

.summary__price,
.summary__row .summary__price {
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    white-space: nowrap;
}

.summary__price span {
    font-size: 0.94em;
}

.summary__button {
    display: block;
    padding: 16px;
    width: 100%;
    text-align: center;
}
.summary__button.no-active, .summary__button:disabled {
    background-color: #9e9e9e;
    cursor: default;
}

.summary__note {
    margin-top: 9px;

    font-size: 12px;
    line-height: 1.5;
    color: #ACACAC;
}

.summary__button:hover {
    color: white;
}

@media (hover: hover) {
    .good__favorite:hover svg {
        stroke: #FF7517;
    }
    .good__favorite.active:hover svg {
        fill: #FF7517;
    }

    .good__favorite:hover,
    .good__remove:hover {
        color: #FF7517;
    }
}

@media (max-width: 1100px) {
    .basket__header {
        display: block;
        margin-bottom: 31px;
    }

    .basket__header h1 {
        margin-bottom: 15px;
    }

    .basket {
        display: block;
        margin-bottom: 33px;
    }

    .basket__summary {
        width: 100%;
        padding: 28px;
    }

    .basket__body {
        margin-right: 0;
        margin-bottom: 45px;
    }
}

@media (max-width: 768px) {
    .good__main {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .good__info,
    .good__availability {
        width: 100%;
    }

    .good__info {
        margin-bottom: 11px;
    }

    .good__availability {
        margin-bottom: 15px;
    }

    .good__prices {
        width: auto;
    }

    .good__img {
        margin-right: 12px;
    }
    .basket .good__img {
        width: 80px;
    }
    .good__img img {
        width: 80px;
        height: 80px;
        max-height: 80px;
    }

    .summary__good .good__info {
        width: auto;
        margin-bottom: 0;
    }
}

@media (max-width: 450px) {
    .good__footer {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media (max-width: 359.9px) {
    .summary {
        padding-left: 20px;
        padding-right: 20px;
    }

    .good__img img {
        width: 70px;
        height: 70px;
        max-height: 70px;
    }

    .actions__input {
        width: 36px;
    }

    .good__price {
        font-size: 20px;
    }

    .good__remove {
        margin-left: 18px;
    }

    .basket__summary {
        padding-left: 20px;
        padding-right: 20px;
    }


    .summary__price,
    .summary__row .summary__price {
        font-size: 30px;
    }
}

.checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 65px;
}

.checkout__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 50px;
}

.checkout__summary {
    width: 32.3%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.checkout__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 10px;

    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

.checkout__accordions {
    border-top: 1px dashed #D9D9D9;
}

.checkout__accordion {
    padding-top: 48px;
    padding-bottom: 56px;

    border-bottom: 1px dashed #D9D9D9;
}
.checkout__accordion .accordion__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
}
.checkout__accordion .accordion__title .f-primary{
    font-weight: 700;
}
.checkout__step:not(:last-child) {
    margin-right: 22px;
}

.step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    color: #ACACAC;
}

.step::after {
    content: '';
    display: block;
    width: 24px;
    height: 9px;
    margin-left: 22px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='9' viewBox='0 0 24 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.1716 0.964804L23.3536 4.14678C23.5488 4.34205 23.5488 4.65863 23.3536 4.85389L20.1716 8.03587C19.9763 8.23113 19.6597 8.23113 19.4645 8.03587C19.2692 7.84061 19.2692 7.52403 19.4645 7.32877L21.7929 5.00034L3.656e-07 5.00034L2.78178e-07 4.00034L21.7929 4.00034L19.4645 1.67191C19.2692 1.47665 19.2692 1.16007 19.4645 0.964804C19.6597 0.769542 19.9763 0.769542 20.1716 0.964804Z' fill='%23DDDDDD'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}

.step:last-child::after {
    display: none;
}

.step::before {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    margin-right: 7px;

    background: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%23D9D9D9'/%3E%3Cline x1='5.41421' y1='8.03679' x2='7.91916' y2='10.5337' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='12.748' y1='6.1232' x2='8.12933' y2='10.7419' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.step__number {
    margin-right: 3px;

    white-space: nowrap;
    font-weight: 700;
}

.step__number::after {
    content: ':';
}

.step.current {
    color: #424242;
}

.step.current::before {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='9' r='8.5' fill='%23424242'/%3E%3Ccircle cx='8.5' cy='9' r='2.5' fill='white'/%3E%3C/svg%3E%0A");
}
.step.done {
    color: var(--color-primary);
}

.step.done::before {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%23C0263A'/%3E%3Cline x1='5.08804' y1='7.74969' x2='7.59299' y2='10.2466' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='12.4219' y1='5.83609' x2='7.80316' y2='10.4548' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.accordion__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
}

.accordion__body {
    margin-top: 21px;
}

.f-primary {
    color: var(--color-primary) !important;
}

.j-more-btn .active,
.j-more-btn.opened .default {
    display: none;
}

.j-more-btn.opened .active {
    display: inline;
}

.checkout__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form__group {
    width: 100%;
}

.form__group-6 {
    width: calc(50% - 15px);
}

.checkout .base-input {
    background-color: #F5F5F5;
}
.checkout .base-input::-webkit-input-placeholder {
    color: #D0D0D0;
}
.checkout .base-input::-moz-placeholder {
    color: #D0D0D0;
}
.checkout .base-input:-ms-input-placeholder {
    color: #D0D0D0;
}
.checkout .base-input::-ms-input-placeholder {
    color: #D0D0D0;
}
.checkout .base-input::placeholder {
    color: #D0D0D0;
}
.checkout textarea {
    min-height: 128px;
}

.req {
    color: var(--color-primary);
}

.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 12px;
    line-height: 18px;
    color: #ACACAC;
}

.info::before {
    content: '';

    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-right: 10px;

    background: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8.5' r='7.5' stroke='%23D0D0D0' stroke-width='2'/%3E%3Cline x1='8.72656' y1='6.95508' x2='8.72656' y2='12.3642' stroke='%23D0D0D0' stroke-width='2'/%3E%3Cline x1='8.72656' y1='4.63672' x2='8.72656' y2='6.18217' stroke='%23D0D0D0' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}

/*.form__info {
    max-width: 757px;
}*/

.checkout__radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 24px;
}

.checkout__form + .checkout__radios {
    margin-top: 20px;
}
.checkoutRadio.no-active {
    pointer-events: none;
    cursor: default;
}
.checkoutRadio.no-active .checkoutRadio__text {
    background: #D9D9D9;
    opacity: 0.7;
}
.checkoutRadio-6 {
    width: 50%;
}
.checkoutRadio-4 {
    width: 33.33%;
}
.checkoutRadio__input {
    position: absolute;
    opacity: 0;
}

.checkoutRadio__text {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 62px;
    width: 100%;
    padding: 10px 32px;

    font-size: 14px;
    line-height: 18px;
    color: #424242;

    border: 1px solid #D9D9D9;
    border-radius: 2px;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    cursor: pointer;
}

.checkoutRadio:not(:first-child) .checkoutRadio__text {
    border-left: none;
}

.checkoutRadio__text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 0;

    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: var(--color-primary) transparent transparent transparent;
    opacity: 0;

    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.checkoutRadio__text svg {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    fill: var(--color-primary);
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
}
.checkoutRadio__text img {
    width: 24px;
    height: 24px;
    margin-right: 7px;
}

.checkoutRadio .f-light {
    margin-left: auto;
    opacity: 0.43;
}

.checkoutRadio__input:checked ~ .checkoutRadio__text {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: white;
}
.checkoutRadio__input:checked ~ .checkoutRadio__text::after {
    opacity: 1;
}
.checkoutRadio__input:checked ~ .checkoutRadio__text svg {
    fill: white;
}

.checkoutRadio__input:checked ~ .checkoutRadio__text .f-light{
    opacity: 0.65;
}

.checkout__radios .checkoutRadio__input ~ .checkoutRadio__text img, .checkoutRadio__input:hover ~ .checkoutRadio__text img {
    /* width: 21px; */
    margin-right: 7px;
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
    /*filter: invert(49%) sepia(68%) saturate(4204%) hue-rotate(1deg) brightness(103%) contrast(105%);*/
}
.checkout__radios .checkoutRadio__input:checked ~ .checkoutRadio__text img {
    filter: brightness(0) invert(1);
}

@media (hover: hover) {
    .checkoutRadio__text:hover {
        background-color: #D9D9D9;
    }
}
.checkoutTab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.checkoutTab[hidden] {
    display: none;
}

.checkoutTab__col {
    width: calc(50% - 15px);
}

.checkoutTab__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    max-height: 200px;
    padding-right: 20px;
    margin-bottom: 25px;

    scrollbar-color: var(--color-primary) #EAEAEA;
    scrollbar-width: thin;
}

.checkoutTab__list::-webkit-scrollbar {
    width: 2px;
    background-color: #EAEAEA;
    border-radius: 90px;
}

.checkoutTab__list::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 90px;
}

.checkoutTab__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 18px;

    border-bottom: 1px solid #EAEAEA;
}

.checkoutTab__item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.checkoutTab__icon {
    width: 19px;
    height: 23px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 8px;

    background: url(../img/icons/point.svg) no-repeat;
    cursor: pointer;
    transition: opacity 250ms ease;
}

@media (hover: hover) {
    .checkoutTab__icon:hover {
        opacity: 0.9;
    }
}

.radioBlock {
    position: relative;
}
.radioBlock__input {
    position: absolute;
    opacity: 0;
}

.radioBlock__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 30px;

    font-size: 14px;
    line-height: 19px;

    cursor: pointer;
}

.checkout__radios .radioBlock__text {
    font-size: 12px;
    line-height: 20px;
}
.checkout__radios .radioBlock__text b {
    margin-bottom: 1px;

    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}

.radioBlock__text::before,
.radioBlock__text::after {
    content: '';
    position: absolute;

    border-radius: 50%;
    background: #F5F5F5;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.radioBlock__text::before {
    top: 0;
    left: 0;

    width: 19px;
    height: 19px;
}

.radioBlock__text::after {
    top: 7px;
    left: 7px;

    width: 5px;
    height: 5px;

    opacity: 0;
}
.radioBlock__input:checked ~ .radioBlock__text::before {
    background-color: var(--color-primary);
}
.radioBlock__input:checked ~ .radioBlock__text::after {
    opacity: 1;
}
@media (hover: hover) {
    .radioBlock__text:hover::before {
        background-color: #D9D9D9;
    }
    .radioBlock__input:checked ~ .radioBlock__text:hover::before {
        background-color: var(--color-primary);
    }
}

.radioList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.radioList--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.radioList[hidden] {
    display: none;
}

.radioList .radioList {
    margin-left: 33px;
}

.text-center {
    text-align: center;
}

a.button:hover {
    color: white;
}

.radioList .radioBlock {
    width: 25%;
    margin-bottom: 16px;
}

.radioList--column .radioBlock {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
}

.radioList--column .radioBlock:last-child {
    margin-bottom: 0;
}

.paymentTab .info {
    margin-bottom: 29px;
}

.paymentTab__title {
    margin: 7px 0 24px;

    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
}

.paymentTab .credit {
    margin-top: 26px;
}

.credit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.credit__item {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 25%;
    padding-left: 12px;
    padding-right: 10px;
}

.credit__item::before {
    content: '';

    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;

    width: 1px;

    background-color: #D9D9D9;
}

.credit__title {
    margin-bottom: 5px;

    font-size: 12px;
    line-height: 16px;
    color: #ACACAC;
}

.credit__number {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

@media (max-width: 1100px) {
    .checkout {
        display: block;
        margin-bottom: 33px;
    }

    .checkout__summary {
        width: 100%;
        padding: 28px;
    }

    .checkout__body {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .checkout {
        margin-bottom: 0;
    }
    .accordion__title {
        font-size: 20px;
        line-height: 28px;
    }
    .accordion__title .f-primary{
        font-size: 20px;
        line-height: 28px;
    }

    .checkout__accordion {
        padding-top: 30px;
        padding-bottom: 35px;
    }

    .form__group-6,
    .checkoutRadio-6,
    .checkoutRadio-4,
    .checkoutTab__col {
        width: 100%;
    }

    .checkoutTab__list {
        max-height: 255px;
    }

    .checkoutRadio__text {
        padding-left: 21px;
        padding-right: 21px;
    }

    .checkoutRadio:not(:first-child) .checkoutRadio__text {
        border-left: 1px solid #D9D9D9;
        border-top: none;
    }

    .checkoutRadio__input:not(:first-child):checked ~ .checkoutRadio__text {
        border-color: var(--color-primary);
    }

    .checkoutRadio__text::after {
        display: none;
    }

    .step__desc {
        display: none;
    }

    .step__number {
        margin-right: 0;
    }

    .checkout__step:not(:last-child) {
        margin-right: 16px;
    }

    .step::after {
        margin-left: 16px;
    }

    .credit {
        flex-wrap: wrap;
        margin-bottom: -24px;
    }

    .credit__item {
        width: 50%;
        margin-bottom: 24px;
    }

    .radioList .radioBlock {
        width: 33.33%;
    }

    .checkoutRadio__text {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .checkoutRadio .f-light {
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
    }
}

@media (max-width: 576px) {
    .radioList .radioBlock {
        width: 50%;
    }
}
@media (max-width: 359.9px) {
    .checkout__summary {
        padding-left: 20px;
        padding-right: 20px;
    }

    .checkout__step:not(:last-child) {
        margin-right: 10px;
    }

    .step::after {
        width: 20px;
        height: 7px;
        margin-left: 10px;
    }

    .checkoutRadio__text {
        padding-left: 16px;
        padding-right: 16px;
    }
    .summary__good .good__img {
        width: 60px;
        height: 60px;
    }
    .summary__good .good__img img {
        width: 60px;
        height: 60px;
        max-height: 60px;
        object-fit: contain;
    }

    .summary__good .good__name,
    .summary__good .good__info {
        margin-top: 0;
    }

    .radioList .radioBlock {
        width: 100%;
    }
}

.orderStatus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.orderStatus__label {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    margin-right: 18px;

    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;

    background: var(--color-primary);
    border-radius: 2px;
}

.orderStatus__text {
    font-weight: 600;
    font-size: 22px;
    line-height: 35px;
    color: var(--color-primary);
}

.summary__footer {
    display: none;

    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
}


.summary__footer .summary__price {
    margin-top: 2px;
    display: block;

    font-size: 20px;
    line-height: 20px;
}


.summary__footer .summary__price span {
    font-size: 14px;
}

.summary__footer .summary__button {
    margin-left: 18px;
    padding: 10px 42px 11px;
    width: auto;

    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

.summary__back {
    display: none;
}

.summary__back .link {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

@media (max-width: 768px) {
    .summary__back {
        display: block;
        text-align: center;
        margin-top: 18px;
    }

    .summary__footer {
        position: fixed;
        bottom: 56px;
        left: 0;
        z-index: 100;

        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 20px;

        background-color: #fff;
        box-shadow: 4px 0px 20px rgba(0, 0, 0, 0.07);
    }

    .fixed-steps .header,
    .fixed-steps .footer {
        display: none;
    }

    .fixed-steps .main-content {
        margin-top: 20px;
        padding-top: 54px;
        padding-bottom: 122px;
    }

    .fixed-steps .checkout__steps {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;

        height: 54px;
        width: 100%;
        padding: 18px 20px;
        margin: 0;

        background-color: #fff;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
    }
}
@media (max-width: 359.9px) {
    .summary__footer .summary__button {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.basket__good--false .good__actions {
    /* display: none; */
    opacity: 0;
    height: 0;
    pointer-events: none;
}
.basket__good--false .good__price {
    opacity: 0.5;
}
.btn-reset.accent-color {
    color: var(--color-primary);
    text-transform: none;
}
.message-delete {
    display: none;
}
.basket__good--false .message-delete {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-primary);
    padding: 8px 0 0;
}

.dropdown-block .bx-sls .bx-ui-sls-pane {
    z-index: 10;
}

.form__group .shop-list__filter,
.form__group .shop-variants {
    width: 100%;
    max-width: 100%;
}

.checkout__form .shop-variants__icon {
    display: block;
    width: 8px;
    height: 8px;

    background: url("/local/templates/mi/img/icons/arrow-down-orange.svg") no-repeat center / contain;
    transition: transform 250ms ease;
}

.checkout__form .shop-variants.open .shop-variants__icon {
    transform: rotate(-180deg);
}