HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_pricing.scss
/*============================
    38. Pricing
============================*/

@use "../utils/mixins" as *;
@use '../variables' as *;

.pricing-item {
    margin-bottom: 20px;
    .pricing-item-one {
        .pricing-item-list {
            border-radius: $border-radius-lg;
            h5 {
                padding-bottom: 20px;
                margin-bottom: 20px;
                border-bottom: 1px dashed $gray-100;
            }
            .pricing {
                border-bottom: 1px dashed $gray-100;
                .price {
                    font-size: 32px;
                    font-weight: $font-weight-bold;
                    @include respond-below(lg) {
                        font-size: 28px;
                    }
                }
                .badge {
                    padding: 7px 8px;
                    font-size: 14px;
                    font-weight: $font-weight-medium;
                }
            }
        }
    }
}

// Statistics section five
.statistics-section-five {
    background: url(../img/home-5/bg/statistics-bg.jpg) no-repeat center center;
    background-size: cover;
    .stat-item {
        text-align: center;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            bottom: 7px;
            left: 0;
            width: 0%;
            height: 5px;
            background: $primary-linear-gradient;
            margin: auto;
            right: 0;
            transition: all 0.3s ease-in-out;
        }
        h3 {
            font-size: 52px;
            font-weight: $font-weight-bold;
            color: $darkmode-white;
        }
    }
    &:hover {
        .stat-item {
            &:before {
                width: 43%;
            }
        }
    }
}