.wine_type_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 96px auto;
}

.reverse_sides {
	flex-direction: row-reverse;
}

.wine_type_wrapper .type_content {
    position: sticky;
    top: 176px;
}

.wine_type_wrapper .type_column,
.wine_type_wrapper .wine_type_images {
    width: calc((100% - 96px) / 2);
}

.wine_type_wrapper .type_content h2 {
    margin-top: -10px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.wine_type_wrapper .type_content .button {
    margin-top: 15px;
}

.type_page_separator {
    height: 2px;
    background-color: var(--border-grey);
    width: 100%;
}

.wine_type_wrapper:nth-of-type(2) .type_page_separator {
    display: none;
}

.wine_type_wrapper .wine_type_images .hero_image {
    margin-top: 30px;
}

.wine_type_wrapper .wine_type_images .hero_image:first-of-type {
    margin-top: 0;
}

.page_jump {
    position: absolute;
    top: -194px;
}

.wines_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 96px auto;
}

.wines_wrapper:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.wines_wrapper .wine_bottle,
.wines_wrapper .wine_details {
    width: calc((100% - 96px) / 2);
}

.wines_wrapper .wine_bottle {
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--border-grey);
    padding: 15px;
    box-sizing: border-box;
    height: 600px;
}

.wines_wrapper .wine_bottle img {
    height: 100%;
    object-fit: contain;
}

.wine_details h2 {
    margin-top: -10px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.wine_details .detail_heading h4 {
    margin: 0 0 -5px;
}

.wines_wrapper .product_details_base .price {
    margin: 0;
    font-weight: 700;
}

.wines_wrapper .product_details_base .price i {
    margin-right: 10px;
}

.wines_wrapper .score {
    margin-bottom: -10px;
}

.wines_wrapper .review_score p {
    margin-top: 10px;
}

.wines_wrapper .product_details_base .button {
    margin-top: 20px;
}

.wines_wrapper .display_flex .label_container .label {
    position: relative;
    top: 0;
    left: 0;
}

@media (max-width: 1100px) {
    .wines_wrapper .wine_bottle {
        width: 350px;
    }

    .wines_wrapper .wine_details {
        width: calc(100% - 96px - 350px);
    }
}

@media (max-width: 1000px) {
    .wines_wrapper .wine_details {
        width: calc(100% - 30px - 350px);
    }

    .wine_type_wrapper .type_column,
    .wine_type_wrapper .wine_type_images {
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 900px) {
    .wines_wrapper,
    .wines_wrapper:nth-of-type(2n),
    .wine_type_wrapper {
        flex-direction: column;
    }

    .wines_wrapper .wine_bottle,
    .wines_wrapper .wine_details,
    .wine_type_wrapper .type_column,
    .wine_type_wrapper .wine_type_images {
        width: 100%;
    }

    .wine_type_wrapper .type_content {
        position: relative;
        top: unset;
        margin-bottom: 96px;
    }

    .wines_wrapper .wine_bottle {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .wine_type_wrapper .type_content,
    .wines_wrapper .wine_details {
        text-align: center;
    }

    .wine_details .review_score {
        justify-content: center;
    }

    .wine_details .detail_heading h4 {
        width: 100%;
    }

    .wine_type_wrapper .type_content .buttons_container {
        justify-content: center;
    }

    .wines_wrapper .wine_bottle {
        height: 400px;
    }

    .wines_wrapper .display_flex {
        justify-content: center;
    }

    .wines_wrapper .product_details_base .button {
        margin: 20px auto 0;
    }
}