
.content_category {
    display: flex;
    justify-content: start;
    gap: 40px;
}

.content_category-list {
    display: block;
    
}

.content_category-list-container {
    max-width: 850px;
}
 

.content_product-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product_img_wrapper {
    max-width: 280px;
    max-height: 280px;
    flex: 1 1 auto;
    border: 0.6px solid rgb(173, 173, 173);
    padding: 5px 10px;
    margin-right: 50px;
}

.product_img_wrapper img {
    width: 100%;
    height: 100%;
}

.product_item_title {
    max-width: 550px;
    min-height: 320px;
    flex: 1 1 auto;
}

.name_product-item {
    font-size: 36px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 10px;
}

.info_small-text {
    font-size: 12px;
    color: #666666;

}

.content_name-category .name_category {
    text-align: center;
    font-size: 24px;
}

.link_pages-content-item {
    font-size: 11px;
}


.content_product-main {
    width: 100%;
    min-height: 200px;
}

.text_description-product {
    max-width: 100%;
    min-height: 100px;
    font-size: 15px;
    word-wrap: break-word;
    padding: 0 10px;
    overflow: hidden;
    white-space: pre-wrap;
    text-align: left;
}

.item_product-wrapper:hover {
    cursor: pointer;
}

.text_description-product-image img{
    width: 100%;
}

.item_product-img {
    transition: 0.5s; 
    cursor: pointer;
}

.big_img_wrapper {
    display: block;
    min-width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.966);
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-behavior: unset;
    overflow-x: hidden;
} 

.big_img-style {  
    flex: 1 1 auto;
    transform: scale(0.35);
    cursor: pointer;
    overflow-x: hidden;
}

table,table tr th, table tr td { 
	border:1px solid #444444!important; 
} 
table{
	width: 100%;
	min-width: 800px;
	text-align: center; 
	border-collapse: collapse;	
	padding:2px;
	font-weight: normal;
}
table *{
	font-size: 14px!important;	
}
table tr th{
	background: #045ba7f1;
	color: #ffffff;
	font-weight: normal;
	vertical-align: middle;
	white-space: nowrap!important;
	line-height: 25px!important;
}
table tr td{
	background: #ffffff;
	color: #333333;
    padding: 5px 5px;
} 

@media (max-width: 1650px) {
    table tr td{ 
        padding: 2px 3px;
    } 
}

@media (max-width: 800px) {
    .content_product-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product_img_wrapper {
        max-width: 80%;
        max-height: 80%;
    }

    .product_img_wrapper {
        margin-bottom: 40px;
    }
}