@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.header-title {
    margin-top: 4.5rem;
}

.price-circle {
    animation: pulse 1.5s linear infinite;
    top: 0px;
    left: 15px;
}

input[type='radio']:checked+label {
    background-color: #3dd5f3;
    color: #fff;
}

.payment2 {
    max-width: 1320px;
    background-color: #fff !important;
}








@media (min-width: 768px) {
    .price-circle {
        top: -40px;
        left: 0px;
    }
}

@keyframes pulse {

    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}