// Start Faq Style 1
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding: 0;
}
.accordion-item.active .accordion-content {
max-height: 200px;
}
.accordion-header::after {
content: '+';
position: absolute;
right: 20px;
font-size: 2rem;
transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header::after {
transform: rotate(45deg);
}
// End Faq Style 1
// Start Faq Style 2
.payment-section {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section-title {
padding: 20px 0;
margin: 0;
font-size: 1.5rem;
font-weight: 500;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.section-content {
display: none;
padding: 0 0 20px;
color: #999;
line-height: 1.5;
}
.section-content.visible {
display: block;
}
.arrow {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
}
.arrow.up {
transform: rotate(180deg);
}
.read-more {
color: white;
text-decoration: none;
display: inline-block;
margin-top: 15px;
font-weight: 500;
cursor: pointer;
}
.read-more:hover {
color: $mt__blue;
}
.extra-content {
display: none;
margin-top: 15px;
color: #999;
ul{
margin-left: 20px;
margin-top: 20px;
li{
list-style: disc;
}
}
}
// End Faq Style 2