.hatch-faq-item {
border: 1px solid #e9e9e9;
border-radius: 8px;
margin: 12px 0;
background: #fff;
overflow: hidden;
transition: border-color .25s ease, box-shadow .25s ease;
}
.hatch-faq-item[open] {
border-color: #ffd2bd;
box-shadow: 0 4px 18px rgba(255, 81, 0, .08);
}
.hatch-faq-q {
list-style: none;
cursor: pointer;
padding: 16px 48px 16px 20px;
position: relative;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 17px;
line-height: 1.4;
color: #111;
user-select: none;
} .hatch-faq-q::-webkit-details-marker {
display: none;
}
.hatch-faq-q::marker {
content: '';
} .hatch-faq-q::after {
content: '';
position: absolute;
right: 20px;
top: 50%;
width: 10px;
height: 10px;
border-right: 2px solid #ff5100;
border-bottom: 2px solid #ff5100;
transform: translateY(-70%) rotate(45deg);
transition: transform .25s ease;
}
.hatch-faq-item[open] .hatch-faq-q::after {
transform: translateY(-30%) rotate(-135deg);
}
.hatch-faq-q:hover {
color: #ff5100;
}
.hatch-faq-a {
padding: 0 20px 18px;
font-size: 15px;
line-height: 1.7;
color: #333;
}
.hatch-faq-a p {
margin: 0 0 10px;
}
.hatch-faq-a p:last-child {
margin-bottom: 0;
}
.hatch-faq-a a {
color: #ff5100;
text-decoration: underline;
}
@media (max-width: 480px) {
.hatch-faq-q {
font-size: 15px;
padding: 14px 42px 14px 16px;
}
.hatch-faq-a {
padding: 0 16px 16px;
}
}