.custom-faq-wrapper {
    display: flex;
    flex-direction: column;
}

.header-container {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
}

input#faq-search {
    width: 100%;
    padding: 10px 15px 10px 15px;
    font-size: 18px;
    border: 1px solid #efefef;
    border-radius: 10px;
    position: relative;
}

#resetsearch {
    white-space: nowrap;
    font-size: 18px;
    background-color: #f8f8f8;
    border: 1px solid #efefef;
    color: #222222;
    border-radius: 10px;
    display: block;
    padding: 10px 15px;
    font-weight: 900;
    transition: .3s;
}

#resetsearch:hover {
    background-color: #cccccc;
    transition: .3s;
}

/* input#faq-search::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-image: url('../../assets/search.svg');
    background-size: cover;
    width: 30px;
    height: 30px;
} */

#faq-search:hover {
    border: 1px solid #82ba26;
    background-color: #f8f8f8;
}

#faq-search:focus {
    outline: 2px solid #82ba2650;
    border: 1px solid #82ba26;
    background-color: #f8f8f8;
}

.custom-faq-category {
    margin-bottom: 20px;
}

.custom-faq-item {
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #efefef;
    display: flex;
    overflow: hidden;
    height: auto;
    transition: height 0.5s ease-in-out;
    flex-direction: column;
}

.custom-faq-category-title {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
}

.custom-faq-item-title {
    width: 100%;
    padding: 20px 55px 20px 20px;
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: bold;
    background-color: #ffffff;
    position: relative;
}

.custom-faq-item-content {
    display: none;
    width: 100%;
    padding: 0 20px 20px 20px;
    font-size: 16px;
    background-color: #ffffff;
    position: relative;
    height: 0px;
    transition: height 0.5s ease-in-out;
}

.custom-faq-item.active .custom-faq-item-content {
    display: block;
    height: auto;
    transition: height 0.5s ease-in-out;
}

.faq-review-container {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
    background-color: #ffffff;
    border-top: 1px solid #f8f8f8;
}

.custom-faq-item.active .faq-review-container {
    display: flex;
}

.custom-faq-item-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-image: url('../../assets/arrow.svg');
    width: 24px;
    height: 24px;
}

.thumbs:hover {
    cursor: pointer;
}

.thumbs {
    transition: 1s ease-in-out;
}

.custom-faq-item.active .custom-faq-item-title::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url('../../assets/close.svg');
}

@media (max-width: 900px) {
    .faq-review-container h5{
        font-size: 14px;
    }

    .thumb-action {
        display: flex;
        flex-wrap: nowrap;
    }

    input#faq-search {
        font-size: 16px;
    }

    .custom-faq-item-title {
        font-size: 16px;
    }

    .header-container {
        display: flex;
        flex-direction: column;
    }

    #resetsearch {
        width: 100%;
    }
}