/* 🚩 START CUSTOM PRODUCT TABS 🚩 */

.toggler-container.amproductfields {
    margin-bottom: 1rem;
	background: white;
    padding: 15px;
    border-radius: 13px;
}

.amproductfields .toggler-header {
    cursor: pointer;
	text-transform: uppercase;
    font-size: 15px;
    color: black;
    text-align: left;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
	margin: 0;
	padding: 10px 0 10px 0;
	transition: all 0.3s ease;
}

.amproductfields .toggler-header.active {
   
	transition: all 0.3s ease;
}

.amproductfields .toggler-header:before{
	content: "";
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    background: transparent;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(-45deg);
    top: 5px;	
	transition: all 0.3s ease;
}

.amproductfields .toggler-header.active:before{
	transform: rotate(135deg);
}

.amproductfields .toggler-content {
	overflow: hidden;
	background-color: white;
}

.amproductfields td{
	vertical-align: top !important;
}

.analisisistatikwn td img{
	width: 800px;
    height: auto;
}

.analisisistatikwn table{
	max-width: 550px !important;
	height: auto !important;
    border-collapse: separate;
    border-spacing: 25px 25px
}

.analisisistatikwn .toggler-header.active{
	color: #a1d0b2;
    text-transform: capitalize;
    font-size: 24px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.toggler-header + .toggler-content{
	max-height: 0;
	transition: max-height 0.3s ease;
}

.toggler-header.active + .toggler-content{
	max-height: 1000px;
}

/* 🚩 END CUSTOM PRODUCT TABS 🚩 */