.program_list {
    background: radial-gradient(198.13% 90.64% at 12.47% 29.59%, rgb(195, 218, 249) 0%, rgb(232, 234, 255) 100%);
}

.program_list_container {
    column-gap: 65px;
    display: flex;
}

.program_list-img img {
    width: 545px;
    aspect-ratio: 1 /1;
    height: auto;
    object-fit: cover;
}

.program_list_box {
    flex-basis: 560px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.box-item-bottom .decorative_heading {
    font-size: 32px;
    font-weight: 700;
    color: #312946;
    margin-bottom: 30px;
}

.box-item-bottom p:not(:last-child) {
    margin-bottom: 10px;
}

.program_list_box_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px 0 rgba(161, 194, 242, 0.8);
    background: rgb(221, 233, 253);
    background: linear-gradient(38deg, rgba(221, 233, 253, 1) 0%, rgba(214, 227, 252, 1) 100%);
}

.program_list__heading {
    text-align: center;
}

.box-item-bottom {
    width: 100%;
    margin-top: 24px;
    gap: 0;
}

.box-item-bottom ul {
    list-style: none;
}

.program_list_box .h3 {
    color: #312946
}

.program_list_box .body3 {
    max-height: 495px;
    overflow-y: scroll;
}

.program_list_box .body3.scroll-no {
    max-height: fit-content;
    overflow-y: hidden;
}

.program_list_box ul,
.program_list_box ol {
    list-style: none;
}

.program_list_box ul li {
    position: relative;
    padding-left: 34px;
}

.program_list_box ul li:not(:last-child) {
    margin-bottom: 16px;
}

.program_list_box ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: center/contain no-repeat url('/wp-content/plugins/custom-widgets/program-list/circle-check-fill.svg');
    display: block;
}

.program_list.small-pad {
    padding-top: 65px;
}

.program_list.small-pad-bot {
    padding-bottom: 65px;
}

.program_list.back-trans {
    background: transparent;
}

.program_list_container.image-right {
    flex-direction: row-reverse;
}

.list-img-style-2 {
    align-self: flex-start;
}

.list-img-style-2 img {
    aspect-ratio: unset;
}

.program_list_box_item p {
    margin: 0;
}

/*Table*/
.program_list-table {
    flex-basis: 545px;
    display: flex;
    flex-direction: column;
    border: 1px solid #4A4C4E;
    border-radius: 20px;
    overflow: hidden;
    height: fit-content;
}

.program_list-table__row {
    display: flex;
}

.program_list-table__row:not(:last-child) {
    border-bottom: 1px solid #4A4C4E;
}

.program__table-row__item {
    padding: 16px 20px;
    letter-spacing: -1px;
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
}

.program__table-row__item:not(:last-child) {
    border-right: 1px solid #4A4C4E;
}
.program_list-table__row-title{
    background: #D4C4FC;
    font-size: 19px;
    font-weight: 700;
    color: #000;
}
.program_list-table__row-qty,
.program_list-table__row--price{
    font-size: 17px;
    font-weight: 500;
    color: #000;
}
.program_list-table__row-qty>ul{
    list-style: none;
}
/*End Table*/
@media screen and (max-width: 991px) {
    .program_list_container {
        column-gap: 0;
    }

    .program_list-img img,
    .program_list-table{
        display: none;
    }

    .program_list_box {
        flex-basis: 100%;
    }


    .program_list.small-pad {
        padding-top: 30px;
    }

    .program_list.small-pad-bot {
        padding-bottom: 30px;
    }

    .box-item-bottom .decorative_heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
}