.hfp-load-more {
    position: relative;
    width: 100%;
}

.hfp-btn-see-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;

    font-weight: 600;
    color: #147be3;
    cursor: pointer;

    background-color: #eeeeee;
    border-radius: 0.5rem;
    max-width: 300px;
    width: 100%;
    padding: 0.5rem 0;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: background-color 0.15s ease-in;
    user-select: none; 
}

.hfp-btn-see-more:hover,
.hfp-btn-see-more:active {
    background-color: #E4E2E6 !important;
    color: #147be3 !important;
}

.hfp-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    height: 8rem; 
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 10;
}

.hfp-opacity-0 {
    opacity: 0;
}

.hfp-transition {
    transition: opacity 0.5s ease-in-out; /
}

.hfp-opacity-100 {
    opacity: 1;
}

@keyframes hfp-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hfp-animate-pulse {
    animation: hfp-pulse 1.5s ease-in-out infinite;
}


