.custom-accordian.source_ref {
    margin: 25px 0;
}

.custom-accordian .accordion {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.custom-accordian .tab {
    position: relative;
}

.custom-accordian .tab input[type="checkbox"] {
    display: none;
}

.custom-accordian .tab__label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 9px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    margin: 0;
}

/* Left icon */
.custom-accordian .tab__label img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Right arrow */
.custom-accordian .tab__label::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid #7c7c7c;
    border-bottom: 2px solid #7c7c7c;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Arrow Up when opened */
.custom-accordian .tab input:checked + .tab__label::after {
    transform: translateY(-30%) rotate(-135deg);
}

/* Content */
.custom-accordian .tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 0 20px;
    color: #333;
    line-height: 1.8;
}

/* Open state */
.custom-accordian .tab input:checked ~ .tab__content {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.custom-accordian .tab__content p:first-child {
    margin-top: 0;
}

.custom-accordian .tab__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .custom-accordian .tab__label{
        font-size: 17px;
        padding: 8px 15px;
    }
    .custom-accordian .tab__label::after{
        width: 10px;
        height: 10px;
    }
}