.bloknoty-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 48% 2rem 48%;
    grid-template-columns: 48% 48%;
    gap: 2rem;
    position: relative;
    max-width: 70%;
    margin: 2rem auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.bloknoty-wrapper .bloknoty-left {
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
}

.bloknoty-wrapper .bloknoty-right img {
    width: 100%;
    height: 100%;
}

/* ----------- */

.btn-primary {
    background-color: var(--light-blue);
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary:hover {
    -webkit-box-shadow: 0px 0px 10px 0 rgba(47, 47, 47, 0.545);
            box-shadow: 0px 0px 10px 0 rgba(47, 47, 47, 0.545);
    color: #fff;
    border: 1px solid #7e7e7e;
}

.btn-secondary {
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border:none;
    /* background-color: #00adff; */
    background-color: #6c6c6c;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-secondary:hover {
    -webkit-box-shadow: 0px 0px 10px 0 rgba(47, 47, 47, 0.545);
            box-shadow: 0px 0px 10px 0 rgba(47, 47, 47, 0.545);
    color: #fff;
    background-color: #4b4b4b;
}

/* ------------------------ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    right: 25px;
    top: 10px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #bbb;
}

.portfolio-img {
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.portfolio-img:hover {
    opacity: 0.8;
}

/* Стили для новых модальных окон */
#priceModal, #fullPriceModal {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

#priceModal .modal-content-price,
#fullPriceModal .modal-content-price {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    width: 41rem;
    position: relative;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 10px #3b3838;
            box-shadow: 0px 0px 10px #3b3838;
    display: -ms-grid;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

#priceModal .modal-content-price form,
#fullPriceModal .modal-content-price form {
    display: -ms-grid;
    display: grid;
    gap: 1rem;
}

#priceModal .modal-content-price form .priceRequestForm-inner,
#fullPriceModal .modal-content-price form .priceRequestForm-inner {
    display: -ms-grid;
    display: grid;
}

#priceModal .modal-content-price form .priceRequestForm-inner input,
#fullPriceModal .modal-content-price form .priceRequestForm-inner input,
#fullPriceModal .modal-content-price form .priceRequestForm-inner textarea,
#fullPriceModal .modal-content-price form .priceRequestForm-inner select {
    height: 2.5rem;
    width: 30rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
}

#fullPriceModal .modal-content-price form .priceRequestForm-inner textarea {
    height: 6rem;
    resize: vertical;
}

#priceModal .modal-content-price .close-price {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #181818;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

#priceModal .modal-content-price.close-price:hover,
#priceModal .modal-content-price .close-price:focus,
#fullPriceModal .modal-content-price.close-full-price:hover,
#fullPriceModal .modal-content-price .close-full-price:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#fullPriceModal .modal-content-price .close-full-price {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #181818;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

.podrobnee {
    color: #fe2e46;
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 10px;
}

.podrobnee:hover {
    text-decoration: underline;
}

.info-text {
    margin-top: 5px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #495057;
}

.priceRequestForm-inner {
    position: relative;
    margin-bottom: 10px;
}

.checkbox-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
}

#fullPriceModal .modal-content-price {
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
}


/* -------------------------- */


.title_inner h2 {
    /* font-size: 2rem; */
    color: #282929;
    margin: 1rem 0;
}
.title_inner p {
    padding-bottom: 0.3rem;
}
.title_inner table {
    width: 100%;
    border-collapse: collapse;
}
.scroll_table {
    overflow-x: auto;
    margin: 2rem 0;
}
.osobennosti {
    padding: 2rem 0;
}
.osobennosti h2 {
    margin: 1rem 0;
    font-size: 1rem;
}
.osobennosti p {
    padding-bottom: 1rem;
    font-size: 0.85rem;
}
.osobennosti ul {
    padding-left: 3rem;
    font-size: 0.85rem;
}
.osobennosti li {
    padding-bottom: 1rem;
    font-size: 0.85rem;
}

.title_inner th, td {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
}
.title_inner th {
    background-color: #6C6C6C;
    color: white;
    font-size: 0.85rem;
}
.title_inner tr:nth-child(even) {
    background-color: #f2f2f2;
}
.title_inner .note {
    font-size: 0.85rem;
}

.table_title {
    /* background-color: #00adff!important; */
    background-color: #F3F3F3!important;
    padding: 1rem 0!important;
    font-size: 1.2rem!important;
    color: #444444!important;
}

