.section-panel-item {
    background-color: #E6F0FF;
    padding: 3.5rem 0;
}

.section-panel-item .panels-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.section-panel-item .panel-item {
    border-radius: 1rem;
    border: 1.5px solid #242424;
    padding: 2.5rem 2rem;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    transition: 0.3s;
}

.section-panel-item .panel-item:hover {
    box-shadow: 8px 8px 0px 0px #00000029;
}

.section-panel-item .panel-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-panel-item .panel-item-header-logo {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-panel-item .panel-item-header-logo img {
    max-width: 46px;
    max-height: 46px;
}

.section-panel-item .panel-item-header-content .panel-item-header-title {
    font-variation-settings: "wght" 600;
    color: #242424;
    line-height: 2;
}

.section-panel-item .panel-item-header-content .panel-item-header-price {
    color: #5B5C5F;
    line-height: 1.91;
    display: flex;
    align-items: center;
}

.section-panel-item .panel-item-header-content .panel-item-header-price span {
    font-size: 21px;
    color: #242424;
    font-variation-settings: "wght" 700;
    margin-left: 0.25rem;
}

.section-panel-item .panel-item-info {
    margin-bottom: 1.5rem;
}

.section-panel-item .panel-item-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 2.25;
}

.section-panel-item .panel-item-info li i {
    width: 1.5rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.section-panel-item .panel-item-info li i.icon-tik {
    color: #0066FF;
}

.section-panel-item .panel-item-info li i.icon-close {
    color: #F20202;
}

.section-panel-item .panel-item-info li span {
    color: #5B5C5F;
    font-variation-settings: "wght" 400;
    font-size: 1rem;
}

.section-panel-item .panel-item-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 767.99px) {
    .section-panel-item .panels-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-panel-item .panel-item-header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .section-panel-item .panel-item-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-panel-item .panel-item-mobile-separator {
        width: 1px;
        height: 16px;
        background-color: #E9EBEE;
        flex-shrink: 0;
    }

    .section-panel-item .panel-item-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .section-panel-item .panel-item-footer .button,
    .section-panel-item .panel-item-footer .btn-chevron {
        width: 100%;
    }

    .section-panel-item .panel-item {
        padding: 1rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .section-panel-item .panels-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}