.price_13_area {
    background-image: url("../img/shape/price_13_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.tab-nav-8.style_13 {
    .nav-link.active {
        background: $white;
        color: $dark !important;
    }
}

.price_range_item {
    position: relative;
    overflow: hidden;
    &::before {
        position: absolute;
        content: "";
        width: 5px;
        height: 100%;
        background: radial-gradient(116863.83% 83.96% at 100% 18.69%, #F68C11 0%, #B4131D 100%);
        top: 0;
        left: 0;
    }
    &.intel {
        &::before {
            background: radial-gradient(116863.83% 83.96% at 100% 18.69%, #0071C5 0%, #00A1E4 100%);
        }
    }
    &:hover {
        .btn-dark {
            background-color: $warning !important;
        }
    }
}