/* list */
.product_update_container {
    min-height: 500px;
    margin-bottom: 60px;
}
.product_updata_subheading {
    font-family: var(--font-family-primary);
    margin-bottom: 40px;
}

.product_update_row {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin: 0 auto;
    position: relative;
}
.product_update_sidebar {
    flex-basis: 226px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: 100px;
    margin-top: 72px;
}
.product_update_ul {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}
.product_update_li {
    display: flex;
    position: relative;
}
.product_update_li:hover .product_update_li__bullet {
    border: 5px solid var(--color-green);
}
.product_update_li__date {
    font-family: var(--font-family-primary);
    flex-basis: 120px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 14px;
    max-width: 120px;
    font-size: 16px;
    color: #858585;
}
.product_update_li__divider {
    background-color: #e9e9e9;
    flex-basis: 2px;
    flex-grow: 0;
    flex-shrink: 0;
}
.product_update_li__bullet {
    background: white;
    border: 5px solid #777777;
    border-radius: 50%;
    height: 20px;
    left: 111px;
    position: absolute;
    top: 16px;
    width: 20px;
}
.product_update_li__description {
    flex: 0 1 100%;
    padding-bottom: 62px;
    padding-left: 32px;
}
.product_update_li__title {
    font-family: var(--font-family-primary);
    display: inline-block;
    font-size: 24px;
    margin-top: 13px;
    margin-bottom: 10px;
    line-height: 28px;
}
.product_update_li__author {
    font-family: var(--font-family-primary);
    color: #858585;
    margin-bottom: 10px;
}
.product_update_li__description img {
    max-width: 100%;
    height: auto;
}
.product_update_li__ext-url {
    display:block;
    margin-top: 20px;
}

/* product_update__labels */
.product_update__labels {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}
.product_update__labels li {
    font-family: var(--font-family-primary);
    display: inline-block;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 8px 14px;
    margin-right: 5px;
}

/* product_update_labels */
.product_update_labels {
    list-style: none;
    margin: 0 0 50px 0;
    padding: 0;
}
.product_update_labels li {
    border-top: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
}
.product_update_labels li:last-child {
    border-bottom: 1px solid #e7e7e7;
}
.product_update_labels li a {
    font-family: var(--font-family-primary);
    display: block;
    font-size: 14px;
    padding: 10px 20px;
    color: var(--color-default);
    border-left: 2px solid #fff;
}
.product_update_labels li a.active {
    border-left: 2px solid var(--color-green);
}

/* search form */
.product_update_form_search {
    position: absolute;
    top: 0px;
    right: 0;
    width: 226px;
    margin-bottom: 10px;
}
.product_update_form_search__controls {
    position: relative;
    display: flex;
    align-items: center;
}
.product_update_form_search__field {
    margin: 8px 0;
    padding: 6px 32px 6px 15px;
    border: 1px solid #e7e7e7;
    box-sizing: border-box;
}
.product_update_form_search__submit {
    display:none;
}
.product_update_form_search__reset {
    position: absolute;
    right: 10px;
}

.product_update_empty {
    width: 100%
}

/* mode view */
.product_update {
    margin-top: 20px;
}
.product_update__back {
    margin-bottom: 25px;
}
.product_update__date-author {
    font-family: var(--font-family-primary);
    color: #858585;
    margin-bottom: 20px;
}
.product_update__title {
    font-family: var(--font-family-primary);
    display: inline-block;
    font-size: 24px;
    margin-bottom: 10px;
}
.product_update__description {
    margin-bottom: 15px;
}
.product_update__description img {
    max-width: 100%;
    height: auto;
}

/* media queries */
@media (max-width: 992px) {
    .product_updata_subheading {
        margin-bottom: 20px;
    }

    .product_update_form_search {
        position: sticky;
        background: #fff;
        padding: 0 0 10px 0;
        width: 100%;
        z-index: 100;
        margin:0;
        top:60px;
    }
    .product_update_row {
        width: auto;
        flex-direction: column;
    }
    .product_update_sidebar {
        flex-basis: auto;
        margin-left: 0;
        margin-top: 0;
    }
}
@media (max-width: 758px) {
    .product_update_li {
        flex-direction: column;
    }
    .product_update_li__date {
        flex-basis: auto;
        flex-grow: inherit;
        flex-shrink: inherit;
        font-size: 14px;
        margin: 0;
        max-width: none;
        text-align: left;
        text-transform: uppercase;
        width: fit-content;
    }
    .product_update_li__divider {
        display: none;
    }
    .product_update_li__bullet {
        display: none;
    }
    .product_update_li__description {
        padding-left: 0;
    }
}