.fs-13 {
    font-size: 13px;
}

#comparison_table_div {
    overflow-y: auto;
    /* make the table scrollable if height is more than 200 px  */
    height: 500px;
    /* gives an initial height of 200px to the table */
}

#comparison_table_div thead th {
    position: sticky;
    /* make the table heads sticky */
    top: 0px;
    /* table head will be placed from the top of the table and sticks to it */
}

#comparison_table_div table {
    border-collapse: collapse;
    /* make the table borders collapse to each other */
    width: 100%;
}

.faq {
    padding: 3px;
    /* width: 80%;
    border: 1px solid #222; */
}

.item .question {
    /* padding: 15px; */
    /* background: #C0392B; */
    /* color: #fff; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.item .question h4 {
    margin: 0;
}

.item .question .icon-minus {
    display: none;
}

.item.jquery-accordion-active .icon-minus {
    display: block;
}

.item.jquery-accordion-active .icon-plus {
    display: none;
}

.item .answer {
    padding: 15px;
    display: none;
}

.pricing-description {
    font-size: 12px;
    min-height: 130px;
    text-align: left;
    padding: 5px;
}