.sifency-pricing-calculator-item {
    margin-bottom: 20px
}

.sifency-pc-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333
}

.sifency-pc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e1e1e1;
    border-radius: 3px;
    outline: 0
}

.sifency-pc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    cursor: pointer;
    transition: transform .2s
}

.sifency-pc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2)
}

.sifency-pc-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px
}

.slider,
.slider:before {
    position: absolute;
    transition: .4s
}

.sifency-pc-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px
}

.slider:before {
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--sifency-addons-whitecolor);
    border-radius: 50%
}

input:checked+.slider {
    background-color: var(--e-global-color-primary)
}

input:checked+.slider:before {
    transform: translateX(24px)
}

.sifency-pc-number {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 80px
}

.sifency-pc-result-box {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center
}

.sifency-pc-total-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.sifency-pc-total-amount {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 15px
}

.sifency-pc-layout-side {
    display: flex;
    gap: 30px;
    align-items: flex-start
}

.sifency-pc-layout-side .sifency-pc-inputs {
    flex: 1
}

.sifency-pc-layout-side .sifency-pc-result-box {
    width: 300px;
    margin-top: 0;
    position: sticky;
    top: 20px
}

.sifency-pc-layout-glass {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3)
}

.sifency-pc-layout-glass .sifency-pc-header,
.sifency-pc-layout-glass .sifency-pc-total-amount {
    color: inherit
}

.sifency-pc-layout-glass .sifency-pc-result-box {
    background: rgba(255, 255, 255, .1);
    color: inherit
}

.sifency-pc-layout-neon {
    background: #111;
    color: #eee;
    border: 1px solid #333
}

.sifency-pc-layout-neon .sifency-pc-header {
    color: #eee
}

.sifency-pc-layout-neon .sifency-pc-range {
    background: #333
}

.sifency-pc-layout-neon .sifency-pc-result-box {
    background: #000;
    border: 1px solid #333
}

.sifency-pc-layout-neon.sifency-pc-layout-soft .sifency-pc-range,
.sifency-pc-layout-soft .sifency-pc-result-box {
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px rgb(163, 177, 198, .6), inset -4px -4px 8px rgba(255, 255, 255, .5)
}

.sifency-pc-layout-soft {
    background: #e0e5ec;
    box-shadow: 9px 9px 16px rgb(163, 177, 198, .6), -9px -9px 16px rgba(255, 255, 255, .5);
    border-radius: 20px;
    padding: 40px
}

.sifency-pc-layout-soft .sifency-pc-range {
    height: 10px
}

.sifency-pc-layout-soft .sifency-pc-result-box {
    border-radius: 15px
}

.sifency-pc-switch .slider::before {
    content: "";
    position: absolute
}