.itcodewp-load-more-actions {
    clear: both;
    width: 100%;
    padding: 26px 0 8px;
    text-align: center;
}

.itcodewp-load-more-button {
    display: inline-flex;
    min-width: 148px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 24px;
    border: 1px solid #00a86b;
    border-radius: 10px;
    background: #00a86b;
    color: #fff;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.itcodewp-load-more-button:hover,
.itcodewp-load-more-button:focus-visible {
    border-color: #008c5a;
    background: #008c5a;
    color: #fff;
    transform: translateY(-1px);
}

.itcodewp-load-more-button:disabled {
    cursor: wait;
    opacity: .75;
    transform: none;
}

.itcodewp-load-more-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: itcodewp-load-more-spin .7s linear infinite;
}

.itcodewp-load-more-button.is-loading .itcodewp-load-more-spinner {
    display: inline-block;
}

.itcodewp-load-more-status {
    min-height: 20px;
    margin: 8px 0 0;
    color: #666;
    font-size: 13px;
}

@keyframes itcodewp-load-more-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 549px) {
    .itcodewp-load-more-button {
        width: min(100%, 280px);
    }
}
