.bottom-sticky-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    padding: 10px 15px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 5px;

    transition: transform 0.4s ease-in-out;
    transform: translateY(110%);
}

.bottom-sticky-panel.is-visible {
    transform: translateY(0);
}

.sticky-content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.sticky-cta-btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 280px;
    max-width: 75%;
    background: #4e81bb;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: pulse-main-btn 2s infinite ease-in-out;
}

.scroll-up-box {
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
}

.sticky-info-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 10px;
    color: #555;
    font-weight: 600;
}

.info-span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.info-icon {
    height: 12px;
    width: auto;
    display: block;
}

body {
    padding-bottom: 100px;
}

@keyframes spin-infinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin-anim {
    animation: spin-infinite 1s linear infinite;
}

@media (max-width: 500px) {
    .scroll-up-box{
        display: none;
    }

    .sticky-info-row span {
        text-align: center;
    }
}