.post-content.catalogo_article{
	display: flex;
    flex-direction: column;
}

.catalogo_article .main-content-zone{
	display: flex;
    gap: 50px;
}

.main-content-galery{
	display: flex;
    flex-direction: column;
    max-width: calc(45% - 25px);
    width: 100%;
    gap: 30px;
}

.main-content-galery .main_image{margin: 0; max-height: 350px;}

.galery_selection{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.main-content-zone img.galery_selection_item{
	display: flex;
    max-width: calc((100% / 3) - 15px);
    width: 100%;
    opacity: 0.5;
    box-shadow: 5px 5px 9px #000;
    margin: 0;
    cursor: pointer;
}
.main-content-zone img.galery_selection_item:hover{opacity: 0.8;}
.main-content-zone img.galery_selection_active{opacity: 1 !important; cursor: default;}


.specifications_tables_zone{
	display: flex;
    width: 100%;
    gap: 100px;
    flex-wrap: wrap;
}

.specifications_table {
    flex: 1 0 calc(50% - 50px);    
    height: fit-content;
}

.specifications_table_row {
    min-height: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
.specifications_table_row:last-child{
	border: none;
}

.specifications_table_row th, .specifications_table_row td{
    width: calc(50% - 20px);
    display: flex;
    padding: 0 10px;
}
.specifications_table_row th{
	text-transform: uppercase;
}


.specifications_important_content{
	max-width: calc(55% - 25px);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 30px;
}

.important_specifications_table{
	flex: 1 0 calc(50% - 50px);
}

.catalogo_artigo_price{
	font-weight: 900;
    font-size: 28px;
}

.single_header > h1.single_catalogo_title{
    line-height: normal;
    font-size: 28px;
}

.specifications_important_content .single_header{
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #2cb62c;
}

.extra_content_zone{
    display: flex;
    flex-direction: column;
}

.extra_content_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.extra_content_link{
	display: flex;
	flex-direction: column;
	color: #8d8d8d !important;
    padding: 10px 5px 0px;    
    gap: 5px;
}
.extra_content_link_active, .extra_content_link:hover{
	color: #5cb874 !important;
	font-weight: 900;
}

.main-content-editor, .catalogo_artigos_content{display: none; flex-direction: column;}
.extra_content_active{display: flex;}

.border_special{display: flex; width: 100%; align-items: center; justify-content: center;}
.border_special span {
    height: 1px;
    width: calc(90% / 3);
    margin: 0;
    background: #8d8d8d;
    border: none;
}
.border_special span:nth-child(2) {height: 3px;}
.extra_content_link_active .border_special span, .extra_content_link:hover .border_special span{background: #5cb874}

.ACC_DocLink{		
    display: flex;
    ALIGN-ITEMS: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: solid 1px #ccc;    
    color: #000 !important;
}
.ACC_DocLink:last-child{border:none;}

.ACC_DocIcon{height: 44px;}


.catalogo_artigo_funcs{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.compare_open, .pedir_info{
	background: #2cb62c;
    display: flex;
    width: fit-content;
    padding: 5px 10px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.comparing_popup{
	display: none;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.comparing_popup_active{display: flex;}

.comparing_ofuscator{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.comparing_content{
	height: 90vh;
    z-index: 2;
    background: #fff;
    display: flex;
    width: 90vw;
    padding: 10vh 10vw;    
    justify-content: start;
    align-items: center;
    gap: 50px;
    flex-direction: column;
    position: relative;
}

.comparing_nav{
	display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.comparing_select{
	min-height: 44px;
    padding: 5px 10px;
}

.comparing_submit{
	background: #5cb874;
    min-height: 44px;
    color: #fff !important;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 5px 20px;
}

.comparing_table{
	max-width: 100%;
    width: 50vw;
    min-width: 300px;
}

.compating_close{
	font-weight: 600;
    color: #000 !important;
    text-decoration: underline;
    position: absolute;
    top: 5vh;
    right: 5vw;
}

.comparing_zone{
	height: 100%;
    overflow-y: scroll;
}


/*=============================================Mobile=============================================*/
/*---------------------Phones-------------------*/
@media (max-width: 667px) {
	.catalogo_article .main-content-zone{flex-direction: column;}
	
	.main-content-galery, .main-content-editor{max-width: 100%;}
	
	.specifications_important_content{max-width: 100%;}
	
	.comparing_zone{
		overflow-x: scroll;
    	width: 100%;
	}
	
	.comparing_table{
		min-width: 525px;
	}
	
	.extra_content_nav{
		flex-wrap: wrap;
		gap: 5px 20px;
		margin-bottom: 10px;
	}
}
