/*
 * Metal Pro FAQs Styles
 */

.metalpro-faqs h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
	margin:0px;
	font-size:18px !important;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    /* Prevents icon text from being selected when clicking */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #f9f9f9;
}

/* Fix for nested <p> tags */
.faq-answer p:first-child {
    margin-top: 0;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}