.package-details {
    align-items: center;
}

.package-details li {
    border-bottom: 1px solid #E4E4E4;
    color: #000;
    font: 400 18px/27px Inter;
    padding: 0 0 20px;
    align-content: space-between;
    list-style: none;
    margin: 24px 10px 0;
}

.icon {
    background-position: 0 0;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}

.check {
    background-image: url('./img/Check.svg');
}

.x {
    background-image: url('./img/X.svg');
}

.title {
    margin-right: 32px !important;
    display: flex;
    justify-content: space-between;
}

.package-details i {
    min-width: 24px;
}

.tooltip {
    position: relative;
}

.tooltip:before {
    content: attr(data-text);
    position: absolute;
    
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
    
    /* move to right */
    left: 100%;
    margin-left: 15px; /* and add a small left margin */
    
    /* basic styles */
    width: 200px;
    padding: 10px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    background: #fff;
    color: #000;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    z-index: 1;

    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, visibility 1s;
}

.tooltip:hover:before {
    visibility: visible;
    opacity: 1;
}


@media screen and (max-width: 991px) {
    .package-details .title {
        margin: 50px 10px 0 !important;
        font: 700 18px/27px Inter;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
    
    .package-details .col-md-9 li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .package-details .col-md-9 li:after {
        border: 1px solid #E4E4E4;
        border-radius: 8px;
        padding: 8px 18px;
        font-weight: 500;
    }
    
    .package-details .col-md-9 :first-child li:after {
        content: "Essential";
    }
    
    .package-details .col-md-9 :nth-child(2) li:after {
        content: "Professional";
    }
    
    .package-details .col-md-9 :nth-child(3) li:after {
        content: "Performer";
        color: #FFF;
        background-color: #000;
        border: 1px solid #000;
    }
    
    .package-details .col-md-9 :nth-child(4) li:after {
        content: "Custom";
    }
}