.title-inner-raschet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* ----------- */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.potfolio-image {
    position: relative;
    padding-bottom: 100%; /* Создаем квадратный контейнер */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}

.potfolio-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.potfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.potfolio-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        max-width: 95%;
    }
}

/* ------------ */

.row_section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.row_section .card {
    border: 1px solid #b9b9b9;
}

.row_section .card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.row_section .card:hover {
    box-shadow: 0px 0px 8px #858585;
}

.row_section .card h3 {
    height: 3rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row_section .card img {
    width: 100%;
    height: 15rem;
    transition: ease 0.2s;
}

.row_section .card:hover img {
    margin-bottom: -0.5rem;
}

.pechat-products {
    margin: 0!important;
    padding: 0 4rem 2rem 4rem!important;
    background-color: #F2EDED;
}

.pechat-products h2 {
    padding: 2rem 0;
    text-align: center;
}

/* .row_section .card {
    position: relative;
    width: 100%;
    height: 16rem;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow var(--transition);
    transition: -webkit-box-shadow var(--transition);
    -o-transition: box-shadow var(--transition);
    transition: box-shadow var(--transition);
    transition: box-shadow var(--transition), -webkit-box-shadow var(--transition);
}

.row_section .card:hover {
    -webkit-box-shadow: 0px 0px 15px #383838;
            box-shadow: 0px 0px 15px #383838;
}

.row_section .card:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(36, 61, 115, 0.53);
    z-index: 10;
    -webkit-transition: background-color var(--transition);
    -o-transition: background-color var(--transition);
    transition: background-color var(--transition);
}

.row_section .card:hover:before{
    background-color: rgba(36, 61, 115, 0.207);
}

.row_section .card:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.row_section img {
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.row_section h3 {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 15;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px #383838 !important;
    text-align: center;
} */

/* ---------------------- */

/* .skidka {
    background-color: #F3F3F3;
    padding: 4rem 4rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}

.skidka .skidka-img {
    background-image: url('/public/images/skidka.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.skidka > div  {
    padding: 4rem 5rem;
    display: grid;
    gap: 2rem;
    justify-items: center
}

.skidka div form {
    display: grid;
    gap: 0.5rem;
}

.skidka div form input {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
    background-color: #fff;
}

.skidka div h2 {
    text-transform: uppercase;
} */

/* ------------------------ */

/* .footer-inner {
    display: grid;
    grid-template-columns: repeat(5 , 1fr);
    padding: 2rem 0;
}

.footer-inner h4 {
    margin-bottom: 1rem;
}

.footer-inner .footer-group > div {
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.footer-height-line {
    display: flex;
    justify-content: center;
}

.footer-height-line .height-line {
    height: 100%;
    width: 1px;
    background-color: #d8d8d8;
}

.footer-inner .footer-group > div:hover a {
    text-decoration: underline;
}

.footer-contacts > div {
    display: flex;
    gap: 0.55rem;
}

.footer-under {
    display: flex;
    gap: 4rem;
    font-size: 0.7rem;
    padding: 0 0 1rem 0;
    margin: 0 4rem;
    opacity: 0.5;
} */

/* ------------------------- */

.calculated-grid h2 {
    padding: 2rem 0;
}

.calculated-image {
    display: grid;
    grid-template-columns: repeat(6 , 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

.calculated-iframe {
    padding-bottom: 2rem;
}

.calculated-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #c9c9c9;
    transition: ease 0.3s;
    cursor: pointer;
}

.calculated-image img:hover {
    border: 1px solid #646464;
    box-shadow: 0px 0px 8px #535353;
}

.calculated-iframe iframe {
    display: none;
    border: 1px solid #c9c9c9;
    transition: ease 0.3s;
}

.calculated-iframe iframe:hover {
    border: 1px solid var(--light-blue);
    box-shadow: 0px 0px 8px var(--light-blue);
}

/* -------------------- */

.kont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.left-side {
    color:#1C274C;
    display: grid;
    gap:0.5rem;
    grid-template-rows: 3rem 3rem 3rem 3rem auto
}

.right-side {
    display: grid;
    gap:0.5rem;
    grid-template-rows: 3rem 3rem 3rem auto
}

.left-side a {
    font-weight: 600;
    font-size: 1.2rem;
}

.left-side h3 {
    margin-bottom: 1rem;
}

/* -------------------- */

.header-page {
    padding: 1rem 1rem;
    background-color: var(--light-blue);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------ */

.banner_other {
    background-color: #DEE2EA;
    display: flex;
    justify-content: center;
    padding: 8rem 0;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
}
.banner_other h1 {
    font-size: 3rem;
    /* color: #282929; */
    color: #ffffff;
    z-index: 10;
}

.banner_other .backgrdop_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #1c274c89;
}

/* -------------- */

footer {
    border-top: 1px solid #d8d8d8;
}

footer .text-muted {
    text-align: center;
    display: block;
    color: #8c8c8c;
}

/* ------------- */

.main_banner {
    background-image: url('/public/images/main_banner.jpg');
    background-size: cover;
    background-position: 0 35%;
    background-repeat: no-repeat;
}

.main_banner .banner_wrapper {
    padding: 7rem 0;
    text-align: center;
    background: rgba(36,61,115,0.70)
}

.banner_wrapper h1 {
    font-size: 5rem;
    color: #fff;
}

.banner_wrapper p {
    color: #fff;
    font-size: 1.2rem;
}

/* -------------- */

.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: #fe2e46;
    text-decoration: none;
}

/* --------------------- */

.product-card-holder h1 {
    padding-bottom: 1.5rem;
    font-size: 1.8rem;
}

.product-split {
    display: grid;
    padding-bottom: 2.5rem;
    grid-template-columns: 50% 48%;
    gap: 2rem;
    justify-content: space-between;
}

.main-slider {
    overflow: hidden;
    position: relative;
}

.main-slider .swiper-slide {
    padding: 0 5rem;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.thumb-slider {
    overflow: hidden;
}

.thumb-slider .swiper-slide {
    cursor: pointer;
}

.thumb-slider .swiper-slide {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 2px;
}

.thumb-slider .swiper-slide-thumb-active {
    border: 1px solid var(--light-blue);
}

.main-slider-button-wrapper {
    position: absolute;
    display: flex;
    gap: 1rem;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.main-slider-swiper-button-next,
.main-slider-swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.main-slider-swiper-button-next:after,
.main-slider-swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
}

.main-slider-swiper-button-next:after {
    content: 'next';
}

.main-slider-swiper-button-prev:after {
    content: 'prev';
}

.main-slider-swiper-button-prev.swiper-button-disabled,
.main-slider-swiper-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

.description-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
}

.characteristics {
    padding: 2.5rem 0;
}

.characteristics h3 {
    font-size: 1.125rem;
    font-family: var(--manrope700);
    color: var(--blue);
}

.characteristics-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.characteristics h2 {
    margin-bottom: 1.5rem;
}

.characteristics h3 {
    margin-bottom: 1rem;
}

.main-char-group {
    grid-column: span 2;
}

.main-char-group-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
}

