/* CRM Accordion Card Styles */

.crm-single-acc-header {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 34px rgba(0,0,0,0.08);
    border: 2px solid #fff;
    transition: 0.3s ease-in-out;
    font-family: "Roboto", sans-serif;
    margin: 0;
}
.crm-single-acc-header:hover {
    border: 2px solid #D93E36;
}
.crm-single-acc-header:active {
    border: 2px solid #D93E36;
}

.crm-single-acc-header-head-section {
    display: flex;
    align-items: flex-start;
}

.crm-single-acc-header .left {
    margin-right: 20px;
}

.crm-single-acc-header .right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.crm-single-acc-header .left span {
    font-size: 50px;
    color: #FBE9E8;
    font-weight: 700;
    line-height: 48px;
}

.crm-single-acc-header .middle h4 {
    color: #D93E36;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

.crm-single-acc-header .middle p {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #3C3C3D;
    font-style: italic;
    margin-top: 6px;
    margin-bottom: 0;
}

.crm-single-acc-header .right i.fa-solid.fa-chevron-down {
    color: #D93E36;
    cursor: pointer;
}

.crm-single-acc-panel {
    display: none;
    border-top: 1px solid #EBEBEB;
    padding-top: 24px;
    margin-top: 24px;
}

.crm-single-acc-header.active .crm-single-acc-panel {
    display: block;
}

.crm-single-acc-header .bt-top h5 {
    background: #FBECEB;
    padding: 8px;
    border-radius: 0px 30px 30px 0px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #363636;
    font-family: "Roboto", Sans-serif;
}

.crm-single-acc-header .bt-top p {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    line-height: 32px;
    color: #3C3C3D;
}

.crm-single-acc-header .bt-top a {
    background: #D93E36;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.crm-single-acc-header .bt-top i.fa-solid.fa-arrow-right {
    margin-left: 10px;
}




