.bundle-container{
    display: flex;
    width: 100%;
    position: relative;
    border-radius: 10px;
    margin: 30px 0;
}

.bundle-item{
    position: relative;
    display: block;
    height: 100%;
    
    border: 1px solid #dcddde;
}

.bundle-item-container:first-child .bundle-item {
    border-radius: 10px 0 0 10px;
}
.bundle-item-container:last-child .bundle-item {
    border-radius: 0 10px 10px 0;
}
.bundle-head{
    display: flex;
    padding: 16px;
    flex-direction: column;
}

.bundle-content{
    padding: 16px;
    min-height: 170px;
    margin-bottom: 180px;
}
.bundle-footer{
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.note{
    display: block;
}
.price{
    justify-content: center;
    font-size: xx-large;
    font-weight: bold;
    /* color: #0b5ed7; */
}


.accordion-button::before{
    content: "";
    /* background: url(/Assets/images/icons/white-tick.png) no-repeat 0 0 transparent; */
    height: 21px;
    top: 10px;
    width: 21px;
    left: 0;
    position: absolute;
    border-radius: 50%;
}
button.accordion-button::after{
    width: 16px;
    height: 16px;
    background-size: 16px;
}
button.accordion-button:not(.collapsed){
    background-color: unset;
    box-shadow: unset;
}
div.accordion-body{
    padding: 5px 16px;
    font-size: small;
}
div.accordion-item{
    border: 0;
}
button.accordion-button{
    padding: 5px 16px;
    font-weight: bold;
}
div.bundle-item.most-popular{
    border: 4px solid #0b5ed7;
    margin: 0 0 -4px;
    border-radius: 0 0 8px 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    z-index: 1;
}
div.bundle-item.most-popular:before {
    content: "POPULAR";
    position: absolute;
    top: -40px;
    width: 100%;
    text-align: center;
    background: #0b5ed7;
    /* height: 30px; */
    line-height: 32px;
    color: #fff;
    border-top: 4px solid #0b5ed7;
    border-bottom: 4px solid #0b5ed7;
    border-left: 4px solid #0b5ed7;
    border-right: 4px solid #0b5ed7;
    /* margin-left: -4px; */
    border-radius: 8px 8px 0 0;
}
.bundle-item-container{
    display: flex;
    flex-direction: column;
    width: 30%;
}
/* .banner.recommended{
    text-align: center;
    background: #0b5ed7;   
    border-radius: 8px 8px 0 0;
} */
.banner.recommended::before{
    content: "Popular";
    color: #fff;
}


.banner.recommended {
    opacity: 1;
}
.banner {
    align-items: center;
    background-color: #0b5ed7;
    border-radius: 8px 8px 0 0;
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    line-height: 36px;
    opacity: 0;
    padding: 4px 0;
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    .bundle-container{
        flex-direction: column;
        border: 0;
        gap: 50px;
    }
    .bundle-item-container:first-child .bundle-item {
        border-radius: 10px;
    }
    .bundle-item-container:last-child .bundle-item {
        border-radius: 10px;
    }

    div.bundle-item{
        width: 100%;
        border: 1px solid #dcddde;
        border-radius: 10px;
    }
    .bundle-item-container{
        width: 100%;
    }
    /* div.bundle-item-container:nth-child(3) {
        border-right: unset;
     } */
}