#product {
    padding-top: calc(var(--nav-height) + 45px);
    padding-bottom: 100px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.gen-tab-wrapper.orange .gen-tab-option.active {
    border-color: rgba(246, 139, 31, 1);
}

.gen-tab-wrapper.orange .gen-tab-option:not(.active):hover {
    border-color: rgba(246, 139, 31, 0.5);
}

.gen-tab-wrapper.blue .gen-tab-option.active {
    border-color: rgba(60, 99, 154, 1);
}

.gen-tab-wrapper.blue .gen-tab-option:not(.active):hover {
    border-color: rgba(60, 99, 154, 0.5);
}

.breadcrumb-wrapper {
    padding: 10px 0;
}

.product-container {
    display: flex;
    gap: 45px;
}

.product-images-wrapper {
    width: 600px;
    height: 450px;
    border: 1px solid lightgray;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-images-wrapper img {
    object-fit: contain;
    object-position: center;
}

.product-other-images-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.product-other-images-wrapper img {
        width: 50px;
        height: 50px;
        border: 2px solid lightgray;
        cursor: pointer;
}

.product-other-images-wrapper img.active {
    border: 2px solid #0F556F;
    cursor: default;
}

.product-title {
    margin: 0;
    font-size: 46px;
}

.product-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
    flex: 1;
}

.product-description {
    line-height: 1.75em;
}

.product-details-container {
    display: flex;
    flex-direction: column;
}

a.hyperlink {
    color: #0F556F;
    font-weight: 600;
}

a.hyperlink:hover {
    cursor: alias;
    color: #156b8a;
    text-decoration: underline;
}

.product-documents ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-documents ul li {
}


@media screen and (max-width: 1360px) {
    .product-images-wrapper {
        width: 500px;
        height: 350px;
    }
}

@media screen and (max-width: 1200px) {
    .product-container {
        flex-direction: column;
    }
    .product-images-wrapper {
        width: 100%;
        height: 50vh;
    }
}

@media screen and (max-width: 650px) {
    .product-images-wrapper {
        width: 100%;
        height: 400px;
    }
}