.product-faq-section {
padding: 80px 0;
background: #fff;
}
.product-faq-section__title {
margin: 0 0 36px;
font-size: 42px;
line-height: 1.15;
font-weight: 800;
text-transform: uppercase;
color: #06111f;
}
.product-faq {
display: flex;
flex-direction: column;
gap: 14px;
}
.product-faq__item {
border: 1px solid #dedede;
background: #fff;
}
.product-faq__question {
position: relative;
width: 100%;
min-height: 50px;
padding: 10px 72px 10px 28px;
border: 0;
background: #f7f7f7;
cursor: pointer;
text-align: left;
font-size: 18px;
line-height: 1.35;
font-weight: 700;
color: #07111f;
}
.product-faq__question i {
position: absolute;
top: 50%;
right: 28px;
width: 22px;
height: 22px;
transform: translateY(-50%);
}
.product-faq__question i::before,
.product-faq__question i::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
background: #ff7a00;
transform: translate(-50%, -50%);
}
.product-faq__question i::before {
width: 22px;
height: 3px;
}
.product-faq__question i::after {
width: 3px;
height: 22px;
transition: opacity .25s ease;
}
.product-faq__item.is-active .product-faq__question {
background: #2f2f2f;
color: #fff;
}
.product-faq__item.is-active .product-faq__question i::after {
opacity: 0;
}
.product-faq__answer {
display: none;
border-top: 1px solid #dedede;
}
.product-faq__item.is-active .product-faq__answer {
display: block;
}
.product-faq__answer-inner {
padding: 24px 28px;
font-size: 16px;
line-height: 1.65;
color: #333;
}
.product-faq__answer-inner p {
margin: 0 0 14px;
}
.product-faq__answer-inner p:last-child {
margin-bottom: 0;
}
@media (max-width: 767px) {
.product-faq-section {
padding: 50px 0;
}
.product-faq-section__title {
font-size: 32px;
margin-bottom: 24px;
}
.product-faq__question {
min-height: 62px;
padding: 18px 56px 18px 18px;
font-size: 16px;
}
.product-faq__question i {
right: 18px;
}
.product-faq__answer-inner {
padding: 18px;
}
}
.container-description .table-responsive {
width: 100%;
max-width: 100%;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
margin: 24px 0;
}
.container-description .table-responsive table {
width: max-content;
min-width: 100%;
border-collapse: collapse;
}
.container-description table th,
.container-description table td {
white-space: nowrap;
}