.wugrat-block-container {
display: flex;
}
.wugrat-block-container > .wugrat-block-attributes {
margin-left: auto;
width: 100%;
}
.wugrat-block-title {
padding-right: 20px;
width: 40%;
}
.woocommerce-product-attributes-item__label {
width: 40%;
} .tab {
position: relative;
}
.tab input {
position: absolute;
opacity: 0;
z-index: -1;
}
.tab__content {
max-height: 0;
overflow: hidden;
transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
max-height: 100vh;
} .accordion {
overflow: hidden;
}
.tab__label,
.tab__close {
display: flex;
cursor: pointer;
}
.tab__label {
justify-content: space-between;
padding: 1rem;
}
.tab__label::after {
content: "\276F";
width: 1em;
height: 2em;
text-align: center;
transform: rotate(90deg);
transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
transform: rotate(270deg);
}
.tab__close {
justify-content: flex-end;
padding: 0.5rem 1rem;
font-size: 0.75rem;
}