

/* Start:/local/components/itg/calc.send.post/templates/.default/style.css?17683839422619*/
.calculator-card .nav-pills>li.active>a, .calculator-card .nav-pills>li.active>a:focus, .calculator-card .nav-pills>li.active>a:hover {
    background-color: #52b788;
}
.calculator-card li:before {
    all: unset;
}

.delivery-calculator-wrapper .thead-dark tr th {
    color: #000;
}
#final_price {
    font-size: 24px;
}
/* Стили для индикатора прогресса с грузовиком */
.truck-progress-container {
    position: relative;
    height: 100px;
    margin: 0 auto 20px;
    overflow: hidden;
}

/* Дорога/трек */
.road-track {
    position: relative;
    width: 100%;
    height: 40px;
    background: #4a4a4a;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

/* Грузовик */
.truck-wrapper {
    position: absolute;
    top: -15px;
    right: 5%; /* Начинаем справа */
    width: 60px;
    height: 60px;
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.truck-emoji {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.truck-moving {
    animation: truckBounce 0.5s infinite alternate;
}

@keyframes truckBounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-5px) rotate(1deg);
    }
}

/* Точка назначения (слева) */
.destination-point {
    position: absolute;
    top: -10px;
    left: 5%;
    text-align: center;
    z-index: 5;
}

.destination-flag {
    font-size: 2rem;
    animation: flagWave 2s infinite;
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* Линии на дороге */
/* .road-track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ffd700,
        #ffd700 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
    animation: roadLines 1s linear infinite;
}

@keyframes roadLines {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-20px);
    }
} */

/* Полосы прогресса */
/* .progress-stripes {
    position: absolute;
    bottom: 5px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #52b788,
        #52b788 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.5;
} */
/* End */
/* /local/components/itg/calc.send.post/templates/.default/style.css?17683839422619 */
