/* faq-section css start here */
.faq-search-form{
    margin-top: 50px;
}
.faq-search-form .form{
    display: inline-block;
    position: relative;
    width: 385px;
}
.faq-search-form .form .control input{
    border-color: rgba(182, 187, 188, 0.5);
    padding-left: 10px;
    padding-right: 35px;
    height: 36px;
}
.faq-search-form .field .control:before{
    display: none;
}
.faq-search-form .actions{
    position: absolute;
    right: 30px;
    top: 4px;
}
.faqcat-title i{
    display: none;
}
.faq-search-form .actions button{
    background: none;
    border: none;
    line-height: 22px;
    padding: 2px 10px;
}
.faq-search-form .actions button:hover{
    border-color: transparent;
    border: none;
}
.faq-search-form .actions button:focus{
    padding: 0 10px;
}
.faq-search-form .actions button::before{
    color: #323232;
    content: '\e986';
    font-family: 'faq-extension';
}
.faq-search-form .actions button span{
    display: none;
}
.faq-category{
    width: 100%;
    display: inline-block;
}
.faq-category .faqcat-title{
    color: #323232;
}
.faq-category .faqs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.faq-category .faqs-list p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    color: #040503;
}
.faq-category .faqs-list .item {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(182, 187, 188, 0.5);
    padding: 10px 0;
    width: 100%;
    margin-bottom: 0;
}
.faq-category .faqs-list .item a{
    background: transparent;
}
.faq-category .faqs-list .item > a{
    padding: 10px 0;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.faq-category .faqs-list .item .description {
   padding: 0 0 14px 0;
   border-top: none;
}
.faq-category .faqs-list .item .description p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #52575A;
    transition: all 0.3s ease;
    margin-bottom: 0;
}
.faq-category .faqs-list .faq-iconplus {
    display: block;
    height: 20px;
    width: 20px;
    border: 2px solid #040503;
    border-radius: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.faq-category .faqs-list .faq-iconplus::before,
.faq-category .faqs-list .faq-iconplus::after {
    display: block;
    height: 2px;
    width: 10px;
    background: #040503;
    position: absolute;
    top: 7px;
    content: "";
    left: 3px;
    transition: all 0.3s ease;
}

.faq-category .faqs-list .faq-iconplus::before {
    transform: rotate(90deg);
}
.faq-category .faqs-list .item.active > a{
    color: #D8252E;
}
.faq-category .faqs-list .item.active .faq-iconplus {
    border-color: #D8252E;
    transition: all 0.3s ease;
}

.faq-category .faqs-list .item.active .faq-iconplus::after,
.faq-category .faqs-list .item.active .faq-iconplus::before {
    background: #D8252E;
    transition: all 0.3s ease;
}

.faq-category .faqs-list .item.active .faq-iconplus::before {
    opacity: 0;
}

.faq-category .faqs-list .item.active .faq-left p {
    color: #D8252E;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.faqs-list .item .read-more{
    background: transparent;
}
.faqs-list .item .read-more:hover{
    color: #D8252E;
}


@media(min-width: 1399px) {
     .page-main{
        max-width: 800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}


@media(max-width: 767px) {
    .faq-search-form{
        margin-top: 0;
    }
    .faq-search-form .form{
        width: 100%;
    }
    .faq-category .faqs-list .item .description{
        border-bottom: none;
    }
    .faq-category .faqs-list .item > a{
        position: relative;
        padding: 10px 20px 10px 0;
    }
    .faq-category .faqs-list .faq-iconplus{
        position: absolute;
        top: 10px;
        right: 0;
    }
}