section.productCard {
    /*margin: 2em 0 70px;*/
}

section.productCard .parts {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

section.productCard .product-gallery-place {
    width: 60%;
    flex-grow: 0;
}

section.productCard .product-gallery-place .images-gallery {
    /*position: sticky;*/
    /*top: var(--topmenu-height);*/
    /*transition: top var(--topmenu-transition);*/
}

#navbar.hide ~ section.productCard .product-gallery-place .images-gallery {
    top: 50px;
}

section.productCard .product-info-place {
    width: 40%;
    flex-grow: 1;
    padding: 0 70px;
    box-sizing: border-box;
}

section.productCard .product-info-place .maincontainer {
    margin: 0;
    padding: 0;
}

section.productCard .product-gallery-place,
section.productCard .product-info-place {
    position: sticky;
    top: var(--topmenu-height);
    transition: top var(--topmenu-transition);
}

section.productCard h1 {
    font-size: 16pt;
    /*font-weight: 600;*/
    line-height: 140%;
    text-transform: none;
}

section.productCard .tags {
    margin: 0 0 10px 0;
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    gap: 3px;
}

section.productCard .tags .tag {
    --tag-color: #dedede;
    display: block;
    background-color: var(--tag-color);
    border: 1px solid var(--tag-color);
    color: #fff;
    /*border-radius: 5px;*/
    line-height: 1.4em;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 2px 8px;
    text-transform: uppercase;
}

section.productCard .tags .tag.new {
    --tag-color: var(--color-green);
}

section.productCard .tags .tag.sale {
    --tag-color: #F74040;
}

section.productCard .tags .tag.hit {
    /*--tag-color: rgba(253, 0, 0, 0.75);*/
    --tag-color: #fff;
    color: var(--color-gold);
    border-color: var(--color-gold);

}

section.productCard .prices {
    width: 100%;
    margin-top: 2em;
    font-size: 12pt;
    max-width: 350px;
}

section.productCard .prices td {
    border-bottom: 1px solid var(--color-unactive);
    padding: 1px 0;
    text-align: right;
}

section.productCard .prices td:first-child {
    padding-right: 20px;
    text-align: left;
}


@media screen and (max-width: 1200px) {
    section.productCard .product-gallery-place {
        width: 55%;
    }

}

@media screen and (max-width: 1000px) {
    section.productCard .product-gallery-place {
        flex-grow: 1;
    }

    section.productCard .product-info-place {
        width: 100% !important;
        padding: var(--body-padding);
    }

    section.productCard .product-gallery-place,
    section.productCard .product-info-place {
        position: relative;
        top: unset;
    }

    section.productCard {
        margin-top: 0 !important;
    }
}

section.productCard .region-info {
    clear: both;
    margin-bottom: 1em;
}


/*
Блок кнопок
 */
.productCard .commands {
    margin-top: 50px;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.productCard .commands .button {
    margin-top: 10px;
    margin-right: 15px;
}