﻿
.details-description-header {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 52px;
}

    .details-description-header .image-wrapper {
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

        .details-description-header .image-wrapper img {
            min-height: 100%;
            object-fit: cover;
        }

        .details-description-header .image-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .details-description-header .product-thumbnail {
        max-width: min(calc((270 / 375) * 100vw), 425px);
        margin: -77px 15px 50px auto;
    }

        .details-description-header .product-thumbnail .price-info .price-table-line {
            font-size: 16px;
            line-height: 19px;
            color: #242424;
        }

            .details-description-header .product-thumbnail .price-info .price-table-line:not(:last-of-type) {
                margin-bottom: 5px !important;
            }


        .details-description-header .product-thumbnail .link {
            padding-bottom: 10px;
        }

    .details-description-header .text-container {
        padding: 0 15px;
    }

        .details-description-header .text-container .title {
            font-weight: bold;
            line-height: 43px;
            margin: 0;
            margin-bottom: 10px;
        }

        .details-description-header .text-container p {
            font-family: "Roboto", sans-serif !important;
            font-size: 20px;
            line-height: 26px;
            margin: 0;
        }

            .details-description-header .text-container p:not(:last-child) {
                margin-bottom: 20px;
            }

        .details-description-header .text-container .links {
            display: flex;
            flex-wrap: wrap;
            column-gap: 30px;
            row-gap: 10px;
            margin-top: 30px;
        }

            .details-description-header .text-container .links a {
                color: #242424;
                font-family: "Roboto", sans-serif !important;
                font-size: 14px;
                line-height: 20px;
                margin: 0;
            }

        .details-description-header .text-container ul {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 0;
        }

            .details-description-header .text-container ul li {
                font-family: Roboto, sans-serif;
                font-size: 20px;
                font-weight: 400;
                line-height: 26px;
            }

                .details-description-header .text-container ul li:not(:last-of-type) {
                    margin-bottom: 10px;
                }

@media (min-width: 768px) {
    .details-description-header {
        display: grid;
        grid-template-columns: calc((743 / 1366) * 100%) 1fr;
        grid-template-rows: 551px 1fr;
        row-gap: 60px;
        margin-bottom: 70px;
    }

        .details-description-header .image-wrapper {
            grid-column: 1 / span 2;
            grid-row: 1;
            height: 551px;
        }

            .details-description-header .image-wrapper img {
                min-width: 100%;
                min-height: unset;
            }

        .details-description-header .product-thumbnail {
            grid-column: 2;
            grid-row: 1 / span 2;
            justify-self: end;
            /*align-self: end;*/
            max-width: min(calc((536 / 1366) * 100vw), 628px);
            margin: 0;
            margin-right: 23px;
            margin-top: 443px;
        }

        .details-description-header .text-container {
            grid-column: 1;
            grid-row: 2;
            width: 100%;
            /*min-height: 300px;*/
            padding: 0;
            padding-left: 43px;
        }

            .details-description-header .text-container .links {
                margin-top: 60px;
            }
}

@media (hover: hover) {
    .details-description-header .text-container .links a:hover,
    .details-description-header .text-container .links a:focus {
        color: #c30000;
        text-decoration: none;
    }
}
