/* Success Page */
.success-page {
    padding-top: 120px;
    padding-bottom: 120px;
}
.success-page_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.success-page_title {
    margin-bottom: 28px;
}
.success-page_text {
    max-width: 432px;
    margin-bottom: 40px;
}

/* 404 */
.not-found_page {
    padding-top: 40px;
    padding-bottom: 70px;
}
.not-found_page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.not-found_page-title {
    margin-bottom: 16px;
    font-size: 68px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.not-found_page-text {
    margin-bottom: 24px;
}
.not-found_page-btn {
    margin-bottom: 44px;
}
.not-found_page-img-block {
    position: relative;
    width: 100%;
    height: 700px;
}
.not-found_page-img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Slider */
.slide-25 {
    width: 25% !important;
}
.slide-50 {
    width: 50% !important;
}
.slide-75 {
    width: 75% !important;
}
.slide-100 {
    width: 100% !important;
}

.module-products_slider {
    width: calc(100% + 20px);
    margin: 0 -10px;
}
.module-product_slider-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px 12px 10px;
    gap: 10px;
}
.module-product_slider-prev,
.module-product_slider-next {
    padding: 4px;
    cursor: pointer;
}
.module-product_slider-prev svg,
.module-product_slider-next svg {
    display: block;
}
.product-slide .product-item {
    margin: 0 10px;
}
.product-slide:first-child .product-item  {
    /* margin-left: 0; */
}
.product-slide:last-child .product-item {
    /* margin-right: 0; */
}

/* Pagination */
#pagination_block {
    display: none !important;
}
.pagination-text_loading {
    display: none;
    text-align: center;
    padding: 32px;
}

/* Success Page */
.success_page {
    padding: 120px 0;
}
.success_page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.success_page-title {
    max-width: 435px;
    margin-bottom: 28px;
}
.success_page-text {
    max-width: 435px;
}
.success_page-text p:first-child {
    margin-top: 0;
}
.success_page-text p:last-child {
    margin-bottom: 0;
}
.success_page-btn {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .not-found_page {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .not-found_page-title,
    .not-found_page-text {
        margin-bottom: 20px;
    }
    .not-found_page-btn {
        margin-bottom: 40px;
    }
    .not-found_page-btn span {
        display: none;
    }

    .success_page {
        padding: 80px 0;
    }
    .success_page-title {
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 24px;
    }
    .success_page-btn {
        margin-top: 32px;
    }

    .slide-m-25 {
        width: 25% !important;
    }
    .slide-m-50 {
        width: 50% !important;
    }
    .slide-m-75 {
        width: 75% !important;
    }
    .slide-m-100 {
        width: 100% !important;
    }

    .module-products_slider {
        width: calc(100% + 32px);
        padding: 0 8px;
        margin: 0 -16px;
        overflow: hidden;
    }
    .module-products_slider .swiper {
        overflow: visible;
    }
    .product-slide .product-item {
        margin: 0 4px;
    }
    .product-slide:first-child .product-item  {
        /* margin-left: 0; */
    }
    .product-slide:last-child .product-item {
        /* margin-right: 0; */
    }
    .module-product_slider-nav {
        display: none;
    }

}