#pricing-line {

    width: 50%;
    height: 15px;
    background-color: red;

    border-radius: 15px;

    position: relative;

    margin-bottom: 30px;


    margin-left: 15px;



    animation: changeLineColor 10s ease-in-out infinite;

}

@keyframes changeLineColor {
    0% {
        background-color: rgb(135, 206, 250);

    }

    50% {
        background-color: rgb(17, 45, 78);
        /* Završna boja linije */
    }

    100% {
        background-color: rgb(135, 206, 250);
    }
}




#pricing-line::before,
#pricing-line::after {

    content: "";

    width: 15px;
    height: 15px;


    position: absolute;

    border-radius: 50%;


}



#pricing-line::before {
    left: 0;
}


#pricing-line::after {
    right: 0;

}


#moving-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;

    position: absolute;
    z-index: 1;

    animation: moveCircle 10s ease-in-out 1s infinite;
}


@keyframes moveCircle {


    0% {
        left: 0;
    }


    50% {
        left: 100%;
        transform: translateX(-100%);
    }

    100% {
        left: 0;
    }

}



#pricing-line .pricing-text-left,
#pricing-line .pricing-text-right,
#pricing-line #money-wrapper {
    position: absolute;

    top: 20px;

    font-size: 20px;

    font-weight: 600;



    font-family: 'Montserrat', monospace;
}




#pricing-line #money-wrapper {

    font-weight: 500;

    font-style: italic;

}

#pricing-line .pricing-text-left {
    left: 0;
    transform: translateX(-50%);

}

#pricing-line .pricing-text-right {
    right: 0;
    transform: translateX(50%);

}

#pricing-line #money-wrapper {
    display: flex;
    align-items: center;

    width: 100px;
    justify-content: space-between;
    /* Centriranje unutar wrappera */
    position: absolute;
    left: 50%;
    transform: translateX(-52%);
    /* Pomicanje za 50% vlastite širine kako bi se centriralo */

}

#money-wrapper {
    display: flex;
    align-items: center;
}


/* mobiteli */
@media screen and (max-width: 767px) {


    #pricing-line .pricing-text-left,
    #pricing-line .pricing-text-right,
    #pricing-line #money-wrapper {
        font-size: 15px;
    }


    #pricing-line #money-wrapper {
        width: 75px;
    }

}



#discount-wap {


    width: 50%;


}