.cart {

}

.cart .modal-header {
    border: none;
}

.cart .selected-features-count {
    color: var(--J-Blue);
    text-align: right;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0 var(--bs-modal-padding);
}

.cart .selected-features {
    margin: 30px 0;
    position: relative;
}

.cart .selected-features.loading::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 0;
    display: block;
    width: 100%;
    height: calc(100% + 10px);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.cart .selected-features .title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cart .selected_feature {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding: 16px 80px 16px 16px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);

}

.cart .selected_feature .remove {
    position: absolute;
    top: calc(50% - 25px);
    right: 16px;
    width: 45px;
    height: 50px;
    padding: 14px;
    background: url('../../img/features-bin.svg') no-repeat center;
    cursor: pointer;
}

.cart .selected_feature .category {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

.cart .selected_feature .category .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    -webkit-mask: url('../../img/features-category.svg') no-repeat center;
    mask: url('../../img/features-category.svg') no-repeat center;
}

.cart .selected_feature h3 {
    margin-top: 12px;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
}

.cart .selected_feature .feature-excerpt {
    font-size: 14px;
    color: black;
}

@media (min-width: 992px) {
    .cart .selected-features {
        margin: 0;
    }

    .cart .selected-features .title {
        color: #000;
        font-family: Raleway;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
}