.main-char-group-inner span {
    font-size: .875rem;
    font-weight: 500;
    color: #4b4b4b;
}

.main-char-group-inner p {
    font-weight: 600;
    font-size: .875rem;
}

.main-char-group-inner > div {
    border-bottom: 1px solid #F0F0F0;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    transition: all .3s ease;
}

.main-char-group-inner > div:hover {
    border-bottom: 1px solid var(--light-blue);
}

.short-info-upper {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 3.375rem;
}

.short-info-upper {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-content: flex-start;
}

.article-copy {
    cursor: pointer;
}

.article {
    display: flex;
    gap: 1rem;
}

.nanesenie {
    display: grid;
    gap: 1rem;
}

.all-characteristics {
    font-size: .875rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: underline;
}

.retail-price p {
    font-size: 2.4rem;
    font-weight: 600;
}

.article svg {
    display: none;
}

/* ----------------- */

.quantity-container {
    margin-bottom: 1rem;
}

.quantity-container input {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
}

.nanesenie-form {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
}

.nanesenie-form label {
    display: block;
    margin-top: 10px;
}

.nanesenie-form input,
.nanesenie-form select {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
    width: 100%;
}

.test-nanesenie {
    margin-bottom: 2rem;
}

/* ------------------ */

.product-card .product-actions {
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.product-actions input {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
    width: 7rem;
}

.product-actions .add-to-cart {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
}

.variation-tooltip {
    margin-top: 1rem;
    position: absolute;
    background-color: #333333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
}

.variation-tooltip:after {
    content: "";
    position: absolute;
    top:-0.7rem;
    left: 1rem;
    width: 1.6rem;
    height: 1.2rem;
    background-color: #333333;
    z-index: 100;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
}

.variation-tooltip p {
    margin: 5px 0;
}

.product_tooltip_art {
    font-size: 0.9rem;
    color:#b1b1b1;
}

.product_tooltip_line {
    height: 0.5rem;
    border-bottom: 1px solid #535353;
}

.product_tooltip_price {
    font-size: 1.4rem;
}

.product_tooltip_stock-text {
    margin: 0;
    padding: 0;
    line-height: 1;
    color:#b1b1b1;
    font-size: 0.9rem;
}

.variation_product .variations {
    width: 100%;
    /* height: 2.6rem; */
    /* background-color: #d4d4d4; */
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap:0.5rem;
}

.variation_product .variations a {
    width: 4rem;
    display: block;
    /* height: 3rem; */
}

.variation_product .variations a img {
    width: 100%;
    height: 100%;
}

/* ------------------ */

.alert-message , .cart-message {
    color: green;
    padding: 1rem 0;
}

/* ------------------- */

.filter-options * input , .filter-options * select , .top_sidebar * select {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
}

/* ----------------- */

.cart {
    display: grid;
    grid-template-columns: 3fr 2fr;
    padding: 2rem 0;
    min-height: 80vh;
}

.cart * h2 {
    margin-bottom: 2rem;
}

.callback-cart p {
    margin-bottom: 1rem;
}

.items-cart {
    display: grid;
    gap: 1rem;
}

.cart-item ul {
    padding-left: 2rem;
}

.input-carts form {
    display: grid;
    gap:0.5rem;
}

.input-carts form input {
    height: 2.5rem;
    padding: 0.2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px #d8d8d8 solid;
}

/* ----------------- */

@media (max-width: 767.98px) {

    .bloknoty-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        max-width: 100%;
        gap: 1rem;
    }

    .bloknoty-right img {
        max-width: 60%;
        display: block;
        margin: 0 auto;
    }

    .row_section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .kont-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .center-img img {
        width: 100%;
        height: 100%;
    }

    .row_section .card img {
        width: 100%;
        height: 10rem;
    }

    .row_section .card h3 {
        height: 3rem;
        font-size: 1rem;
        text-align: center;
    }

    #priceModal .modal-content-price,
    #fullPriceModal .modal-content-price,
    .modal-content {
        margin: 50% auto;
        width: 100%;
        padding: 1.5rem;
    }
    
    #priceModal .modal-content-price form .priceRequestForm-inner input,
    #fullPriceModal .modal-content-price form .priceRequestForm-inner input,
    #fullPriceModal .modal-content-price form .priceRequestForm-inner textarea,
    #fullPriceModal .modal-content-price form .priceRequestForm-inner select {
        width: 100%;
    }

    .skidka  {
        grid-template-columns: 1fr;
    }

    .skidka-img {
        height: 14rem;
    }

    .skidka .skidka-right {
        padding: 0;
    }

    .calculated-image {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.5rem;

    }

    .footer-height-line {
        display: none;
    }

    .pechat-products {
        padding: 0 2rem!important;
    }

    .skidka {
        padding: 2rem 2rem;
    }

    .product-split {
        display: grid;
        padding-bottom: 2.5rem;
        grid-template-columns: 100%;
        gap: 3rem;
        justify-content: space-between;
    }

    .breadcrumbs * {
        font-size: 1.1rem;
    }

    .description-wrapper {
        display: grid;
        grid-template-columns: 100%;
        gap: 2rem;
    }

    .short-info-upper {
        display: grid;
        gap: 1.25rem;
        margin-bottom: 3.375rem;
        font-size: 1.2rem;
    }

    .btn-secondary {
        background-color: #6c6c6c;
        padding: 0.5rem 1rem;
        font-weight: 600;
        color: #fff;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-align: center;
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .all-characteristics {
        /* font-size: 1.175rem; */
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--blue);
        text-decoration: underline;
    }

    .main-char-group-inner {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 2rem;
    }

    .main-char-group-inner span {
        /* font-size: 1.175rem; */
        font-size: 0.95rem;
        font-weight: 500;
        color: #4b4b4b;
    }

    .main-char-group-inner p {
        font-weight: 600;
        /* font-size: 1.275rem; */
        font-size: 0.95rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        max-width: 95%;
    }
}