/* Advance AnimationV */
@property --the-num {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

:root {
    --starting-num: 11;
    --ending-num: 2222;
}

.the-price-value {
    --the-num: var(--starting-num);
    counter-reset: num var(--the-num);
    animation-direction: forwards;
    font-weight: bold !important;
    font-size: 33px !important;
}

.the-price-value:after {
    content: counter(num);
}

.increase-value {
    animation: change-value-animation 0.15s normal forwards;
}

.decrease-value {
    animation: change-value-animation 0.15s reverse forwards;
}

@keyframes change-value-animation {
    0% {
        --the-num: var(--starting-num);
    }

    100% {
        --the-num: var(--ending-num);
    }
}

/* Month / Year Switcher */
.month-year-switch {
    pointer-events: none;
    user-select:none;
    font-size: 14px;
    position: relative;
    transition: all 150ms ease;
}

.month-year-switch:before {
    content: ' /year';
    position: absolute;
    bottom: 116%;
    left: 0px;
    transition: all 150ms ease;
    opacity: 0;
    color: black;
}

.switch-year {
    color: transparent;
}

.switch-year:before {
    bottom: 10%;
    left: 0px;
    opacity: 1;
}
.special-calc-pack:before{
    color:white !important;
}

.pricing-box, .pricing-box-calc {
    transform: translateY(0px);
    transition: transform 350ms ease;
}
.pricing-box:hover, .pricing-box-calc:hover {
    transform: translateY(3px);
}




.the-switcher {
    width: 60px;
    height: 30px;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    transition: all 1s ease;
    background-color: #ffbe1d1c;
    user-select: none;
    cursor: pointer;
    margin-bottom: 0px;
}

    .the-switcher:before {
        content: ' ';
        width: 20px;
        height: 20px;
        background-color: #ffbe1d;
        border-radius: 50%;
        z-index: 2;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.25s ease;
    }

#isYearChecked + .the-switcher:before {
    left: 6px;
}

#isYearChecked:checked + .the-switcher:before {
    left: calc(100% - 28px);
}

.the-switcher-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-box h4 {
    transform: translateY(-50px);
    opacity: 0;
    animation: slide-in-header 1s 1 0.5s;
    animation-fill-mode:forwards;
}
.top-box h3 {
    transform: translateY(-50px);
    opacity: 0;
    animation: slide-in-header 1s 1;
    animation-fill-mode: forwards;
}

.left-box, .right-box {
    transition: transform 0.4s;
    -webkit-animation: slide-in-fwd-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-fwd-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.simple-fade-in-li {
    animation: fadein 0.7s ease 1 both;
}

@keyframes fadein{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}


@keyframes slide-in-header {
    0%{
        transform:translateY(-50px);
        opacity:0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.left-shape-contact {
    animation: bobview 5s ease-in-out infinite alternate;
}
.right-shape-contact {
    animation: bobview 5s ease-in-out infinite alternate-reverse;
}

@keyframes bobview {
    0% {
        transform: translate(-0, -30%) rotate(0deg);
    }
    100% {
        transform: translate(-0, -25%) rotate(5deg);
    }
}