/*
* Анимация загрузки в корзине
 */
._create_order_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

._create_order_button svg {
    display: none;
}

._create_order_button:disabled {
    background: rgba(24,22,23,0.075);
    color: #a7a5a5;
}

._create_order_button.--loading svg {
    display: block;
    fill: #fff;
    animation: rotate 0.8s infinite linear;
}

._create_order_button.--loading:hover {
    box-shadow: none;
}

._create_order_button:disabled svg {
    fill: #a7a5a5;
}

.order__error {
    display: none;
    background: #f54f4f;
    padding: 1rem;
    color: #fff;
    border-radius: 10px;
    max-width: 38rem;
    margin-bottom: 1rem;
}

.order__error.--active {
    display: block;
}

.order__error:hover {
    opacity: 0.8;
}

.order-complete__number {
    margin: 1.5rem 0;
    font-size: 1.3rem;
    color: #838383;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.order-complete__number span {
    color: #000;
    font-weight: bold;
}
.footer__bottom .social {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.footer__bottom .social__item+li {
    margin: 0;
}
.footer__bottom .social__item__link {
    color: #fff;
    font-size: unset;
    gap: 1rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 3rem;
}
.pagination li {
    min-width: 2.5rem;
    border-radius: 10px;
    height: 2.5rem;
    color: #fff;
    font-size: 1rem;
}
.pagination .btn-secondary {
    background: #e3e3e3;
    color: #000;
}
.pagination li a {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.seo-heading .section__title {
    margin-bottom: 0;
    font-size: 2.2rem;
}
.seo-heading p {
    margin: 0.5rem 0 1.5rem;
    color: rgba(24,22,23,0.5);
}